Class: Aws::SSM::Types::OpsItemDataValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::OpsItemDataValue
- Defined in:
- gems/aws-sdk-ssm/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
The type of key-value pair.
-
#value ⇒ String
The value of the OperationalData key.
Instance Attribute Details
#type ⇒ String
The type of key-value pair. Valid types include SearchableString
and String
.
14544 14545 14546 14547 14548 14549 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 14544 class OpsItemDataValue < Struct.new( :value, :type) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the OperationalData key.
14544 14545 14546 14547 14548 14549 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 14544 class OpsItemDataValue < Struct.new( :value, :type) SENSITIVE = [] include Aws::Structure end |