Class: Aws::SNS::Types::RemovePermissionInput

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

Overview

Note:

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

{
  topic_arn: "topicARN", # required
  label: "label", # required
}

Input for RemovePermission action.

Instance Attribute Summary collapse

Instance Attribute Details

#labelString

The unique label of the statement you want to remove.

Returns:

  • (String)


1206
1207
1208
1209
1210
# File 'lib/aws-sdk-sns/types.rb', line 1206

class RemovePermissionInput < Struct.new(
  :topic_arn,
  :label)
  include Aws::Structure
end

#topic_arnString

The ARN of the topic whose access control policy you wish to modify.

Returns:

  • (String)


1206
1207
1208
1209
1210
# File 'lib/aws-sdk-sns/types.rb', line 1206

class RemovePermissionInput < Struct.new(
  :topic_arn,
  :label)
  include Aws::Structure
end