Class: Aws::PinpointSMSVoiceV2::Types::CreateRegistrationRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointSMSVoiceV2::Types::CreateRegistrationRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointsmsvoicev2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
 - 
  
    
      #registration_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of registration form to create.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of tags (key and value pairs) to associate with the registration.
 
Instance Attribute Details
#client_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, a randomly generated token is used for the request to ensure idempotency.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
      919 920 921 922 923 924 925  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 919 class CreateRegistrationRequest < Struct.new( :registration_type, :tags, :client_token) SENSITIVE = [] include Aws::Structure end  | 
  
#registration_type ⇒ String
The type of registration form to create. The list of RegistrationTypes can be found using the DescribeRegistrationTypeDefinitions action.
      919 920 921 922 923 924 925  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 919 class CreateRegistrationRequest < Struct.new( :registration_type, :tags, :client_token) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
An array of tags (key and value pairs) to associate with the registration.
      919 920 921 922 923 924 925  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 919 class CreateRegistrationRequest < Struct.new( :registration_type, :tags, :client_token) SENSITIVE = [] include Aws::Structure end  |