// 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" ) // A request to create a new configuration set. type CreateConfigurationSetInput struct { _ struct{} `type:"structure"` // The name that you want to give the configuration set. ConfigurationSetName *string `type:"string"` } // String returns the string representation func (s CreateConfigurationSetInput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s CreateConfigurationSetInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.ConfigurationSetName != nil { v := *s.ConfigurationSetName metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "ConfigurationSetName", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } // An empty object that indicates that the configuration set was successfully // created. type CreateConfigurationSetOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s CreateConfigurationSetOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s CreateConfigurationSetOutput) MarshalFields(e protocol.FieldEncoder) error { return nil } const opCreateConfigurationSet = "CreateConfigurationSet" // CreateConfigurationSetRequest returns a request value for making API operation for // Amazon Pinpoint SMS and Voice Service. // // Create a new configuration set. After you create the configuration set, you // can add one or more event destinations to it. // // // Example sending a request using CreateConfigurationSetRequest. // req := client.CreateConfigurationSetRequest(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/CreateConfigurationSet func (c *Client) CreateConfigurationSetRequest(input *CreateConfigurationSetInput) CreateConfigurationSetRequest { op := &aws.Operation{ Name: opCreateConfigurationSet, HTTPMethod: "POST", HTTPPath: "/v1/sms-voice/configuration-sets", } if input == nil { input = &CreateConfigurationSetInput{} } req := c.newRequest(op, input, &CreateConfigurationSetOutput{}) return CreateConfigurationSetRequest{Request: req, Input: input, Copy: c.CreateConfigurationSetRequest} } // CreateConfigurationSetRequest is the request type for the // CreateConfigurationSet API operation. type CreateConfigurationSetRequest struct { *aws.Request Input *CreateConfigurationSetInput Copy func(*CreateConfigurationSetInput) CreateConfigurationSetRequest } // Send marshals and sends the CreateConfigurationSet API request. func (r CreateConfigurationSetRequest) Send(ctx context.Context) (*CreateConfigurationSetResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateConfigurationSetResponse{ CreateConfigurationSetOutput: r.Request.Data.(*CreateConfigurationSetOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateConfigurationSetResponse is the response type for the // CreateConfigurationSet API operation. type CreateConfigurationSetResponse struct { *CreateConfigurationSetOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateConfigurationSet request. func (r *CreateConfigurationSetResponse) SDKResponseMetdata() *aws.Response { return r.response }