Class: Aws::OpenSearchService::Types::ModifyingProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::ModifyingProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/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.
5423 5424 5425 5426 5427 5428 5429 5430 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5423 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.
5423 5424 5425 5426 5427 5428 5429 5430 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5423 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.
5423 5424 5425 5426 5427 5428 5429 5430 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5423 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”“.
5423 5424 5425 5426 5427 5428 5429 5430 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5423 class ModifyingProperties < Struct.new( :name, :active_value, :pending_value, :value_type) SENSITIVE = [] include Aws::Structure end |