Class: Aws::ElasticsearchService::Types::ModifyingProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ModifyingProperties
- Defined in:
- gems/aws-sdk-elasticsearchservice/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.
3341 3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 3341 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.
3341 3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 3341 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.
3341 3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 3341 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"".
3341 3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 3341 class ModifyingProperties < Struct.new( :name, :active_value, :pending_value, :value_type) SENSITIVE = [] include Aws::Structure end |