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

SetStackPolicyInput

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

The input for the "SetStackPolicy" action.

interface SetStackPolicyInput {
StackName: string;
StackPolicyBody?: string | null;
StackPolicyURL?: string | null;
}

§Properties

§
StackName: string
[src]

The name or unique stack ID that you want to associate a policy with.

§
StackPolicyBody?: string | null
[src]

Structure containing the stack policy body. For more information, go to Prevent updates to stack resources in the CloudFormation User Guide. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

§
StackPolicyURL?: string | null
[src]

Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an Amazon S3 bucket in the same Amazon Web Services Region as the stack. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.