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

AppConfigData

import { AppConfigData } from "https://aws-api.deno.dev/v0.4/services/appconfigdata.ts?docs=full";
class AppConfigData {
constructor(apiFactory: client.ApiFactory);
async getLatestConfiguration(params: GetLatestConfigurationRequest, opts?: client.RequestOptions): Promise<GetLatestConfigurationResponse>;
async startConfigurationSession(params: StartConfigurationSessionRequest, opts?: client.RequestOptions): Promise<StartConfigurationSessionResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new AppConfigData(apiFactory: client.ApiFactory)
[src]

§Methods

§

Retrieves the latest deployed configuration. This API may return empty configuration data if the client already has the latest version. For more information about this API action and to view example CLI commands that show how to use it with the "StartConfigurationSession" API action, see Retrieving the configuration in the AppConfig User Guide.

! IMPORTANT: ! Note the following important information. ! - Each configuration token is only valid for one call to GetLatestConfiguration. ! The GetLatestConfiguration response includes a NextPollConfigurationToken that should always replace the token used for the just-completed call in preparation for the next one. ! - GetLatestConfiguration is a priced call. ! For more information, see Pricing.

§

Starts a configuration session used to retrieve a deployed configuration. For more information about this API action and to view example CLI commands that show how to use it with the "GetLatestConfiguration" API action, see Retrieving the configuration in the AppConfig User Guide.

§Static Properties