UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

10 lines (9 loc) 583 B
import { booleanSelector, SelectorType } from "@aws-sdk/util-config-provider"; export const ENV_USE_DUALSTACK_ENDPOINT = "AWS_USE_DUALSTACK_ENDPOINT"; export const CONFIG_USE_DUALSTACK_ENDPOINT = "use_dualstack_endpoint"; export const DEFAULT_USE_DUALSTACK_ENDPOINT = false; export const NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = { environmentVariableSelector: (env) => booleanSelector(env, ENV_USE_DUALSTACK_ENDPOINT, SelectorType.ENV), configFileSelector: (profile) => booleanSelector(profile, CONFIG_USE_DUALSTACK_ENDPOINT, SelectorType.CONFIG), default: false, };