Class: Aws::SNS::Types::UnsubscribeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::UnsubscribeInput
- Defined in:
- gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb
Overview
Note:
When making an API call, you may pass UnsubscribeInput data as a hash:
{
subscription_arn: "subscriptionARN", # required
}
Input for Unsubscribe action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subscription_arn ⇒ String
The ARN of the subscription to be deleted.
Instance Attribute Details
#subscription_arn ⇒ String
The ARN of the subscription to be deleted.
2453 2454 2455 2456 2457 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 2453 class UnsubscribeInput < Struct.new( :subscription_arn) SENSITIVE = [] include Aws::Structure end |