Class: Aws::LexModelBuildingService::Types::EnumerationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::EnumerationValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Each slot type can have a set of values. Each enumeration value represents a value the slot type can take.
For example, a pizza ordering bot could have a slot type that specifies the type of crust that the pizza should have. The slot type could include the values
-
thick
-
thin
-
stuffed
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#synonyms ⇒ Array<String>
Additional values related to the slot type value.
-
#value ⇒ String
The value of the slot type.
Instance Attribute Details
#synonyms ⇒ Array<String>
Additional values related to the slot type value.
909 910 911 912 913 914 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 909 class EnumerationValue < Struct.new( :value, :synonyms) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the slot type.
909 910 911 912 913 914 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 909 class EnumerationValue < Struct.new( :value, :synonyms) SENSITIVE = [] include Aws::Structure end |