Class: Aws::ElementalInference::Types::CreateDictionaryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::CreateDictionaryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elementalinference/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entries ⇒ String
The dictionary entries payload.
-
#language ⇒ String
The language of the dictionary entries.
-
#name ⇒ String
A user-friendly name for this dictionary.
-
#tags ⇒ Hash<String,String>
Optional tags to associate with the dictionary.
Instance Attribute Details
#entries ⇒ String
The dictionary entries payload. Contains the custom words and phrases for the dictionary. Maximum size is 40,960 characters.
160 161 162 163 164 165 166 167 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 160 class CreateDictionaryRequest < Struct.new( :name, :language, :entries, :tags) SENSITIVE = [] include Aws::Structure end |
#language ⇒ String
The language of the dictionary entries. Specify the language using an ISO 639-2/T three-letter code. Supported values: eng, fra, ita, deu, spa, por.
160 161 162 163 164 165 166 167 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 160 class CreateDictionaryRequest < Struct.new( :name, :language, :entries, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A user-friendly name for this dictionary.
160 161 162 163 164 165 166 167 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 160 class CreateDictionaryRequest < Struct.new( :name, :language, :entries, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Optional tags to associate with the dictionary.
160 161 162 163 164 165 166 167 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 160 class CreateDictionaryRequest < Struct.new( :name, :language, :entries, :tags) SENSITIVE = [] include Aws::Structure end |