// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package s3 import ( "context" "fmt" "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" "github.com/aws/aws-sdk-go-v2/service/s3/internal/arn" ) type GetBucketInventoryConfigurationInput struct { _ struct{} `type:"structure"` // The name of the bucket containing the inventory configuration to retrieve. // // Bucket is a required field Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` // The ID used to identify the inventory configuration. // // Id is a required field Id *string `location:"querystring" locationName:"id" type:"string" required:"true"` } // String returns the string representation func (s GetBucketInventoryConfigurationInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *GetBucketInventoryConfigurationInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "GetBucketInventoryConfigurationInput"} if s.Bucket == nil { invalidParams.Add(aws.NewErrParamRequired("Bucket")) } if s.Id == nil { invalidParams.Add(aws.NewErrParamRequired("Id")) } if invalidParams.Len() > 0 { return invalidParams } return nil } func (s *GetBucketInventoryConfigurationInput) getBucket() (v string) { if s.Bucket == nil { return v } return *s.Bucket } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetBucketInventoryConfigurationInput) MarshalFields(e protocol.FieldEncoder) error { if s.Bucket != nil { v := *s.Bucket metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "Bucket", protocol.StringValue(v), metadata) } if s.Id != nil { v := *s.Id metadata := protocol.Metadata{} e.SetValue(protocol.QueryTarget, "id", protocol.StringValue(v), metadata) } return nil } func (s *GetBucketInventoryConfigurationInput) getEndpointARN() (arn.Resource, error) { if s.Bucket == nil { return nil, fmt.Errorf("member Bucket is nil") } return parseEndpointARN(*s.Bucket) } func (s *GetBucketInventoryConfigurationInput) hasEndpointARN() bool { if s.Bucket == nil { return false } return arn.IsARN(*s.Bucket) } type GetBucketInventoryConfigurationOutput struct { _ struct{} `type:"structure" payload:"InventoryConfiguration"` // Specifies the inventory configuration. InventoryConfiguration *InventoryConfiguration `type:"structure"` } // String returns the string representation func (s GetBucketInventoryConfigurationOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetBucketInventoryConfigurationOutput) MarshalFields(e protocol.FieldEncoder) error { if s.InventoryConfiguration != nil { v := s.InventoryConfiguration metadata := protocol.Metadata{} e.SetFields(protocol.PayloadTarget, "InventoryConfiguration", v, metadata) } return nil } const opGetBucketInventoryConfiguration = "GetBucketInventoryConfiguration" // GetBucketInventoryConfigurationRequest returns a request value for making API operation for // Amazon Simple Storage Service. // // Returns an inventory configuration (identified by the inventory configuration // ID) from the bucket. // // To use this operation, you must have permissions to perform the s3:GetInventoryConfiguration // action. The bucket owner has this permission by default and can grant this // permission to others. For more information about permissions, see Permissions // Related to Bucket Subresource Operations (https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources) // and Managing Access Permissions to Your Amazon S3 Resources (https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html). // // For information about the Amazon S3 inventory feature, see Amazon S3 Inventory // (https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html). // // The following operations are related to GetBucketInventoryConfiguration: // // * DeleteBucketInventoryConfiguration // // * ListBucketInventoryConfigurations // // * PutBucketInventoryConfiguration // // // Example sending a request using GetBucketInventoryConfigurationRequest. // req := client.GetBucketInventoryConfigurationRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketInventoryConfiguration func (c *Client) GetBucketInventoryConfigurationRequest(input *GetBucketInventoryConfigurationInput) GetBucketInventoryConfigurationRequest { op := &aws.Operation{ Name: opGetBucketInventoryConfiguration, HTTPMethod: "GET", HTTPPath: "/{Bucket}?inventory", } if input == nil { input = &GetBucketInventoryConfigurationInput{} } req := c.newRequest(op, input, &GetBucketInventoryConfigurationOutput{}) return GetBucketInventoryConfigurationRequest{Request: req, Input: input, Copy: c.GetBucketInventoryConfigurationRequest} } // GetBucketInventoryConfigurationRequest is the request type for the // GetBucketInventoryConfiguration API operation. type GetBucketInventoryConfigurationRequest struct { *aws.Request Input *GetBucketInventoryConfigurationInput Copy func(*GetBucketInventoryConfigurationInput) GetBucketInventoryConfigurationRequest } // Send marshals and sends the GetBucketInventoryConfiguration API request. func (r GetBucketInventoryConfigurationRequest) Send(ctx context.Context) (*GetBucketInventoryConfigurationResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &GetBucketInventoryConfigurationResponse{ GetBucketInventoryConfigurationOutput: r.Request.Data.(*GetBucketInventoryConfigurationOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // GetBucketInventoryConfigurationResponse is the response type for the // GetBucketInventoryConfiguration API operation. type GetBucketInventoryConfigurationResponse struct { *GetBucketInventoryConfigurationOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // GetBucketInventoryConfiguration request. func (r *GetBucketInventoryConfigurationResponse) SDKResponseMetdata() *aws.Response { return r.response }