Class: Aws::SNS::Types::RemovePermissionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::RemovePermissionInput
- Defined in:
- gems/aws-sdk-sns/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#label ⇒ String
The unique label of the statement you want to remove.
-
#topic_arn ⇒ String
The ARN of the topic whose access control policy you wish to modify.
Instance Attribute Details
#label ⇒ String
The unique label of the statement you want to remove.
2250 2251 2252 2253 2254 2255 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 2250 class RemovePermissionInput < Struct.new( :topic_arn, :label) SENSITIVE = [] include Aws::Structure end |
#topic_arn ⇒ String
The ARN of the topic whose access control policy you wish to modify.
2250 2251 2252 2253 2254 2255 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 2250 class RemovePermissionInput < Struct.new( :topic_arn, :label) SENSITIVE = [] include Aws::Structure end |