Class: Aws::PinpointSMSVoiceV2::Types::SelectValidation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_choicesInteger

The maximum number of choices for the select.

Returns:

  • (Integer)


5910
5911
5912
5913
5914
5915
5916
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5910

class SelectValidation < Struct.new(
  :min_choices,
  :max_choices,
  :options)
  SENSITIVE = []
  include Aws::Structure
end

#min_choicesInteger

The minimum number of choices for the select.

Returns:

  • (Integer)


5910
5911
5912
5913
5914
5915
5916
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5910

class SelectValidation < Struct.new(
  :min_choices,
  :max_choices,
  :options)
  SENSITIVE = []
  include Aws::Structure
end

#optionsArray<String>

An array of strings for the possible selection options.

Returns:

  • (Array<String>)


5910
5911
5912
5913
5914
5915
5916
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 5910

class SelectValidation < Struct.new(
  :min_choices,
  :max_choices,
  :options)
  SENSITIVE = []
  include Aws::Structure
end