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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#subscription_arnString

The ARN of the subscription to be deleted.

Returns:

  • (String)


2277
2278
2279
2280
2281
# File 'lib/aws-sdk-sns/types.rb', line 2277

class UnsubscribeInput < Struct.new(
  :subscription_arn)
  SENSITIVE = []
  include Aws::Structure
end