// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package worklink 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" ) type CreateFleetInput struct { _ struct{} `type:"structure"` // The fleet name to display. DisplayName *string `type:"string"` // A unique name for the fleet. // // FleetName is a required field FleetName *string `min:"1" type:"string" required:"true"` // The option to optimize for better performance by routing traffic through // the closest AWS Region to users, which may be outside of your home Region. OptimizeForEndUserLocation *bool `type:"boolean"` // The tags to add to the resource. A tag is a key-value pair. Tags map[string]string `min:"1" type:"map"` } // String returns the string representation func (s CreateFleetInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateFleetInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateFleetInput"} if s.FleetName == nil { invalidParams.Add(aws.NewErrParamRequired("FleetName")) } if s.FleetName != nil && len(*s.FleetName) < 1 { invalidParams.Add(aws.NewErrParamMinLen("FleetName", 1)) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Tags", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s CreateFleetInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.DisplayName != nil { v := *s.DisplayName metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "DisplayName", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.FleetName != nil { v := *s.FleetName metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "FleetName", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.OptimizeForEndUserLocation != nil { v := *s.OptimizeForEndUserLocation metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "OptimizeForEndUserLocation", protocol.BoolValue(v), metadata) } if s.Tags != nil { v := s.Tags metadata := protocol.Metadata{} ms0 := e.Map(protocol.BodyTarget, "Tags", metadata) ms0.Start() for k1, v1 := range v { ms0.MapSetValue(k1, protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v1)}) } ms0.End() } return nil } type CreateFleetOutput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the fleet. FleetArn *string `min:"20" type:"string"` } // String returns the string representation func (s CreateFleetOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s CreateFleetOutput) MarshalFields(e protocol.FieldEncoder) error { if s.FleetArn != nil { v := *s.FleetArn metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "FleetArn", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } const opCreateFleet = "CreateFleet" // CreateFleetRequest returns a request value for making API operation for // Amazon WorkLink. // // Creates a fleet. A fleet consists of resources and the configuration that // delivers associated websites to authorized users who download and set up // the Amazon WorkLink app. // // // Example sending a request using CreateFleetRequest. // req := client.CreateFleetRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/CreateFleet func (c *Client) CreateFleetRequest(input *CreateFleetInput) CreateFleetRequest { op := &aws.Operation{ Name: opCreateFleet, HTTPMethod: "POST", HTTPPath: "/createFleet", } if input == nil { input = &CreateFleetInput{} } req := c.newRequest(op, input, &CreateFleetOutput{}) return CreateFleetRequest{Request: req, Input: input, Copy: c.CreateFleetRequest} } // CreateFleetRequest is the request type for the // CreateFleet API operation. type CreateFleetRequest struct { *aws.Request Input *CreateFleetInput Copy func(*CreateFleetInput) CreateFleetRequest } // Send marshals and sends the CreateFleet API request. func (r CreateFleetRequest) Send(ctx context.Context) (*CreateFleetResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateFleetResponse{ CreateFleetOutput: r.Request.Data.(*CreateFleetOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateFleetResponse is the response type for the // CreateFleet API operation. type CreateFleetResponse struct { *CreateFleetOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateFleet request. func (r *CreateFleetResponse) SDKResponseMetdata() *aws.Response { return r.response }