Class: Aws::ElasticsearchService::Types::ModifyingProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ModifyingProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Information about the domain properties that are currently being modified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#active_value ⇒ String
The current value of the domain property that is being modified.
-
#name ⇒ String
The name of the property that is currently being modified.
-
#pending_value ⇒ String
The value that the property that is currently being modified will eventually have.
-
#value_type ⇒ String
The type of value that is currently being modified.
Instance Attribute Details
#active_value ⇒ String
The current value of the domain property that is being modified.
3292 3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3292 class ModifyingProperties < Struct.new( :name, :active_value, :pending_value, :value_type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the property that is currently being modified.
3292 3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3292 class ModifyingProperties < Struct.new( :name, :active_value, :pending_value, :value_type) SENSITIVE = [] include Aws::Structure end |
#pending_value ⇒ String
The value that the property that is currently being modified will eventually have.
3292 3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3292 class ModifyingProperties < Struct.new( :name, :active_value, :pending_value, :value_type) SENSITIVE = [] include Aws::Structure end |
#value_type ⇒ String
The type of value that is currently being modified. Properties can have two types:
-
PLAIN_TEXT: Contain direct values such as “1”, “True”, or “c5.large.search”.
-
STRINGIFIED_JSON: Contain content in JSON format, such as “Enabled”:“True”“.
3292 3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3292 class ModifyingProperties < Struct.new( :name, :active_value, :pending_value, :value_type) SENSITIVE = [] include Aws::Structure end |