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

StartDeploymentRequest

import type { StartDeploymentRequest } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";
interface StartDeploymentRequest {
ApplicationId: string;
ConfigurationProfileId: string;
ConfigurationVersion: string;
DeploymentStrategyId: string;
Description?: string | null;
EnvironmentId: string;
KmsKeyIdentifier?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ApplicationId: string
[src]

The application ID.

§
ConfigurationProfileId: string
[src]

The configuration profile ID.

§
ConfigurationVersion: string
[src]

The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify either the version number or version label.

§
DeploymentStrategyId: string
[src]

The deployment strategy ID.

§
Description?: string | null
[src]

A description of the deployment.

§
EnvironmentId: string
[src]

The environment ID.

§
KmsKeyIdentifier?: string | null
[src]

The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the configuration data using a customer managed key.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.