// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package ecr import ( "context" "time" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type DeleteLifecyclePolicyInput struct { _ struct{} `type:"structure"` // The AWS account ID associated with the registry that contains the repository. // If you do not specify a registry, the default registry is assumed. RegistryId *string `locationName:"registryId" type:"string"` // The name of the repository. // // RepositoryName is a required field RepositoryName *string `locationName:"repositoryName" min:"2" type:"string" required:"true"` } // String returns the string representation func (s DeleteLifecyclePolicyInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteLifecyclePolicyInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteLifecyclePolicyInput"} if s.RepositoryName == nil { invalidParams.Add(aws.NewErrParamRequired("RepositoryName")) } if s.RepositoryName != nil && len(*s.RepositoryName) < 2 { invalidParams.Add(aws.NewErrParamMinLen("RepositoryName", 2)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type DeleteLifecyclePolicyOutput struct { _ struct{} `type:"structure"` // The time stamp of the last time that the lifecycle policy was run. LastEvaluatedAt *time.Time `locationName:"lastEvaluatedAt" type:"timestamp"` // The JSON lifecycle policy text. LifecyclePolicyText *string `locationName:"lifecyclePolicyText" min:"100" type:"string"` // The registry ID associated with the request. RegistryId *string `locationName:"registryId" type:"string"` // The repository name associated with the request. RepositoryName *string `locationName:"repositoryName" min:"2" type:"string"` } // String returns the string representation func (s DeleteLifecyclePolicyOutput) String() string { return awsutil.Prettify(s) } const opDeleteLifecyclePolicy = "DeleteLifecyclePolicy" // DeleteLifecyclePolicyRequest returns a request value for making API operation for // Amazon EC2 Container Registry. // // Deletes the lifecycle policy associated with the specified repository. // // // Example sending a request using DeleteLifecyclePolicyRequest. // req := client.DeleteLifecyclePolicyRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DeleteLifecyclePolicy func (c *Client) DeleteLifecyclePolicyRequest(input *DeleteLifecyclePolicyInput) DeleteLifecyclePolicyRequest { op := &aws.Operation{ Name: opDeleteLifecyclePolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteLifecyclePolicyInput{} } req := c.newRequest(op, input, &DeleteLifecyclePolicyOutput{}) return DeleteLifecyclePolicyRequest{Request: req, Input: input, Copy: c.DeleteLifecyclePolicyRequest} } // DeleteLifecyclePolicyRequest is the request type for the // DeleteLifecyclePolicy API operation. type DeleteLifecyclePolicyRequest struct { *aws.Request Input *DeleteLifecyclePolicyInput Copy func(*DeleteLifecyclePolicyInput) DeleteLifecyclePolicyRequest } // Send marshals and sends the DeleteLifecyclePolicy API request. func (r DeleteLifecyclePolicyRequest) Send(ctx context.Context) (*DeleteLifecyclePolicyResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteLifecyclePolicyResponse{ DeleteLifecyclePolicyOutput: r.Request.Data.(*DeleteLifecyclePolicyOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteLifecyclePolicyResponse is the response type for the // DeleteLifecyclePolicy API operation. type DeleteLifecyclePolicyResponse struct { *DeleteLifecyclePolicyOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteLifecyclePolicy request. func (r *DeleteLifecyclePolicyResponse) SDKResponseMetdata() *aws.Response { return r.response }