Class: Aws::LexModelBuildingService::Types::EnumerationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::EnumerationValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass EnumerationValue data as a hash:
{
value: "Value", # required
}
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
Instance Attribute Summary collapse
-
#value ⇒ String
The value of the slot type.
Instance Attribute Details
#value ⇒ String
The value of the slot type.
825 826 827 828 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 825 class EnumerationValue < Struct.new( :value) include Aws::Structure end |