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.
6908 6909 6910 6911 6912 6913 6914 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6908 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.
6908 6909 6910 6911 6912 6913 6914 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6908 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.
6908 6909 6910 6911 6912 6913 6914 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6908 class TextValidation < Struct.new( :min_length, :max_length, :pattern) SENSITIVE = [] include Aws::Structure end |