@aws-sdk/client-s3-control 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,
@@ -33,21 +34,22 @@ const getRuntimeConfig = (config) => {
33
34
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
34
35
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
35
36
  (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
36
- maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
37
+ maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
37
38
  md5: config?.md5 ?? hash_node_1.Hash.bind(null, "md5"),
38
- region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
39
+ region: config?.region ??
40
+ (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
39
41
  requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
40
42
  retryMode: config?.retryMode ??
41
43
  (0, node_config_provider_1.loadConfig)({
42
44
  ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
43
45
  default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE,
44
- }),
46
+ }, config),
45
47
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
46
48
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
47
49
  streamHasher: config?.streamHasher ?? hash_stream_node_1.fileStreamHasher,
48
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
49
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
50
- userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
50
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
51
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
52
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
51
53
  };
52
54
  };
53
55
  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,
@@ -29,20 +30,21 @@ export const getRuntimeConfig = (config) => {
29
30
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
30
31
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
31
32
  createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
32
- maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
33
+ maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
33
34
  md5: config?.md5 ?? Hash.bind(null, "md5"),
34
- region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
35
+ region: config?.region ??
36
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
35
37
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
36
38
  retryMode: config?.retryMode ??
37
39
  loadNodeConfig({
38
40
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
39
41
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
40
- }),
42
+ }, config),
41
43
  sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
42
44
  streamCollector: config?.streamCollector ?? streamCollector,
43
45
  streamHasher: config?.streamHasher ?? streamHasher,
44
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
45
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
46
- userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
46
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
47
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
48
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
47
49
  };
48
50
  };
@@ -190,6 +190,24 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
190
190
  * The AWS region to which this client will send requests
191
191
  */
192
192
  region?: string | __Provider<string>;
193
+ /**
194
+ * Setting a client profile is similar to setting a value for the
195
+ * AWS_PROFILE environment variable. Setting a profile on a client
196
+ * in code only affects the single client instance, unlike AWS_PROFILE.
197
+ *
198
+ * When set, and only for environments where an AWS configuration
199
+ * file exists, fields configurable by this file will be retrieved
200
+ * from the specified profile within that file.
201
+ * Conflicting code configuration and environment variables will
202
+ * still have higher priority.
203
+ *
204
+ * For client credential resolution that involves checking the AWS
205
+ * configuration file, the client's profile (this value) will be
206
+ * used unless a different profile is set in the credential
207
+ * provider options.
208
+ *
209
+ */
210
+ profile?: string;
193
211
  /**
194
212
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
195
213
  * @internal
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
29
29
  utf8Encoder: (input: string | Uint8Array) => string;
30
30
  disableHostPrefix: boolean;
31
31
  serviceId: string;
32
+ profile?: string | undefined;
32
33
  logger: import("@smithy/types").Logger;
33
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -30,6 +30,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
30
30
  utf8Encoder: (input: string | Uint8Array) => string;
31
31
  disableHostPrefix: boolean;
32
32
  serviceId: string;
33
+ profile?: string | undefined;
33
34
  logger: import("@smithy/types").Logger;
34
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
36
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
21
21
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  region: string | import("@smithy/types").Provider<any>;
24
+ profile?: string | undefined;
24
25
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
26
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
26
27
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -635,6 +635,7 @@ export interface ClientDefaults
635
635
  useDualstackEndpoint?: boolean | __Provider<boolean>;
636
636
  useFipsEndpoint?: boolean | __Provider<boolean>;
637
637
  region?: string | __Provider<string>;
638
+ profile?: string;
638
639
  defaultUserAgentProvider?: Provider<__UserAgent>;
639
640
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
640
641
  maxAttempts?: number | __Provider<number>;
@@ -37,6 +37,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
37
37
  utf8Encoder: (input: string | Uint8Array) => string;
38
38
  disableHostPrefix: boolean;
39
39
  serviceId: string;
40
+ profile?: string | undefined;
40
41
  logger: import("@smithy/types").Logger;
41
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
43
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
42
42
  utf8Encoder: (input: string | Uint8Array) => string;
43
43
  disableHostPrefix: boolean;
44
44
  serviceId: string;
45
+ profile?: string | undefined;
45
46
  logger: import("@smithy/types").Logger;
46
47
  extensions: import("./runtimeExtensions").RuntimeExtension[];
47
48
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
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-s3-control",
3
3
  "description": "AWS SDK for JavaScript S3 Control 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-s3-control",
@@ -22,20 +22,20 @@
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/client-sts": "3.712.0",
27
- "@aws-sdk/core": "3.709.0",
28
- "@aws-sdk/credential-provider-node": "3.712.0",
29
- "@aws-sdk/middleware-host-header": "3.709.0",
30
- "@aws-sdk/middleware-logger": "3.709.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.709.0",
32
- "@aws-sdk/middleware-sdk-s3-control": "3.709.0",
33
- "@aws-sdk/middleware-user-agent": "3.709.0",
34
- "@aws-sdk/region-config-resolver": "3.709.0",
35
- "@aws-sdk/types": "3.709.0",
36
- "@aws-sdk/util-endpoints": "3.709.0",
37
- "@aws-sdk/util-user-agent-browser": "3.709.0",
38
- "@aws-sdk/util-user-agent-node": "3.712.0",
25
+ "@aws-sdk/client-sso-oidc": "3.714.0",
26
+ "@aws-sdk/client-sts": "3.714.0",
27
+ "@aws-sdk/core": "3.714.0",
28
+ "@aws-sdk/credential-provider-node": "3.714.0",
29
+ "@aws-sdk/middleware-host-header": "3.714.0",
30
+ "@aws-sdk/middleware-logger": "3.714.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.714.0",
32
+ "@aws-sdk/middleware-sdk-s3-control": "3.714.0",
33
+ "@aws-sdk/middleware-user-agent": "3.714.0",
34
+ "@aws-sdk/region-config-resolver": "3.714.0",
35
+ "@aws-sdk/types": "3.714.0",
36
+ "@aws-sdk/util-endpoints": "3.714.0",
37
+ "@aws-sdk/util-user-agent-browser": "3.714.0",
38
+ "@aws-sdk/util-user-agent-node": "3.714.0",
39
39
  "@aws-sdk/xml-builder": "3.709.0",
40
40
  "@smithy/config-resolver": "^3.0.13",
41
41
  "@smithy/core": "^2.5.5",