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

ChangeSetHook

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

Specifies the resource, the hook, and the hook version to be invoked.

interface ChangeSetHook {
FailureMode?: HookFailureMode | null;
InvocationPoint?: HookInvocationPoint | null;
TargetDetails?: ChangeSetHookTargetDetails | null;
TypeConfigurationVersionId?: string | null;
TypeName?: string | null;
TypeVersionId?: string | null;
}

§Properties

§
FailureMode?: HookFailureMode | null
[src]

Specify the hook failure mode for non-compliant resources in the followings ways.

  • FAIL Stops provisioning resources.
  • WARN Allows provisioning to continue with a warning message.
§
InvocationPoint?: HookInvocationPoint | null
[src]

Specifies the points in provisioning logic where a hook is invoked.

§
TargetDetails?: ChangeSetHookTargetDetails | null
[src]

Specifies details about the target that the hook will run against.

§
TypeConfigurationVersionId?: string | null
[src]

The version ID of the type configuration.

§
TypeName?: string | null
[src]

The unique name for your hook. Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook.

Note: The following organization namespaces are reserved and can't be used in your hook type names: - Alexa - AMZN - Amazon - ASK - AWS - Custom - Dev

§
TypeVersionId?: string | null
[src]

The version ID of the type specified.