Class: Aws::SSM::Types::ResultAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ResultAttribute
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Note:
When making an API call, you may pass ResultAttribute data as a hash:
{
type_name: "InventoryItemTypeName", # required
}
The inventory item result attribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type_name ⇒ String
Name of the inventory item type.
Instance Attribute Details
#type_name ⇒ String
Name of the inventory item type. Valid value:
AWS:InstanceInformation
. Default Value: AWS:InstanceInformation
.
17956 17957 17958 17959 17960 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 17956 class ResultAttribute < Struct.new( :type_name) SENSITIVE = [] include Aws::Structure end |