Class: Aws::SQS::Types::RemovePermissionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::RemovePermissionRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#label ⇒ String
The identification of the permission to remove.
-
#queue_url ⇒ String
The URL of the Amazon SQS queue from which permissions are removed.
Instance Attribute Details
#label ⇒ String
The identification of the permission to remove. This is the label added using the ‘ AddPermission ` action.
1912 1913 1914 1915 1916 1917 |
# File 'lib/aws-sdk-sqs/types.rb', line 1912 class RemovePermissionRequest < Struct.new( :queue_url, :label) SENSITIVE = [] include Aws::Structure end |
#queue_url ⇒ String
The URL of the Amazon SQS queue from which permissions are removed.
Queue URLs and names are case-sensitive.
1912 1913 1914 1915 1916 1917 |
# File 'lib/aws-sdk-sqs/types.rb', line 1912 class RemovePermissionRequest < Struct.new( :queue_url, :label) SENSITIVE = [] include Aws::Structure end |