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

SetTypeConfigurationInput

import type { SetTypeConfigurationInput } from "https://aws-api.deno.dev/v0.4/services/cloudformation.ts?docs=full";
interface SetTypeConfigurationInput {
Configuration: string;
ConfigurationAlias?: string | null;
Type?: ThirdPartyType | null;
TypeArn?: string | null;
TypeName?: string | null;
}

§Properties

§
Configuration: string
[src]

The configuration data for the extension, in this account and region.

The configuration data must be formatted as JSON, and validate against the schema returned in the ConfigurationSchema response element of API_DescribeType. For more information, see Defining account-level configuration data for an extension in the CloudFormation CLI User Guide.

§
ConfigurationAlias?: string | null
[src]

An alias by which to refer to this extension configuration data.

Conditional: Specifying a configuration alias is required when setting a configuration for a resource type extension.

§
Type?: ThirdPartyType | null
[src]

The type of extension.

Conditional: You must specify ConfigurationArn, or Type and TypeName.

§
TypeArn?: string | null
[src]

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

Do not include the extension versions suffix at the end of the ARN. You can set the configuration for an extension, but not for a specific extension version.

§
TypeName?: string | null
[src]

The name of the extension.

Conditional: You must specify ConfigurationArn, or Type and TypeName.