Class: Aws::SNS::Types::UnsubscribeInput

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 UnsubscribeInput data as a hash:

{
  subscription_arn: "subscriptionARN", # required
}

Input for Unsubscribe action.

Instance Attribute Summary collapse

Instance Attribute Details

#subscription_arnString

The ARN of the subscription to be deleted.

Returns:

  • (String)


1713
1714
1715
1716
# File 'lib/aws-sdk-sns/types.rb', line 1713

class UnsubscribeInput < Struct.new(
  :subscription_arn)
  include Aws::Structure
end