// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package sesv2 import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" ) // A request to delete an existing email identity. When you delete an identity, // you lose the ability to send email from that identity. You can restore your // ability to send email by completing the verification process for the identity // again. type DeleteEmailIdentityInput struct { _ struct{} `type:"structure"` // The identity (that is, the email address or domain) that you want to delete. // // EmailIdentity is a required field EmailIdentity *string `location:"uri" locationName:"EmailIdentity" type:"string" required:"true"` } // String returns the string representation func (s DeleteEmailIdentityInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteEmailIdentityInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteEmailIdentityInput"} if s.EmailIdentity == nil { invalidParams.Add(aws.NewErrParamRequired("EmailIdentity")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s DeleteEmailIdentityInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.EmailIdentity != nil { v := *s.EmailIdentity metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "EmailIdentity", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } // An HTTP 200 response if the request succeeds, or an error message if the // request fails. type DeleteEmailIdentityOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DeleteEmailIdentityOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s DeleteEmailIdentityOutput) MarshalFields(e protocol.FieldEncoder) error { return nil } const opDeleteEmailIdentity = "DeleteEmailIdentity" // DeleteEmailIdentityRequest returns a request value for making API operation for // Amazon Simple Email Service. // // Deletes an email identity. An identity can be either an email address or // a domain name. // // // Example sending a request using DeleteEmailIdentityRequest. // req := client.DeleteEmailIdentityRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailIdentity func (c *Client) DeleteEmailIdentityRequest(input *DeleteEmailIdentityInput) DeleteEmailIdentityRequest { op := &aws.Operation{ Name: opDeleteEmailIdentity, HTTPMethod: "DELETE", HTTPPath: "/v2/email/identities/{EmailIdentity}", } if input == nil { input = &DeleteEmailIdentityInput{} } req := c.newRequest(op, input, &DeleteEmailIdentityOutput{}) return DeleteEmailIdentityRequest{Request: req, Input: input, Copy: c.DeleteEmailIdentityRequest} } // DeleteEmailIdentityRequest is the request type for the // DeleteEmailIdentity API operation. type DeleteEmailIdentityRequest struct { *aws.Request Input *DeleteEmailIdentityInput Copy func(*DeleteEmailIdentityInput) DeleteEmailIdentityRequest } // Send marshals and sends the DeleteEmailIdentity API request. func (r DeleteEmailIdentityRequest) Send(ctx context.Context) (*DeleteEmailIdentityResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteEmailIdentityResponse{ DeleteEmailIdentityOutput: r.Request.Data.(*DeleteEmailIdentityOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteEmailIdentityResponse is the response type for the // DeleteEmailIdentity API operation. type DeleteEmailIdentityResponse struct { *DeleteEmailIdentityOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteEmailIdentity request. func (r *DeleteEmailIdentityResponse) SDKResponseMetdata() *aws.Response { return r.response }