Class: Aws::LexModelBuildingService::Types::SlotTypeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::SlotTypeConfiguration
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass SlotTypeConfiguration data as a hash:
{
regex_configuration: {
pattern: "RegexPattern", # required
},
}
Provides configuration information for a slot type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#regex_configuration ⇒ Types::SlotTypeRegexConfiguration
A regular expression used to validate the value of a slot.
Instance Attribute Details
#regex_configuration ⇒ Types::SlotTypeRegexConfiguration
A regular expression used to validate the value of a slot.
4848 4849 4850 4851 4852 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4848 class SlotTypeConfiguration < Struct.new( :regex_configuration) SENSITIVE = [] include Aws::Structure end |