Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConfigurationItem

import type { ConfigurationItem } from "https://aws-api.deno.dev/v0.4/services/configservice.ts?docs=full";

A list that contains detailed configurations of a specified resource.

interface ConfigurationItem {
accountId?: string | null;
arn?: string | null;
availabilityZone?: string | null;
awsRegion?: string | null;
configuration?: string | null;
configurationItemCaptureTime?: Date | number | null;
configurationItemMD5Hash?: string | null;
configurationItemStatus?: ConfigurationItemStatus | null;
configurationStateId?: string | null;
relatedEvents?: string[] | null;
relationships?: Relationship[] | null;
resourceCreationTime?: Date | number | null;
resourceId?: string | null;
resourceName?: string | null;
resourceType?: ResourceType | null;
supplementaryConfiguration?: {
[key: string]: string | null | undefined;
}
| null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
version?: string | null;
}

§Properties

§
accountId?: string | null
[src]

The 12-digit Amazon Web Services account ID associated with the resource.

§
arn?: string | null
[src]

Amazon Resource Name (ARN) associated with the resource.

§
availabilityZone?: string | null
[src]

The Availability Zone associated with the resource.

§
awsRegion?: string | null
[src]

The region where the resource resides.

§
configuration?: string | null
[src]

The description of the resource configuration.

§
configurationItemCaptureTime?: Date | number | null
[src]

The time when the configuration recording was initiated.

§
configurationItemMD5Hash?: string | null
[src]

Unique MD5 hash that represents the configuration item's state.

You can use MD5 hash to compare the states of two or more configuration items that are associated with the same resource.

§
configurationItemStatus?: ConfigurationItemStatus | null
[src]

The configuration item status. The valid values are:

  • OK – The resource configuration has been updated
  • ResourceDiscovered – The resource was newly discovered
  • ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder excludes the recording of resources of this type
  • ResourceDeleted – The resource was deleted
  • ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type

Note: The CIs do not incur any cost.

§
configurationStateId?: string | null
[src]

An identifier that indicates the ordering of the configuration items of a resource.

§
relatedEvents?: string[] | null
[src]

A list of CloudTrail event IDs.

A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see What Is CloudTrail.

An empty field indicates that the current configuration was not initiated by any event. As of Version 1.3, the relatedEvents field is empty. You can access the LookupEvents API in the CloudTrail API Reference to retrieve the events for the resource.

§
relationships?: Relationship[] | null
[src]

A list of related Amazon Web Services resources.

§
resourceCreationTime?: Date | number | null
[src]

The time stamp when the resource was created.

§
resourceId?: string | null
[src]

The ID of the resource (for example, sg-xxxxxx).

§
resourceName?: string | null
[src]

The custom name of the resource, if available.

§
resourceType?: ResourceType | null
[src]

The type of Amazon Web Services resource.

§
supplementaryConfiguration?: {
[key: string]: string | null | undefined;
}
| null
[src]

Configuration attributes that Config returns for certain resource types to supplement the information returned for the configuration parameter.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A mapping of key value tags associated with the resource.

§
version?: string | null
[src]

The version number of the resource configuration.