// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package alexaforbusiness import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type CreateUserInput struct { _ struct{} `type:"structure"` // A unique, user-specified identifier for this request that ensures idempotency. ClientRequestToken *string `min:"10" type:"string" idempotencyToken:"true"` // The email address for the user. Email *string `min:"1" type:"string"` // The first name for the user. FirstName *string `type:"string"` // The last name for the user. LastName *string `type:"string"` // The tags for the user. Tags []Tag `type:"list"` // The ARN for the user. // // UserId is a required field UserId *string `min:"1" type:"string" required:"true"` } // String returns the string representation func (s CreateUserInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateUserInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateUserInput"} if s.ClientRequestToken != nil && len(*s.ClientRequestToken) < 10 { invalidParams.Add(aws.NewErrParamMinLen("ClientRequestToken", 10)) } if s.Email != nil && len(*s.Email) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Email", 1)) } if s.UserId == nil { invalidParams.Add(aws.NewErrParamRequired("UserId")) } if s.UserId != nil && len(*s.UserId) < 1 { invalidParams.Add(aws.NewErrParamMinLen("UserId", 1)) } if s.Tags != nil { for i, v := range s.Tags { if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Tags", i), err.(aws.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } type CreateUserOutput struct { _ struct{} `type:"structure"` // The ARN of the newly created user in the response. UserArn *string `type:"string"` } // String returns the string representation func (s CreateUserOutput) String() string { return awsutil.Prettify(s) } const opCreateUser = "CreateUser" // CreateUserRequest returns a request value for making API operation for // Alexa For Business. // // Creates a user. // // // Example sending a request using CreateUserRequest. // req := client.CreateUserRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateUser func (c *Client) CreateUserRequest(input *CreateUserInput) CreateUserRequest { op := &aws.Operation{ Name: opCreateUser, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateUserInput{} } req := c.newRequest(op, input, &CreateUserOutput{}) return CreateUserRequest{Request: req, Input: input, Copy: c.CreateUserRequest} } // CreateUserRequest is the request type for the // CreateUser API operation. type CreateUserRequest struct { *aws.Request Input *CreateUserInput Copy func(*CreateUserInput) CreateUserRequest } // Send marshals and sends the CreateUser API request. func (r CreateUserRequest) Send(ctx context.Context) (*CreateUserResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateUserResponse{ CreateUserOutput: r.Request.Data.(*CreateUserOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateUserResponse is the response type for the // CreateUser API operation. type CreateUserResponse struct { *CreateUserOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateUser request. func (r *CreateUserResponse) SDKResponseMetdata() *aws.Response { return r.response }