You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SSM::Types::InventoryItem

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing InventoryItem as input to an Aws::Client method, you can use a vanilla Hash:

{
  type_name: "InventoryItemTypeName", # required
  schema_version: "InventoryItemSchemaVersion", # required
  capture_time: "InventoryItemCaptureTime", # required
  content_hash: "InventoryItemContentHash",
  content: [
    {
      "AttributeName" => "AttributeValue",
    },
  ],
  context: {
    "AttributeName" => "AttributeValue",
  },
}

Information collected from managed instances based on your inventory policy document

Instance Attribute Summary collapse

Instance Attribute Details

#capture_timeString

The time the inventory information was collected.

Returns:

  • (String)

    The time the inventory information was collected.

#contentArray<Hash<String,String>>

The inventory data of the inventory type.

Returns:

  • (Array<Hash<String,String>>)

    The inventory data of the inventory type.

#content_hashString

MD5 hash of the inventory item type contents. The content hash is used to determine whether to update inventory information. The PutInventory API does not update the inventory item type contents if the MD5 hash has not changed since last update.

Returns:

  • (String)

    MD5 hash of the inventory item type contents.

#contextHash<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.

Returns:

  • (Hash<String,String>)

    A map of associated properties for a specified inventory type.

#schema_versionString

The schema version for the inventory item.

Returns:

  • (String)

    The schema version for the inventory item.

#type_nameString

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.

Returns:

  • (String)

    The name of the inventory type.