Class: Aws::SSM::Types::InventoryItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::InventoryItem
- Includes:
- Aws::Structure
- Defined in:
- 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.
10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 |
# File 'lib/aws-sdk-ssm/types.rb', line 10997 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.
10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 |
# File 'lib/aws-sdk-ssm/types.rb', line 10997 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.
10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 |
# File 'lib/aws-sdk-ssm/types.rb', line 10997 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.
10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 |
# File 'lib/aws-sdk-ssm/types.rb', line 10997 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.
10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 |
# File 'lib/aws-sdk-ssm/types.rb', line 10997 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`.
10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 |
# File 'lib/aws-sdk-ssm/types.rb', line 10997 class InventoryItem < Struct.new( :type_name, :schema_version, :capture_time, :content_hash, :content, :context) SENSITIVE = [] include Aws::Structure end |