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

GetLatestConfigurationResponse

import type { GetLatestConfigurationResponse } from "https://aws-api.deno.dev/v0.4/services/appconfigdata.ts?docs=full";
interface GetLatestConfigurationResponse {
Configuration?: Uint8Array | null;
ContentType?: string | null;
NextPollConfigurationToken?: string | null;
NextPollIntervalInSeconds?: number | null;
VersionLabel?: string | null;
}

§Properties

§
Configuration?: Uint8Array | null
[src]

The data of the configuration. This may be empty if the client already has the latest version of configuration.

§
ContentType?: string | null
[src]

A standard MIME type describing the format of the configuration content.

§
NextPollConfigurationToken?: string | null
[src]

The latest token describing the current state of the configuration session. This must be provided to the next call to GetLatestConfiguration.

! IMPORTANT: ! This token should only be used once. ! To support long poll use cases, the token is valid for up to 24 hours. ! If a GetLatestConfiguration call uses an expired token, the system returns BadRequestException.

§
NextPollIntervalInSeconds?: number | null
[src]

The amount of time the client should wait before polling for configuration updates again. Use RequiredMinimumPollIntervalInSeconds to set the desired poll interval.

§
VersionLabel?: string | null
[src]

The user-defined label for the AppConfig hosted configuration version. This attribute doesn't apply if the configuration is not from an AppConfig hosted configuration version. If the client already has the latest version of the configuration data, this value is empty.