// 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 GetObjectLegalHoldInput struct { _ struct{} `type:"structure"` // The bucket name containing the object whose Legal Hold status you want to // retrieve. // // When using this API with an access point, you must direct requests to the // access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. // When using this operation using an access point through the AWS SDKs, you // provide the access point ARN in place of the bucket name. For more information // about access point ARNs, see Using Access Points (https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html) // in the Amazon Simple Storage Service Developer Guide. // // Bucket is a required field Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` // The key name for the object whose Legal Hold status you want to retrieve. // // Key is a required field Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` // Confirms that the requester knows that they will be charged for the request. // Bucket owners need not specify this parameter in their requests. For information // about downloading objects from requester pays buckets, see Downloading Objects // in Requestor Pays Buckets (https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html) // in the Amazon S3 Developer Guide. RequestPayer RequestPayer `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"true"` // The version ID of the object whose Legal Hold status you want to retrieve. VersionId *string `location:"querystring" locationName:"versionId" type:"string"` } // String returns the string representation func (s GetObjectLegalHoldInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *GetObjectLegalHoldInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "GetObjectLegalHoldInput"} if s.Bucket == nil { invalidParams.Add(aws.NewErrParamRequired("Bucket")) } if s.Key == nil { invalidParams.Add(aws.NewErrParamRequired("Key")) } if s.Key != nil && len(*s.Key) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Key", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } func (s *GetObjectLegalHoldInput) 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 GetObjectLegalHoldInput) MarshalFields(e protocol.FieldEncoder) error { if len(s.RequestPayer) > 0 { v := s.RequestPayer metadata := protocol.Metadata{} e.SetValue(protocol.HeaderTarget, "x-amz-request-payer", v, metadata) } if s.Bucket != nil { v := *s.Bucket metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "Bucket", protocol.StringValue(v), metadata) } if s.Key != nil { v := *s.Key metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "Key", protocol.StringValue(v), metadata) } if s.VersionId != nil { v := *s.VersionId metadata := protocol.Metadata{} e.SetValue(protocol.QueryTarget, "versionId", protocol.StringValue(v), metadata) } return nil } func (s *GetObjectLegalHoldInput) getEndpointARN() (arn.Resource, error) { if s.Bucket == nil { return nil, fmt.Errorf("member Bucket is nil") } return parseEndpointARN(*s.Bucket) } func (s *GetObjectLegalHoldInput) hasEndpointARN() bool { if s.Bucket == nil { return false } return arn.IsARN(*s.Bucket) } type GetObjectLegalHoldOutput struct { _ struct{} `type:"structure" payload:"LegalHold"` // The current Legal Hold status for the specified object. LegalHold *ObjectLockLegalHold `type:"structure"` } // String returns the string representation func (s GetObjectLegalHoldOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetObjectLegalHoldOutput) MarshalFields(e protocol.FieldEncoder) error { if s.LegalHold != nil { v := s.LegalHold metadata := protocol.Metadata{} e.SetFields(protocol.PayloadTarget, "LegalHold", v, metadata) } return nil } const opGetObjectLegalHold = "GetObjectLegalHold" // GetObjectLegalHoldRequest returns a request value for making API operation for // Amazon Simple Storage Service. // // Gets an object's current Legal Hold status. For more information, see Locking // Objects (https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html). // // // Example sending a request using GetObjectLegalHoldRequest. // req := client.GetObjectLegalHoldRequest(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/GetObjectLegalHold func (c *Client) GetObjectLegalHoldRequest(input *GetObjectLegalHoldInput) GetObjectLegalHoldRequest { op := &aws.Operation{ Name: opGetObjectLegalHold, HTTPMethod: "GET", HTTPPath: "/{Bucket}/{Key+}?legal-hold", } if input == nil { input = &GetObjectLegalHoldInput{} } req := c.newRequest(op, input, &GetObjectLegalHoldOutput{}) return GetObjectLegalHoldRequest{Request: req, Input: input, Copy: c.GetObjectLegalHoldRequest} } // GetObjectLegalHoldRequest is the request type for the // GetObjectLegalHold API operation. type GetObjectLegalHoldRequest struct { *aws.Request Input *GetObjectLegalHoldInput Copy func(*GetObjectLegalHoldInput) GetObjectLegalHoldRequest } // Send marshals and sends the GetObjectLegalHold API request. func (r GetObjectLegalHoldRequest) Send(ctx context.Context) (*GetObjectLegalHoldResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &GetObjectLegalHoldResponse{ GetObjectLegalHoldOutput: r.Request.Data.(*GetObjectLegalHoldOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // GetObjectLegalHoldResponse is the response type for the // GetObjectLegalHold API operation. type GetObjectLegalHoldResponse struct { *GetObjectLegalHoldOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // GetObjectLegalHold request. func (r *GetObjectLegalHoldResponse) SDKResponseMetdata() *aws.Response { return r.response }