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

StartConfigurationSessionResponse

import type { StartConfigurationSessionResponse } from "https://aws-api.deno.dev/v0.4/services/appconfigdata.ts?docs=full";
interface StartConfigurationSessionResponse {
InitialConfigurationToken?: string | null;
}

§Properties

§
InitialConfigurationToken?: string | null
[src]

Token encapsulating state about the configuration session. Provide this token to the GetLatestConfiguration API to retrieve configuration data.

! IMPORTANT: ! This token should only be used once in your first call to GetLatestConfiguration. ! You must use the new token in the GetLatestConfiguration response (NextPollConfigurationToken) in each subsequent call to GetLatestConfiguration. ! The InitialConfigurationToken and NextPollConfigurationToken should only be used once. ! To support long poll use cases, the tokens are valid for up to 24 hours. ! If a GetLatestConfiguration call uses an expired token, the system returns BadRequestException.