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
}

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)


1258
1259
1260
1261
1262
# File 'lib/aws-sdk-sqs/types.rb', line 1258

class RemovePermissionRequest < Struct.new(
  :queue_url,
  :label)
  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)


1258
1259
1260
1261
1262
# File 'lib/aws-sdk-sqs/types.rb', line 1258

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