Class: Aws::SSM::Types::InventoryItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::InventoryItem
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Information collected from managed nodes based on your inventory policy document
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capture_time ⇒ String
The time the inventory information was collected.
-
#content ⇒ Array<Hash<String,String>>
The inventory data of the inventory type.
-
#content_hash ⇒ String
MD5 hash of the inventory item type contents.
-
#context ⇒ Hash<String,String>
A map of associated properties for a specified inventory type.
-
#schema_version ⇒ String
The schema version for the inventory item.
-
#type_name ⇒ String
The name of the inventory type.
Instance Attribute Details
#capture_time ⇒ String
The time the inventory information was collected.
11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 11503 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |
#content ⇒ Array<Hash<String,String>>
The inventory data of the inventory type.
11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 11503 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |
#content_hash ⇒ String
MD5 hash of the inventory item type contents. The content hash is used to determine whether to update inventory information. The PutInventory API doesn't update the inventory item type contents if the MD5 hash hasn't changed since last update.
11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 11503 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |
#context ⇒ Hash<String,String>
A map of associated properties for a specified inventory type. For
example, with this attribute, you can specify the ExecutionId
,
ExecutionType
, ComplianceType
properties of the
AWS:ComplianceItem
type.
11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 11503 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |
#schema_version ⇒ String
The schema version for the inventory item.
11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 11503 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |
#type_name ⇒ String
The name of the inventory type. Default inventory item type names
start with AWS
. Custom inventory type names will start with
Custom. Default inventory item types include the following:
AWS:AWSComponent
, AWS:Application
, AWS:InstanceInformation
,
AWS:Network
, and AWS:WindowsUpdate
.
11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 11503 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |