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

StackResourceDriftInformation

import type { StackResourceDriftInformation } from "https://aws-api.deno.dev/v0.3/services/cloudformation.ts?docs=full";

Contains information about whether the resource's actual configuration differs, or has drifted, from its expected configuration.

interface StackResourceDriftInformation {
LastCheckTimestamp?: Date | number | null;
StackResourceDriftStatus: StackResourceDriftStatus;
}

§Properties

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

When CloudFormation last checked if the resource had drifted from its expected configuration.

§
StackResourceDriftStatus: StackResourceDriftStatus
[src]

Status of the resource's actual configuration compared to its expected configuration

  • DELETED: The resource differs from its expected configuration in that it has been deleted.
  • MODIFIED: The resource differs from its expected configuration.
  • NOT_CHECKED: CloudFormation has not checked if the resource differs from its expected configuration. Any resources that do not currently support drift detection have a status of NOT_CHECKED. For more information, see Resources that Support Drift Detection.
  • IN_SYNC: The resources's actual configuration matches its expected configuration.