Class: Aws::PinpointSMSVoiceV2::Types::SelectValidation
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointSMSVoiceV2::Types::SelectValidation
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointsmsvoicev2/types.rb
 
Overview
Validation rules for a select field.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max_choices  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of choices for the select.
 - 
  
    
      #min_choices  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum number of choices for the select.
 - 
  
    
      #options  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of strings for the possible selection options.
 
Instance Attribute Details
#max_choices ⇒ Integer
The maximum number of choices for the select.
      5323 5324 5325 5326 5327 5328 5329  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5323 class SelectValidation < Struct.new( :min_choices, :max_choices, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#min_choices ⇒ Integer
The minimum number of choices for the select.
      5323 5324 5325 5326 5327 5328 5329  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5323 class SelectValidation < Struct.new( :min_choices, :max_choices, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#options ⇒ Array<String>
An array of strings for the possible selection options.
      5323 5324 5325 5326 5327 5328 5329  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5323 class SelectValidation < Struct.new( :min_choices, :max_choices, :options) SENSITIVE = [] include Aws::Structure end  |