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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchservice/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)


4608
4609
4610
4611
4612
4613
4614
4615
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4608

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)


4608
4609
4610
4611
4612
4613
4614
4615
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4608

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)


4608
4609
4610
4611
4612
4613
4614
4615
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4608

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)


4608
4609
4610
4611
4612
4613
4614
4615
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4608

class ModifyingProperties < Struct.new(
  :name,
  :active_value,
  :pending_value,
  :value_type)
  SENSITIVE = []
  include Aws::Structure
end