Class: Aws::ElementalInference::Types::UpdateDictionaryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::UpdateDictionaryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elementalinference/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entries ⇒ String
New dictionary entries.
-
#id ⇒ String
The ID of the dictionary to update.
-
#language ⇒ String
A new language for the dictionary.
-
#name ⇒ String
A new name for the dictionary.
Instance Attribute Details
#entries ⇒ String
New dictionary entries. If not specified, the entries are not changed.
1022 1023 1024 1025 1026 1027 1028 1029 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1022 class UpdateDictionaryRequest < Struct.new( :id, :name, :language, :entries) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the dictionary to update.
1022 1023 1024 1025 1026 1027 1028 1029 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1022 class UpdateDictionaryRequest < Struct.new( :id, :name, :language, :entries) SENSITIVE = [] include Aws::Structure end |
#language ⇒ String
A new language for the dictionary. If not specified, the language is not changed.
1022 1023 1024 1025 1026 1027 1028 1029 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1022 class UpdateDictionaryRequest < Struct.new( :id, :name, :language, :entries) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A new name for the dictionary. If not specified, the name is not changed.
1022 1023 1024 1025 1026 1027 1028 1029 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1022 class UpdateDictionaryRequest < Struct.new( :id, :name, :language, :entries) SENSITIVE = [] include Aws::Structure end |