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

DescribeStackResourceDriftsInput

import type { DescribeStackResourceDriftsInput } from "https://aws-api.deno.dev/v0.4/services/cloudformation.ts?docs=full";
interface DescribeStackResourceDriftsInput {
MaxResults?: number | null;
NextToken?: string | null;
StackName: string;
StackResourceDriftStatusFilters?: StackResourceDriftStatus[] | null;
}

§Properties

§
MaxResults?: number | null
[src]

The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.

§
NextToken?: string | null
[src]

A string that identifies the next page of stack resource drift results.

§
StackName: string
[src]

The name of the stack for which you want drift information.

§
StackResourceDriftStatusFilters?: StackResourceDriftStatus[] | null
[src]

The resource drift status values to use as filters for the resource drift results returned.

  • DELETED: The resource differs from its expected template configuration in that the resource has been deleted.
  • MODIFIED: One or more resource properties differ from their expected template values.
  • IN_SYNC: The resource's actual configuration matches its expected template configuration.
  • NOT_CHECKED: CloudFormation doesn't currently return this value.