Class: Aws::SNS::Types::GetSubscriptionAttributesResponse

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

Overview

Response for GetSubscriptionAttributes action.

Instance Attribute Summary collapse

Instance Attribute Details

#attributesHash<String,String>

A map of the subscription’s attributes. Attributes in this map include the following:

  • ‘SubscriptionArn` – the subscription’s ARN

  • ‘TopicArn` – the topic ARN that the subscription is associated with

  • ‘Owner` – the AWS account ID of the subscription’s owner

  • ‘ConfirmationWasAuthenticated` – true if the subscription confirmation request was authenticated

  • ‘DeliveryPolicy` – the JSON serialization of the subscription’s delivery policy

  • ‘EffectiveDeliveryPolicy` – the JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults

Returns:

  • (Hash<String,String>)


554
555
556
557
# File 'lib/aws-sdk-sns/types.rb', line 554

class GetSubscriptionAttributesResponse < Struct.new(
  :attributes)
  include Aws::Structure
end