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

ResourceChange

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

Information about a resource change that will occur when a plan is executed.

interface ResourceChange {
Action?: ChangeAction | null;
Details?: ResourceChangeDetail[] | null;
LogicalResourceId?: string | null;
PhysicalResourceId?: string | null;
Replacement?: Replacement | null;
ResourceType?: string | null;
Scope?: ResourceAttribute[] | null;
}

§Properties

§
Action?: ChangeAction | null
[src]

The change action.

§
Details?: ResourceChangeDetail[] | null
[src]

Information about the resource changes.

§
LogicalResourceId?: string | null
[src]

The ID of the resource, as defined in the CloudFormation template.

§
PhysicalResourceId?: string | null
[src]

The ID of the resource, if it was already created.

§
Replacement?: Replacement | null
[src]

If the change type is Modify, indicates whether the existing resource is deleted and replaced with a new one.

§
ResourceType?: string | null
[src]

The type of resource.

§
Scope?: ResourceAttribute[] | null
[src]

The change scope.