@aws-sdk/client-sts 3.712.0 → 3.714.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ const getRuntimeConfig = (config) => {
24
24
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
25
25
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
26
26
  (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
27
+ const profileConfig = { profile: config?.profile };
27
28
  return {
28
29
  ...clientSharedValues,
29
30
  ...config,
@@ -46,19 +47,20 @@ const getRuntimeConfig = (config) => {
46
47
  signer: new core_2.NoAuthSigner(),
47
48
  },
48
49
  ],
49
- maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
50
- region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
50
+ maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
51
+ region: config?.region ??
52
+ (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
51
53
  requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
52
54
  retryMode: config?.retryMode ??
53
55
  (0, node_config_provider_1.loadConfig)({
54
56
  ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
55
57
  default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE,
56
- }),
58
+ }, config),
57
59
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
58
60
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
59
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
60
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
61
- userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
61
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
62
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
63
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
62
64
  };
63
65
  };
64
66
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -20,6 +20,7 @@ export const getRuntimeConfig = (config) => {
20
20
  const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
21
21
  const clientSharedValues = getSharedRuntimeConfig(config);
22
22
  awsCheckVersion(process.version);
23
+ const profileConfig = { profile: config?.profile };
23
24
  return {
24
25
  ...clientSharedValues,
25
26
  ...config,
@@ -42,18 +43,19 @@ export const getRuntimeConfig = (config) => {
42
43
  signer: new NoAuthSigner(),
43
44
  },
44
45
  ],
45
- maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
46
- region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
46
+ maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
47
+ region: config?.region ??
48
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
47
49
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
48
50
  retryMode: config?.retryMode ??
49
51
  loadNodeConfig({
50
52
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
51
53
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
52
- }),
54
+ }, config),
53
55
  sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
54
56
  streamCollector: config?.streamCollector ?? streamCollector,
55
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
56
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
57
- userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
57
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
58
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
59
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
58
60
  };
59
61
  };
@@ -103,6 +103,24 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
103
103
  * The AWS region to which this client will send requests
104
104
  */
105
105
  region?: string | __Provider<string>;
106
+ /**
107
+ * Setting a client profile is similar to setting a value for the
108
+ * AWS_PROFILE environment variable. Setting a profile on a client
109
+ * in code only affects the single client instance, unlike AWS_PROFILE.
110
+ *
111
+ * When set, and only for environments where an AWS configuration
112
+ * file exists, fields configurable by this file will be retrieved
113
+ * from the specified profile within that file.
114
+ * Conflicting code configuration and environment variables will
115
+ * still have higher priority.
116
+ *
117
+ * For client credential resolution that involves checking the AWS
118
+ * configuration file, the client's profile (this value) will be
119
+ * used unless a different profile is set in the credential
120
+ * provider options.
121
+ *
122
+ */
123
+ profile?: string;
106
124
  /**
107
125
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
108
126
  * @internal
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
26
26
  utf8Encoder: (input: string | Uint8Array) => string;
27
27
  disableHostPrefix: boolean;
28
28
  serviceId: string;
29
+ profile?: string | undefined;
29
30
  logger: import("@smithy/types").Logger;
30
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -34,6 +34,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
34
34
  utf8Encoder: (input: string | Uint8Array) => string;
35
35
  disableHostPrefix: boolean;
36
36
  serviceId: string;
37
+ profile?: string | undefined;
37
38
  logger: import("@smithy/types").Logger;
38
39
  extensions: import("./runtimeExtensions").RuntimeExtension[];
39
40
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string | undefined;
23
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
24
25
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -125,6 +125,7 @@ export interface ClientDefaults
125
125
  useDualstackEndpoint?: boolean | __Provider<boolean>;
126
126
  useFipsEndpoint?: boolean | __Provider<boolean>;
127
127
  region?: string | __Provider<string>;
128
+ profile?: string;
128
129
  defaultUserAgentProvider?: Provider<__UserAgent>;
129
130
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
130
131
  maxAttempts?: number | __Provider<number>;
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
33
33
  utf8Encoder: (input: string | Uint8Array) => string;
34
34
  disableHostPrefix: boolean;
35
35
  serviceId: string;
36
+ profile?: string | undefined;
36
37
  logger: import("@smithy/types").Logger;
37
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
38
39
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -53,6 +53,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
53
53
  utf8Encoder: (input: string | Uint8Array) => string;
54
54
  disableHostPrefix: boolean;
55
55
  serviceId: string;
56
+ profile?: string | undefined;
56
57
  logger: import("@smithy/types").Logger;
57
58
  extensions: import("./runtimeExtensions").RuntimeExtension[];
58
59
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
+ profile?: string | undefined;
25
26
  defaultUserAgentProvider: (
26
27
  config?:
27
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sts",
3
3
  "description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
4
- "version": "3.712.0",
4
+ "version": "3.714.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sts",
@@ -22,18 +22,18 @@
22
22
  "dependencies": {
23
23
  "@aws-crypto/sha256-browser": "5.2.0",
24
24
  "@aws-crypto/sha256-js": "5.2.0",
25
- "@aws-sdk/client-sso-oidc": "3.712.0",
26
- "@aws-sdk/core": "3.709.0",
27
- "@aws-sdk/credential-provider-node": "3.712.0",
28
- "@aws-sdk/middleware-host-header": "3.709.0",
29
- "@aws-sdk/middleware-logger": "3.709.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.709.0",
31
- "@aws-sdk/middleware-user-agent": "3.709.0",
32
- "@aws-sdk/region-config-resolver": "3.709.0",
33
- "@aws-sdk/types": "3.709.0",
34
- "@aws-sdk/util-endpoints": "3.709.0",
35
- "@aws-sdk/util-user-agent-browser": "3.709.0",
36
- "@aws-sdk/util-user-agent-node": "3.712.0",
25
+ "@aws-sdk/client-sso-oidc": "3.714.0",
26
+ "@aws-sdk/core": "3.714.0",
27
+ "@aws-sdk/credential-provider-node": "3.714.0",
28
+ "@aws-sdk/middleware-host-header": "3.714.0",
29
+ "@aws-sdk/middleware-logger": "3.714.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.714.0",
31
+ "@aws-sdk/middleware-user-agent": "3.714.0",
32
+ "@aws-sdk/region-config-resolver": "3.714.0",
33
+ "@aws-sdk/types": "3.714.0",
34
+ "@aws-sdk/util-endpoints": "3.714.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.714.0",
36
+ "@aws-sdk/util-user-agent-node": "3.714.0",
37
37
  "@smithy/config-resolver": "^3.0.13",
38
38
  "@smithy/core": "^2.5.5",
39
39
  "@smithy/fetch-http-handler": "^4.1.2",