Class: Aws::SNS::Types::Subscription
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SNS::Types::Subscription
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sns/types.rb
 
Overview
A wrapper type for the attributes of an Amazon SNS subscription.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #endpoint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subscription’s endpoint (format depends on the protocol).
 - 
  
    
      #owner  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subscription’s owner.
 - 
  
    
      #protocol  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subscription’s protocol.
 - 
  
    
      #subscription_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subscription’s ARN.
 - 
  
    
      #topic_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the subscription’s topic.
 
Instance Attribute Details
#endpoint ⇒ String
The subscription’s endpoint (format depends on the protocol).
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-sns/types.rb', line 2870 class Subscription < Struct.new( :subscription_arn, :owner, :protocol, :endpoint, :topic_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#owner ⇒ String
The subscription’s owner.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-sns/types.rb', line 2870 class Subscription < Struct.new( :subscription_arn, :owner, :protocol, :endpoint, :topic_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#protocol ⇒ String
The subscription’s protocol.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-sns/types.rb', line 2870 class Subscription < Struct.new( :subscription_arn, :owner, :protocol, :endpoint, :topic_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#subscription_arn ⇒ String
The subscription’s ARN.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-sns/types.rb', line 2870 class Subscription < Struct.new( :subscription_arn, :owner, :protocol, :endpoint, :topic_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#topic_arn ⇒ String
The ARN of the subscription’s topic.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-sns/types.rb', line 2870 class Subscription < Struct.new( :subscription_arn, :owner, :protocol, :endpoint, :topic_arn) SENSITIVE = [] include Aws::Structure end  |