Class: Aws::SQS::Types::RemovePermissionRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sqs/types.rb

Overview

Note:

When making an API call, you may pass RemovePermissionRequest data as a hash:

{
  queue_url: "String", # required
  label: "String", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#labelString

The identification of the permission to remove. This is the label added using the ‘ AddPermission ` action.

Returns:

  • (String)


1678
1679
1680
1681
1682
1683
# File 'lib/aws-sdk-sqs/types.rb', line 1678

class RemovePermissionRequest < Struct.new(
  :queue_url,
  :label)
  SENSITIVE = []
  include Aws::Structure
end

#queue_urlString

The URL of the Amazon SQS queue from which permissions are removed.

Queue URLs and names are case-sensitive.

Returns:

  • (String)


1678
1679
1680
1681
1682
1683
# File 'lib/aws-sdk-sqs/types.rb', line 1678

class RemovePermissionRequest < Struct.new(
  :queue_url,
  :label)
  SENSITIVE = []
  include Aws::Structure
end