// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package pinpointsmsvoice 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" ) // An object that defines a request to update an existing event destination. type UpdateConfigurationSetEventDestinationInput struct { _ struct{} `type:"structure"` // ConfigurationSetName is a required field ConfigurationSetName *string `location:"uri" locationName:"ConfigurationSetName" type:"string" required:"true"` // An object that defines a single event destination. EventDestination *EventDestinationDefinition `type:"structure"` // EventDestinationName is a required field EventDestinationName *string `location:"uri" locationName:"EventDestinationName" type:"string" required:"true"` } // String returns the string representation func (s UpdateConfigurationSetEventDestinationInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateConfigurationSetEventDestinationInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "UpdateConfigurationSetEventDestinationInput"} if s.ConfigurationSetName == nil { invalidParams.Add(aws.NewErrParamRequired("ConfigurationSetName")) } if s.EventDestinationName == nil { invalidParams.Add(aws.NewErrParamRequired("EventDestinationName")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s UpdateConfigurationSetEventDestinationInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.EventDestination != nil { v := s.EventDestination metadata := protocol.Metadata{} e.SetFields(protocol.BodyTarget, "EventDestination", v, metadata) } if s.ConfigurationSetName != nil { v := *s.ConfigurationSetName metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "ConfigurationSetName", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.EventDestinationName != nil { v := *s.EventDestinationName metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "EventDestinationName", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } // An empty object that indicates that the event destination was updated successfully. type UpdateConfigurationSetEventDestinationOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateConfigurationSetEventDestinationOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s UpdateConfigurationSetEventDestinationOutput) MarshalFields(e protocol.FieldEncoder) error { return nil } const opUpdateConfigurationSetEventDestination = "UpdateConfigurationSetEventDestination" // UpdateConfigurationSetEventDestinationRequest returns a request value for making API operation for // Amazon Pinpoint SMS and Voice Service. // // Update an event destination in a configuration set. An event destination // is a location that you publish information about your voice calls to. For // example, you can log an event to an Amazon CloudWatch destination when a // call fails. // // // Example sending a request using UpdateConfigurationSetEventDestinationRequest. // req := client.UpdateConfigurationSetEventDestinationRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/pinpoint-sms-voice-2018-09-05/UpdateConfigurationSetEventDestination func (c *Client) UpdateConfigurationSetEventDestinationRequest(input *UpdateConfigurationSetEventDestinationInput) UpdateConfigurationSetEventDestinationRequest { op := &aws.Operation{ Name: opUpdateConfigurationSetEventDestination, HTTPMethod: "PUT", HTTPPath: "/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", } if input == nil { input = &UpdateConfigurationSetEventDestinationInput{} } req := c.newRequest(op, input, &UpdateConfigurationSetEventDestinationOutput{}) return UpdateConfigurationSetEventDestinationRequest{Request: req, Input: input, Copy: c.UpdateConfigurationSetEventDestinationRequest} } // UpdateConfigurationSetEventDestinationRequest is the request type for the // UpdateConfigurationSetEventDestination API operation. type UpdateConfigurationSetEventDestinationRequest struct { *aws.Request Input *UpdateConfigurationSetEventDestinationInput Copy func(*UpdateConfigurationSetEventDestinationInput) UpdateConfigurationSetEventDestinationRequest } // Send marshals and sends the UpdateConfigurationSetEventDestination API request. func (r UpdateConfigurationSetEventDestinationRequest) Send(ctx context.Context) (*UpdateConfigurationSetEventDestinationResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &UpdateConfigurationSetEventDestinationResponse{ UpdateConfigurationSetEventDestinationOutput: r.Request.Data.(*UpdateConfigurationSetEventDestinationOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // UpdateConfigurationSetEventDestinationResponse is the response type for the // UpdateConfigurationSetEventDestination API operation. type UpdateConfigurationSetEventDestinationResponse struct { *UpdateConfigurationSetEventDestinationOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // UpdateConfigurationSetEventDestination request. func (r *UpdateConfigurationSetEventDestinationResponse) SDKResponseMetdata() *aws.Response { return r.response }