Class: Aws::PinpointSMSVoiceV2::Types::SenderIdAndCountry
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointSMSVoiceV2::Types::SenderIdAndCountry
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointsmsvoicev2/types.rb
 
Overview
The alphanumeric sender ID in a specific country that you want to describe. For more information on sender IDs see [Requesting sender IDs for SMS messaging with Amazon Pinpoint ][1] in the *Amazon Pinpoint User Guide*.
[1]: docs.aws.amazon.com/pinpoint/latest/userguide/channels-sms-awssupport-sender-id.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #iso_country_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
 - 
  
    
      #sender_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the sender.
 
Instance Attribute Details
#iso_country_code ⇒ String
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
      5695 5696 5697 5698 5699 5700  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5695 class SenderIdAndCountry < Struct.new( :sender_id, :iso_country_code) SENSITIVE = [] include Aws::Structure end  | 
  
#sender_id ⇒ String
The unique identifier of the sender.
      5695 5696 5697 5698 5699 5700  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5695 class SenderIdAndCountry < Struct.new( :sender_id, :iso_country_code) SENSITIVE = [] include Aws::Structure end  |