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

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

Overview

Note:

When making an API call, you may pass OpsItemDataValue data as a hash:

{
  value: "OpsItemDataValueString",
  type: "SearchableString", # accepts SearchableString, String
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

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

Returns:

  • (String)


11787
11788
11789
11790
11791
# File 'lib/aws-sdk-ssm/types.rb', line 11787

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

#valueString

The value of the OperationalData key.

Returns:

  • (String)


11787
11788
11789
11790
11791
# File 'lib/aws-sdk-ssm/types.rb', line 11787

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