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

CreateHostedConfigurationVersionRequest

import type { CreateHostedConfigurationVersionRequest } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";
interface CreateHostedConfigurationVersionRequest {
ApplicationId: string;
ConfigurationProfileId: string;
Content: Uint8Array | string;
ContentType: string;
Description?: string | null;
LatestVersionNumber?: number | null;
VersionLabel?: string | null;
}

§Properties

§
ApplicationId: string
[src]

The application ID.

§
ConfigurationProfileId: string
[src]

The configuration profile ID.

§
Content: Uint8Array | string
[src]

The content of the configuration or the configuration data.

§
ContentType: string
[src]

A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

§
Description?: string | null
[src]

A description of the configuration.

§
LatestVersionNumber?: number | null
[src]

An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.

§
VersionLabel?: string | null
[src]

An optional, user-defined label for the AppConfig hosted configuration version. This value must contain at least one non-numeric character. For example, "v2.2.0".