// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package sqs 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" "github.com/aws/aws-sdk-go-v2/private/protocol/query" ) type RemovePermissionInput struct { _ struct{} `type:"structure"` // The identification of the permission to remove. This is the label added using // the AddPermission action. // // Label is a required field Label *string `type:"string" required:"true"` // The URL of the Amazon SQS queue from which permissions are removed. // // Queue URLs and names are case-sensitive. // // QueueUrl is a required field QueueUrl *string `type:"string" required:"true"` } // String returns the string representation func (s RemovePermissionInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *RemovePermissionInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "RemovePermissionInput"} if s.Label == nil { invalidParams.Add(aws.NewErrParamRequired("Label")) } if s.QueueUrl == nil { invalidParams.Add(aws.NewErrParamRequired("QueueUrl")) } if invalidParams.Len() > 0 { return invalidParams } return nil } type RemovePermissionOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s RemovePermissionOutput) String() string { return awsutil.Prettify(s) } const opRemovePermission = "RemovePermission" // RemovePermissionRequest returns a request value for making API operation for // Amazon Simple Queue Service. // // Revokes any permissions in the queue policy that matches the specified Label // parameter. // // * Only the owner of a queue can remove permissions from it. // // * Cross-account permissions don't apply to this action. For more information, // see Grant Cross-Account Permissions to a Role and a User Name (https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name) // in the Amazon Simple Queue Service Developer Guide. // // * To remove the ability to change queue permissions, you must deny permission // to the AddPermission, RemovePermission, and SetQueueAttributes actions // in your IAM policy. // // // Example sending a request using RemovePermissionRequest. // req := client.RemovePermissionRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/RemovePermission func (c *Client) RemovePermissionRequest(input *RemovePermissionInput) RemovePermissionRequest { op := &aws.Operation{ Name: opRemovePermission, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &RemovePermissionInput{} } req := c.newRequest(op, input, &RemovePermissionOutput{}) req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return RemovePermissionRequest{Request: req, Input: input, Copy: c.RemovePermissionRequest} } // RemovePermissionRequest is the request type for the // RemovePermission API operation. type RemovePermissionRequest struct { *aws.Request Input *RemovePermissionInput Copy func(*RemovePermissionInput) RemovePermissionRequest } // Send marshals and sends the RemovePermission API request. func (r RemovePermissionRequest) Send(ctx context.Context) (*RemovePermissionResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &RemovePermissionResponse{ RemovePermissionOutput: r.Request.Data.(*RemovePermissionOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // RemovePermissionResponse is the response type for the // RemovePermission API operation. type RemovePermissionResponse struct { *RemovePermissionOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // RemovePermission request. func (r *RemovePermissionResponse) SDKResponseMetdata() *aws.Response { return r.response }