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

PropertyDifference

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

Information about a resource property whose actual value differs from its expected value, as defined in the stack template and any values specified as template parameters. These will be present only for resources whose StackResourceDriftStatus is MODIFIED. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

interface PropertyDifference {
ActualValue: string;
DifferenceType: DifferenceType;
ExpectedValue: string;
PropertyPath: string;
}

§Properties

§
ActualValue: string
[src]

The actual property value of the resource property.

§
DifferenceType: DifferenceType
[src]

The type of property difference.

  • ADD: A value has been added to a resource property that is an array or list data type.
  • REMOVE: The property has been removed from the current resource configuration.
  • NOT_EQUAL: The current property value differs from its expected value (as defined in the stack template and any values specified as template parameters).
§
ExpectedValue: string
[src]

The expected property value of the resource property, as defined in the stack template and any values specified as template parameters.

§
PropertyPath: string
[src]

The fully-qualified path to the resource property.