Class: Aws::OpenSearchService::Types::ModifyingProperties

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#active_valueString

The current value of the domain property that is being modified.

Returns:

  • (String)


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

#nameString

The name of the property that is currently being modified.

Returns:

  • (String)


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_valueString

The value that the property that is currently being modified will eventually have.

Returns:

  • (String)


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_typeString

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”“.

Returns:

  • (String)


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