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

BaseConfigurationItem

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

The detailed configuration of a specified resource.

interface BaseConfigurationItem {
accountId?: string | null;
arn?: string | null;
availabilityZone?: string | null;
awsRegion?: string | null;
configuration?: string | null;
configurationItemCaptureTime?: Date | number | null;
configurationItemStatus?: ConfigurationItemStatus | null;
configurationStateId?: string | null;
resourceCreationTime?: Date | number | null;
resourceId?: string | null;
resourceName?: string | null;
resourceType?: ResourceType | null;
supplementaryConfiguration?: {
[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]

The Amazon Resource Name (ARN) of 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.

§
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.

§
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.

§
version?: string | null
[src]

The version number of the resource configuration.