Class: Aws::SSM::Types::OpsItemDataValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb

Overview

An object that defines the value of the key and its type in the OperationalData map.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The type of key-value pair. Valid types include SearchableString and String.

Returns:

  • (String)


13107
13108
13109
13110
13111
13112
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13107

class OpsItemDataValue < Struct.new(
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the OperationalData key.

Returns:

  • (String)


13107
13108
13109
13110
13111
13112
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13107

class OpsItemDataValue < Struct.new(
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end