Class: Aws::PinpointSMSVoiceV2::Types::TextValidation
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoiceV2::Types::TextValidation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointsmsvoicev2/types.rb
Overview
Validation rules for a text field.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_length ⇒ Integer
The maximum number of characters for the text field.
-
#min_length ⇒ Integer
The minimum number of characters for the text field.
-
#pattern ⇒ String
The regular expression used to validate the text field.
Instance Attribute Details
#max_length ⇒ Integer
The maximum number of characters for the text field.
6493 6494 6495 6496 6497 6498 6499 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6493 class TextValidation < Struct.new( :min_length, :max_length, :pattern) SENSITIVE = [] include Aws::Structure end |
#min_length ⇒ Integer
The minimum number of characters for the text field.
6493 6494 6495 6496 6497 6498 6499 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6493 class TextValidation < Struct.new( :min_length, :max_length, :pattern) SENSITIVE = [] include Aws::Structure end |
#pattern ⇒ String
The regular expression used to validate the text field.
6493 6494 6495 6496 6497 6498 6499 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6493 class TextValidation < Struct.new( :min_length, :max_length, :pattern) SENSITIVE = [] include Aws::Structure end |