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

ConformancePackStatusDetail

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

Status details of a conformance pack.

interface ConformancePackStatusDetail {
ConformancePackArn: string;
ConformancePackId: string;
ConformancePackName: string;
ConformancePackState: ConformancePackState;
ConformancePackStatusReason?: string | null;
LastUpdateCompletedTime?: Date | number | null;
LastUpdateRequestedTime: Date | number;
StackArn: string;
}

§Properties

§
ConformancePackArn: string
[src]

Amazon Resource Name (ARN) of comformance pack.

§
ConformancePackId: string
[src]

ID of the conformance pack.

§
ConformancePackName: string
[src]

Name of the conformance pack.

§
ConformancePackState: ConformancePackState
[src]

Indicates deployment status of conformance pack.

Config sets the state of the conformance pack to:

  • CREATE_IN_PROGRESS when a conformance pack creation is in progress for an account.
  • CREATE_COMPLETE when a conformance pack has been successfully created in your account.
  • CREATE_FAILED when a conformance pack creation failed in your account.
  • DELETE_IN_PROGRESS when a conformance pack deletion is in progress.
  • DELETE_FAILED when a conformance pack deletion failed in your account.
§
ConformancePackStatusReason?: string | null
[src]

The reason of conformance pack creation failure.

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

Last time when conformation pack creation and update was successful.

§
LastUpdateRequestedTime: Date | number
[src]

Last time when conformation pack creation and update was requested.

§
StackArn: string
[src]

Amazon Resource Name (ARN) of CloudFormation stack.