// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package resourcegroups 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 CreateGroupInput struct { _ struct{} `type:"structure"` // The description of the resource group. Descriptions can have a maximum of // 511 characters, including letters, numbers, hyphens, underscores, punctuation, // and spaces. Description *string `type:"string"` // The name of the group, which is the identifier of the group in other operations. // A resource group name cannot be updated after it is created. A resource group // name can have a maximum of 128 characters, including letters, numbers, hyphens, // dots, and underscores. The name cannot start with AWS or aws; these are reserved. // A resource group name must be unique within your account. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` // The resource query that determines which AWS resources are members of this // group. // // ResourceQuery is a required field ResourceQuery *ResourceQuery `type:"structure" required:"true"` // The tags to add to the group. A tag is a string-to-string map of key-value // pairs. Tag keys can have a maximum character length of 128 characters, and // tag values can have a maximum length of 256 characters. Tags map[string]string `type:"map"` } // String returns the string representation func (s CreateGroupInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateGroupInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateGroupInput"} if s.Name == nil { invalidParams.Add(aws.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Name", 1)) } if s.ResourceQuery == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceQuery")) } if s.ResourceQuery != nil { if err := s.ResourceQuery.Validate(); err != nil { invalidParams.AddNested("ResourceQuery", err.(aws.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s CreateGroupInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.Description != nil { v := *s.Description metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Description", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.Name != nil { v := *s.Name metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Name", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.ResourceQuery != nil { v := s.ResourceQuery metadata := protocol.Metadata{} e.SetFields(protocol.BodyTarget, "ResourceQuery", 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 CreateGroupOutput struct { _ struct{} `type:"structure"` // A full description of the resource group after it is created. Group *Group `type:"structure"` // The resource query associated with the group. ResourceQuery *ResourceQuery `type:"structure"` // The tags associated with the group. Tags map[string]string `type:"map"` } // String returns the string representation func (s CreateGroupOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s CreateGroupOutput) MarshalFields(e protocol.FieldEncoder) error { if s.Group != nil { v := s.Group metadata := protocol.Metadata{} e.SetFields(protocol.BodyTarget, "Group", v, metadata) } if s.ResourceQuery != nil { v := s.ResourceQuery metadata := protocol.Metadata{} e.SetFields(protocol.BodyTarget, "ResourceQuery", 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 } const opCreateGroup = "CreateGroup" // CreateGroupRequest returns a request value for making API operation for // AWS Resource Groups. // // Creates a group with a specified name, description, and resource query. // // // Example sending a request using CreateGroupRequest. // req := client.CreateGroupRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/resource-groups-2017-11-27/CreateGroup func (c *Client) CreateGroupRequest(input *CreateGroupInput) CreateGroupRequest { op := &aws.Operation{ Name: opCreateGroup, HTTPMethod: "POST", HTTPPath: "/groups", } if input == nil { input = &CreateGroupInput{} } req := c.newRequest(op, input, &CreateGroupOutput{}) return CreateGroupRequest{Request: req, Input: input, Copy: c.CreateGroupRequest} } // CreateGroupRequest is the request type for the // CreateGroup API operation. type CreateGroupRequest struct { *aws.Request Input *CreateGroupInput Copy func(*CreateGroupInput) CreateGroupRequest } // Send marshals and sends the CreateGroup API request. func (r CreateGroupRequest) Send(ctx context.Context) (*CreateGroupResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateGroupResponse{ CreateGroupOutput: r.Request.Data.(*CreateGroupOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateGroupResponse is the response type for the // CreateGroup API operation. type CreateGroupResponse struct { *CreateGroupOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateGroup request. func (r *CreateGroupResponse) SDKResponseMetdata() *aws.Response { return r.response }