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
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
.
13441 13442 13443 13444 13445 13446 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13441 class OpsItemDataValue < Struct.new( :value, :type) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the OperationalData key.
13441 13442 13443 13444 13445 13446 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13441 class OpsItemDataValue < Struct.new( :value, :type) SENSITIVE = [] include Aws::Structure end |