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

Configuration

import type { Configuration } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";
interface Configuration {
ConfigurationVersion?: string | null;
Content?: Uint8Array | null;
ContentType?: string | null;
}

§Properties

§
ConfigurationVersion?: string | null
[src]

The configuration version.

§
Content?: Uint8Array | null
[src]

The content of the configuration or the configuration data.

! IMPORTANT: ! The Content attribute only contains data if the system finds new or updated configuration data. ! If there is no new or updated data and ClientConfigurationVersion matches the version of the current configuration, AppConfig returns a 204 No Content HTTP response code and the Content value will be empty.

§
ContentType?: string | null
[src]

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