<!-- generated file, do not edit directly -->

# @aws-sdk/client-appconfigdata

## Description

AWS SDK for JavaScript AppConfigData Client for Node.js, Browser and React Native.

<p>AppConfig Data provides the data plane APIs your application uses to retrieve
configuration data. Here's how it works:</p>
<p>Your application retrieves configuration data by first establishing a configuration
session using the AppConfig Data <a>StartConfigurationSession</a> API action.
Your session's client then makes periodic calls to <a>GetLatestConfiguration</a>
to check for and retrieve the latest data available.</p>
<p>When calling <code>StartConfigurationSession</code>, your code sends the following
information:</p>
<ul>
<li>
<p>Identifiers (ID or name) of an AppConfig application, environment, and
configuration profile that the session tracks.</p>
</li>
<li>
<p>(Optional) The minimum amount of time the session's client must wait between calls
to <code>GetLatestConfiguration</code>.</p>
</li>
</ul>
<p>In response, AppConfig provides an <code>InitialConfigurationToken</code> to be given to
the session's client and used the first time it calls <code>GetLatestConfiguration</code>
for that session.</p>
<important>
<p>This token should only be used once in your first call to
<code>GetLatestConfiguration</code>. You <i>must</i> use the new token
in the <code>GetLatestConfiguration</code> response
(<code>NextPollConfigurationToken</code>) in each subsequent call to
<code>GetLatestConfiguration</code>.</p>
</important>
<p>When calling <code>GetLatestConfiguration</code>, your client code sends the most recent
<code>ConfigurationToken</code> value it has and receives in response:</p>
<ul>
<li>
<p>
<code>NextPollConfigurationToken</code>: the <code>ConfigurationToken</code> value
to use on the next call to <code>GetLatestConfiguration</code>.</p>
</li>
<li>
<p>
<code>NextPollIntervalInSeconds</code>: the duration the client should wait before
making its next call to <code>GetLatestConfiguration</code>. This duration may vary
over the course of the session, so it should be used instead of the value sent on the
<code>StartConfigurationSession</code> call.</p>
</li>
<li>
<p>The configuration: the latest data intended for the session. This may be empty if
the client already has the latest version of the configuration.</p>
</li>
</ul>
<important>
<p>The <code>InitialConfigurationToken</code> and
<code>NextPollConfigurationToken</code> should only be used once. To support long poll
use cases, the tokens are valid for up to 24 hours. If a
<code>GetLatestConfiguration</code> call uses an expired token, the system returns
<code>BadRequestException</code>.</p>
</important>
<p>For more information and to view example CLI commands that show how to retrieve a
configuration using the AppConfig Data <code>StartConfigurationSession</code> and
<code>GetLatestConfiguration</code> API actions, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration">Retrieving the
configuration</a> in the <i>AppConfig User Guide</i>.</p>

## Installing

To install this package, use the CLI of your favorite package manager:

- `npm install @aws-sdk/client-appconfigdata`
- `yarn add @aws-sdk/client-appconfigdata`
- `pnpm add @aws-sdk/client-appconfigdata`

## Getting Started

### Import

The AWS SDK is modulized by clients and commands.
To send a request, you only need to import the `AppConfigDataClient` and
the commands you need, for example `GetLatestConfigurationCommand`:

```js
// ES5 example
const { AppConfigDataClient, GetLatestConfigurationCommand } = require("@aws-sdk/client-appconfigdata");
```

```ts
// ES6+ example
import { AppConfigDataClient, GetLatestConfigurationCommand } from "@aws-sdk/client-appconfigdata";
```

### Usage

To send a request:

- Instantiate a client with configuration (e.g. credentials, region).
  - See [docs/CLIENTS](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/CLIENTS.md) for configuration details.
  - See [@aws-sdk/config](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/config/README.md) for additional options.
- Instantiate a command with input parameters.
- Call the `send` operation on the client, providing the command object as input.

```js
const client = new AppConfigDataClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new GetLatestConfigurationCommand(params);
```

#### Async/await

We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
operator to wait for the promise returned by send operation as follows:

```js
// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}
```

#### Promises

You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining).

```js
client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });
```

#### Aggregated client

The aggregated client class is exported from the same package, but without the "Client" suffix.

`AppConfigData` extends `AppConfigDataClient` and additionally supports all operations, waiters, and paginators as methods.
This style may be familiar to you from the AWS SDK for JavaScript v2.

If you are bundling the AWS SDK, we recommend using only the bare-bones client (`AppConfigDataClient`).
More details are in the blog post on
[modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/).

```ts
import { AppConfigData } from "@aws-sdk/client-appconfigdata";

const client = new AppConfigData({ region: "REGION" });

// async/await.
try {
  const data = await client.getLatestConfiguration(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .getLatestConfiguration(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks (not recommended).
client.getLatestConfiguration(params, (err, data) => {
  // process err and data.
});
```

### Troubleshooting

When the service returns an exception, the error will include the exception information,
as well as response metadata (e.g. request id).

```js
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}
```

See also [docs/ERROR_HANDLING](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/ERROR_HANDLING.md).

## Getting Help

Please use these community resources for getting help.
We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

- Visit the [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
  or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
- Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
  on AWS Developer Blog.
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`.
- Join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3).
- If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose).

To test your universal JavaScript code in Node.js, browser and react-native environments,
visit our [code samples repo](https://github.com/aws-samples/aws-sdk-js-tests).

## Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/client-appconfigdata` package is updated.
To contribute to client you can check our [generate clients scripts](https://github.com/aws/aws-sdk-js-v3/tree/main/scripts/generate-clients).

## License

This SDK is distributed under the
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
see LICENSE for more information.

## Client Commands (Operations List)

<details>
<summary>
GetLatestConfiguration
</summary>

[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfigdata/command/GetLatestConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfigdata/Interface/GetLatestConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfigdata/Interface/GetLatestConfigurationCommandOutput/)
</details>
<details>
<summary>
StartConfigurationSession
</summary>

[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfigdata/command/StartConfigurationSessionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfigdata/Interface/StartConfigurationSessionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfigdata/Interface/StartConfigurationSessionCommandOutput/)
</details>
