@aws-sdk/client-account 3.1087.0 → 3.1088.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.
Files changed (35) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Account.d.ts +47 -50
  3. package/dist-types/ts3.4/AccountClient.d.ts +16 -29
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AcceptPrimaryEmailUpdateCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/DeleteAlternateContactCommand.d.ts +3 -4
  9. package/dist-types/ts3.4/commands/DisableRegionCommand.d.ts +2 -2
  10. package/dist-types/ts3.4/commands/EnableRegionCommand.d.ts +2 -2
  11. package/dist-types/ts3.4/commands/GetAccountInformationCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/GetAlternateContactCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/GetContactInformationCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/GetGovCloudAccountInformationCommand.d.ts +3 -5
  15. package/dist-types/ts3.4/commands/GetPrimaryEmailCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/GetRegionOptStatusCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/ListRegionsCommand.d.ts +2 -4
  18. package/dist-types/ts3.4/commands/PutAccountNameCommand.d.ts +2 -2
  19. package/dist-types/ts3.4/commands/PutAlternateContactCommand.d.ts +3 -4
  20. package/dist-types/ts3.4/commands/PutContactInformationCommand.d.ts +3 -4
  21. package/dist-types/ts3.4/commands/StartPrimaryEmailUpdateCommand.d.ts +4 -6
  22. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  23. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  24. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  25. package/dist-types/ts3.4/models/enums.d.ts +3 -6
  26. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  28. package/dist-types/ts3.4/pagination/ListRegionsPaginator.d.ts +1 -4
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  33. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  35. package/package.json +38 -38
@@ -4,14 +4,12 @@ import {
4
4
  GetGovCloudAccountInformationResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface GetGovCloudAccountInformationCommandInput
8
- extends GetGovCloudAccountInformationRequest {}
7
+ export interface GetGovCloudAccountInformationCommandInput extends GetGovCloudAccountInformationRequest {}
9
8
  export interface GetGovCloudAccountInformationCommandOutput
10
- extends GetGovCloudAccountInformationResponse,
11
- __MetadataBearer {}
9
+ extends GetGovCloudAccountInformationResponse, __MetadataBearer {}
12
10
  declare const GetGovCloudAccountInformationCommand_base: {
13
11
  new (
14
- input: GetGovCloudAccountInformationCommandInput
12
+ input: GetGovCloudAccountInformationCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  GetGovCloudAccountInformationCommandInput,
17
15
  GetGovCloudAccountInformationCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetPrimaryEmailRequest,
4
- GetPrimaryEmailResponse,
5
- } from "../models/models_0";
2
+ import { GetPrimaryEmailRequest, GetPrimaryEmailResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetPrimaryEmailCommandInput extends GetPrimaryEmailRequest {}
8
- export interface GetPrimaryEmailCommandOutput
9
- extends GetPrimaryEmailResponse,
10
- __MetadataBearer {}
5
+ export interface GetPrimaryEmailCommandOutput extends GetPrimaryEmailResponse, __MetadataBearer {}
11
6
  declare const GetPrimaryEmailCommand_base: {
12
7
  new (
13
- input: GetPrimaryEmailCommandInput
8
+ input: GetPrimaryEmailCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetPrimaryEmailCommandInput,
16
11
  GetPrimaryEmailCommandOutput,
@@ -19,7 +14,7 @@ declare const GetPrimaryEmailCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetPrimaryEmailCommandInput
17
+ input: GetPrimaryEmailCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetPrimaryEmailCommandInput,
25
20
  GetPrimaryEmailCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetRegionOptStatusRequest,
4
- GetRegionOptStatusResponse,
5
- } from "../models/models_0";
2
+ import { GetRegionOptStatusRequest, GetRegionOptStatusResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetRegionOptStatusCommandInput
8
- extends GetRegionOptStatusRequest {}
4
+ export interface GetRegionOptStatusCommandInput extends GetRegionOptStatusRequest {}
9
5
  export interface GetRegionOptStatusCommandOutput
10
- extends GetRegionOptStatusResponse,
11
- __MetadataBearer {}
6
+ extends GetRegionOptStatusResponse, __MetadataBearer {}
12
7
  declare const GetRegionOptStatusCommand_base: {
13
8
  new (
14
- input: GetRegionOptStatusCommandInput
9
+ input: GetRegionOptStatusCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetRegionOptStatusCommandInput,
17
12
  GetRegionOptStatusCommandOutput,
@@ -20,7 +15,7 @@ declare const GetRegionOptStatusCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: GetRegionOptStatusCommandInput
18
+ input: GetRegionOptStatusCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  GetRegionOptStatusCommandInput,
26
21
  GetRegionOptStatusCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListRegionsRequest, ListRegionsResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListRegionsCommandInput extends ListRegionsRequest {}
5
- export interface ListRegionsCommandOutput
6
- extends ListRegionsResponse,
7
- __MetadataBearer {}
5
+ export interface ListRegionsCommandOutput extends ListRegionsResponse, __MetadataBearer {}
8
6
  declare const ListRegionsCommand_base: {
9
7
  new (
10
- input: ListRegionsCommandInput
8
+ input: ListRegionsCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListRegionsCommandInput,
13
11
  ListRegionsCommandOutput,
@@ -5,7 +5,7 @@ export interface PutAccountNameCommandInput extends PutAccountNameRequest {}
5
5
  export interface PutAccountNameCommandOutput extends __MetadataBearer {}
6
6
  declare const PutAccountNameCommand_base: {
7
7
  new (
8
- input: PutAccountNameCommandInput
8
+ input: PutAccountNameCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  PutAccountNameCommandInput,
11
11
  PutAccountNameCommandOutput,
@@ -14,7 +14,7 @@ declare const PutAccountNameCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: PutAccountNameCommandInput
17
+ input: PutAccountNameCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  PutAccountNameCommandInput,
20
20
  PutAccountNameCommandOutput,
@@ -1,12 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { PutAlternateContactRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface PutAlternateContactCommandInput
5
- extends PutAlternateContactRequest {}
4
+ export interface PutAlternateContactCommandInput extends PutAlternateContactRequest {}
6
5
  export interface PutAlternateContactCommandOutput extends __MetadataBearer {}
7
6
  declare const PutAlternateContactCommand_base: {
8
7
  new (
9
- input: PutAlternateContactCommandInput
8
+ input: PutAlternateContactCommandInput,
10
9
  ): import("@smithy/core/client").CommandImpl<
11
10
  PutAlternateContactCommandInput,
12
11
  PutAlternateContactCommandOutput,
@@ -15,7 +14,7 @@ declare const PutAlternateContactCommand_base: {
15
14
  import("..").ServiceOutputTypes
16
15
  >;
17
16
  new (
18
- input: PutAlternateContactCommandInput
17
+ input: PutAlternateContactCommandInput,
19
18
  ): import("@smithy/core/client").CommandImpl<
20
19
  PutAlternateContactCommandInput,
21
20
  PutAlternateContactCommandOutput,
@@ -1,12 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { PutContactInformationRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface PutContactInformationCommandInput
5
- extends PutContactInformationRequest {}
4
+ export interface PutContactInformationCommandInput extends PutContactInformationRequest {}
6
5
  export interface PutContactInformationCommandOutput extends __MetadataBearer {}
7
6
  declare const PutContactInformationCommand_base: {
8
7
  new (
9
- input: PutContactInformationCommandInput
8
+ input: PutContactInformationCommandInput,
10
9
  ): import("@smithy/core/client").CommandImpl<
11
10
  PutContactInformationCommandInput,
12
11
  PutContactInformationCommandOutput,
@@ -15,7 +14,7 @@ declare const PutContactInformationCommand_base: {
15
14
  import("..").ServiceOutputTypes
16
15
  >;
17
16
  new (
18
- input: PutContactInformationCommandInput
17
+ input: PutContactInformationCommandInput,
19
18
  ): import("@smithy/core/client").CommandImpl<
20
19
  PutContactInformationCommandInput,
21
20
  PutContactInformationCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  StartPrimaryEmailUpdateResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface StartPrimaryEmailUpdateCommandInput
8
- extends StartPrimaryEmailUpdateRequest {}
7
+ export interface StartPrimaryEmailUpdateCommandInput extends StartPrimaryEmailUpdateRequest {}
9
8
  export interface StartPrimaryEmailUpdateCommandOutput
10
- extends StartPrimaryEmailUpdateResponse,
11
- __MetadataBearer {}
9
+ extends StartPrimaryEmailUpdateResponse, __MetadataBearer {}
12
10
  declare const StartPrimaryEmailUpdateCommand_base: {
13
11
  new (
14
- input: StartPrimaryEmailUpdateCommandInput
12
+ input: StartPrimaryEmailUpdateCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  StartPrimaryEmailUpdateCommandInput,
17
15
  StartPrimaryEmailUpdateCommandOutput,
@@ -20,7 +18,7 @@ declare const StartPrimaryEmailUpdateCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: StartPrimaryEmailUpdateCommandInput
21
+ input: StartPrimaryEmailUpdateCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  StartPrimaryEmailUpdateCommandInput,
26
24
  StartPrimaryEmailUpdateCommandOutput,
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
23
23
  defaultSigningName: string;
24
24
  };
25
25
  export declare const resolveClientEndpointParameters: <T>(
26
- options: T & ClientInputEndpointParameters
26
+ options: T & ClientInputEndpointParameters,
27
27
  ) => T & ClientResolvedEndpointParameters;
28
28
  export declare const commonParams: {
29
29
  readonly UseFIPS: {
@@ -4,5 +4,5 @@ export declare const defaultEndpointResolver: (
4
4
  endpointParams: EndpointParameters,
5
5
  context?: {
6
6
  logger?: Logger;
7
- }
7
+ },
8
8
  ) => EndpointV2;
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface AccountExtensionConfiguration
6
- extends HttpHandlerExtensionConfiguration,
6
+ extends
7
+ HttpHandlerExtensionConfiguration,
7
8
  DefaultExtensionConfiguration,
8
9
  AwsRegionExtensionConfiguration,
9
10
  HttpAuthExtensionConfiguration {}
@@ -22,16 +22,14 @@ export declare const AlternateContactType: {
22
22
  readonly OPERATIONS: "OPERATIONS";
23
23
  readonly SECURITY: "SECURITY";
24
24
  };
25
- export type AlternateContactType =
26
- (typeof AlternateContactType)[keyof typeof AlternateContactType];
25
+ export type AlternateContactType = (typeof AlternateContactType)[keyof typeof AlternateContactType];
27
26
  export declare const AwsAccountState: {
28
27
  readonly ACTIVE: "ACTIVE";
29
28
  readonly CLOSED: "CLOSED";
30
29
  readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
31
30
  readonly SUSPENDED: "SUSPENDED";
32
31
  };
33
- export type AwsAccountState =
34
- (typeof AwsAccountState)[keyof typeof AwsAccountState];
32
+ export type AwsAccountState = (typeof AwsAccountState)[keyof typeof AwsAccountState];
35
33
  export declare const RegionOptStatus: {
36
34
  readonly DISABLED: "DISABLED";
37
35
  readonly DISABLING: "DISABLING";
@@ -39,5 +37,4 @@ export declare const RegionOptStatus: {
39
37
  readonly ENABLED_BY_DEFAULT: "ENABLED_BY_DEFAULT";
40
38
  readonly ENABLING: "ENABLING";
41
39
  };
42
- export type RegionOptStatus =
43
- (typeof RegionOptStatus)[keyof typeof RegionOptStatus];
40
+ export type RegionOptStatus = (typeof RegionOptStatus)[keyof typeof RegionOptStatus];
@@ -6,9 +6,7 @@ export declare class AccessDeniedException extends __BaseException {
6
6
  readonly name: "AccessDeniedException";
7
7
  readonly $fault: "client";
8
8
  errorType?: string | undefined;
9
- constructor(
10
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
- );
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
10
  }
13
11
  export declare class ConflictException extends __BaseException {
14
12
  readonly name: "ConflictException";
@@ -21,17 +19,13 @@ export declare class InternalServerException extends __BaseException {
21
19
  readonly $fault: "server";
22
20
  $retryable: {};
23
21
  errorType?: string | undefined;
24
- constructor(
25
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
26
- );
22
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
27
23
  }
28
24
  export declare class ResourceNotFoundException extends __BaseException {
29
25
  readonly name: "ResourceNotFoundException";
30
26
  readonly $fault: "client";
31
27
  errorType?: string | undefined;
32
- constructor(
33
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
34
- );
28
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
35
29
  }
36
30
  export declare class TooManyRequestsException extends __BaseException {
37
31
  readonly name: "TooManyRequestsException";
@@ -40,24 +34,18 @@ export declare class TooManyRequestsException extends __BaseException {
40
34
  throttling: boolean;
41
35
  };
42
36
  errorType?: string | undefined;
43
- constructor(
44
- opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
45
- );
37
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
46
38
  }
47
39
  export declare class ValidationException extends __BaseException {
48
40
  readonly name: "ValidationException";
49
41
  readonly $fault: "client";
50
42
  reason?: ValidationExceptionReason | undefined;
51
43
  fieldList?: ValidationExceptionField[] | undefined;
52
- constructor(
53
- opts: __ExceptionOptionType<ValidationException, __BaseException>
54
- );
44
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
55
45
  }
56
46
  export declare class ResourceUnavailableException extends __BaseException {
57
47
  readonly name: "ResourceUnavailableException";
58
48
  readonly $fault: "client";
59
49
  errorType?: string | undefined;
60
- constructor(
61
- opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
62
- );
50
+ constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
63
51
  }
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@smithy/types";
2
2
  import { AccountClient } from "../AccountClient";
3
- export interface AccountPaginationConfiguration
4
- extends PaginationConfiguration {
3
+ export interface AccountPaginationConfiguration extends PaginationConfiguration {
5
4
  client: AccountClient;
6
5
  }
@@ -1,8 +1,5 @@
1
1
  import { Paginator } from "@smithy/types";
2
- import {
3
- ListRegionsCommandInput,
4
- ListRegionsCommandOutput,
5
- } from "../commands/ListRegionsCommand";
2
+ import { ListRegionsCommandInput, ListRegionsCommandOutput } from "../commands/ListRegionsCommand";
6
3
  import { AccountPaginationConfiguration } from "./Interfaces";
7
4
  export declare const paginateListRegions: (
8
5
  config: AccountPaginationConfiguration,
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
10
10
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((
12
- _: unknown
13
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
12
  defaultUserAgentProvider: (
15
- config?: import("@aws-sdk/core/client").PreviouslyResolved
13
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
16
14
  ) => Promise<import("@smithy/types").UserAgent>;
17
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
16
  region: string | import("@smithy/types").Provider<any>;
19
- requestHandler:
20
- | import("@smithy/core/protocols").HttpHandler<any>
21
- | RequestHandler;
17
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
22
18
  retryMode: string | import("@smithy/types").Provider<string>;
23
19
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
20
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
21
  ) => Promise<Uint8Array>;
30
22
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
23
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
53
45
  logger: import("@smithy/types").Logger;
54
46
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- userAgentAppId?:
57
- | string
58
- | undefined
59
- | import("@smithy/types").Provider<string | undefined>;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2;
48
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
63
50
  endpoint?:
64
51
  | ((
65
52
  | string
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
81
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
69
  context?: {
83
70
  logger?: import("@smithy/types").Logger;
84
- }
71
+ },
85
72
  ) => import("@smithy/types").EndpointV2;
86
73
  tls?: boolean;
87
74
  serviceConfiguredEndpoint?: never;
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
94
81
  signer?:
95
82
  | import("@smithy/types").RequestSigner
96
83
  | ((
97
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
98
85
  ) => Promise<import("@smithy/types").RequestSigner>);
99
86
  signingEscapePath?: boolean;
100
87
  systemClockOffset?: number;
101
88
  signingRegion?: string;
102
89
  signerConstructor?: new (
103
90
  options: import("@smithy/signature-v4").SignatureV4Init &
104
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
105
92
  ) => import("@smithy/types").RequestSigner;
106
93
  };
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
10
10
  credentialDefaultProvider:
11
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
12
  | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
14
  ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
15
  defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved
16
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
17
  ) => Promise<import("@smithy/types").UserAgent>;
18
18
  maxAttempts: number | import("@smithy/types").Provider<number>;
19
19
  region: string | import("@smithy/types").Provider<string>;
20
- requestHandler:
21
- | RequestHandler
22
- | import("@smithy/core/protocols").HttpHandler<any>;
20
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
23
21
  retryMode: string | import("@smithy/types").Provider<string>;
24
22
  streamCollector: (
25
- stream:
26
- | import("stream").Readable
27
- | import("stream/web").ReadableStream
28
- | ReadableStream
29
- | Blob
23
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
30
24
  ) => Promise<Uint8Array>;
31
25
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
26
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
53
47
  logger: import("@smithy/types").Logger;
54
48
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
49
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- retryStrategy?:
57
- | import("@smithy/types").RetryStrategy
58
- | import("@smithy/types").RetryStrategyV2;
50
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
59
51
  endpoint?:
60
52
  | ((
61
53
  | string
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
77
69
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
78
70
  context?: {
79
71
  logger?: import("@smithy/types").Logger;
80
- }
72
+ },
81
73
  ) => import("@smithy/types").EndpointV2;
82
74
  tls?: boolean;
83
75
  serviceConfiguredEndpoint?: never;
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
89
81
  signer?:
90
82
  | import("@smithy/types").RequestSigner
91
83
  | ((
92
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
93
85
  ) => Promise<import("@smithy/types").RequestSigner>);
94
86
  signingEscapePath?: boolean;
95
87
  systemClockOffset?: number;
96
88
  signingRegion?: string;
97
89
  signerConstructor?: new (
98
90
  options: import("@smithy/signature-v4").SignatureV4Init &
99
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
100
92
  ) => import("@smithy/types").RequestSigner;
101
93
  };
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
23
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
24
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
25
  ) => Promise<Uint8Array>;
30
26
  base64Decoder: import("@smithy/types").Decoder;
31
27
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
40
36
  region: string | import("@smithy/types").Provider<any>;
41
37
  profile?: string;
42
38
  defaultUserAgentProvider: (
43
- config?: import("@aws-sdk/core/client").PreviouslyResolved
39
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
44
40
  ) => Promise<import("@smithy/types").UserAgent>;
45
41
  credentialDefaultProvider:
46
42
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
47
- | ((
48
- _: unknown
49
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
43
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
50
44
  maxAttempts: number | import("@smithy/types").Provider<number>;
51
45
  retryMode: string | import("@smithy/types").Provider<string>;
52
46
  logger: import("@smithy/types").Logger;
53
47
  extensions: import("./runtimeExtensions").RuntimeExtension[];
54
48
  defaultsMode:
55
49
  | import("@smithy/core/client").DefaultsMode
56
- | import("@smithy/types").Provider<
57
- import("@smithy/core/client").DefaultsMode
58
- >;
50
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
59
51
  customUserAgent?: string | import("@smithy/types").UserAgent;
60
- userAgentAppId?:
61
- | string
62
- | undefined
63
- | import("@smithy/types").Provider<string | undefined>;
64
- retryStrategy?:
65
- | import("@smithy/types").RetryStrategy
66
- | import("@smithy/types").RetryStrategyV2;
52
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
67
54
  endpoint?:
68
55
  | ((
69
56
  | string
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
85
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
86
73
  context?: {
87
74
  logger?: import("@smithy/types").Logger;
88
- }
75
+ },
89
76
  ) => import("@smithy/types").EndpointV2;
90
77
  tls?: boolean;
91
78
  serviceConfiguredEndpoint?: never;
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
98
85
  signer?:
99
86
  | import("@smithy/types").RequestSigner
100
87
  | ((
101
- authScheme?: import("@smithy/types").AuthScheme
88
+ authScheme?: import("@smithy/types").AuthScheme,
102
89
  ) => Promise<import("@smithy/types").RequestSigner>);
103
90
  signingEscapePath?: boolean;
104
91
  systemClockOffset?: number;
105
92
  signingRegion?: string;
106
93
  signerConstructor?: new (
107
94
  options: import("@smithy/signature-v4").SignatureV4Init &
108
- import("@smithy/signature-v4").SignatureV4CryptoInit
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
109
96
  ) => import("@smithy/types").RequestSigner;
110
97
  };
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
9
9
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
- }
12
+ },
13
13
  ) => import("@smithy/types").EndpointV2;
14
14
  extensions: import("./runtimeExtensions").RuntimeExtension[];
15
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AccountHttpAuthSchemeProvider;
@@ -7,5 +7,5 @@ export interface RuntimeExtensionsConfig {
7
7
  }
8
8
  export declare const resolveRuntimeExtensions: (
9
9
  runtimeConfig: any,
10
- extensions: RuntimeExtension[]
10
+ extensions: RuntimeExtension[],
11
11
  ) => any;
@@ -1,9 +1,5 @@
1
1
  import { TypeRegistry } from "@smithy/core/schema";
2
- import {
3
- StaticErrorSchema,
4
- StaticOperationSchema,
5
- StaticStructureSchema,
6
- } from "@smithy/types";
2
+ import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
7
3
  export declare var AccountServiceException$: StaticErrorSchema;
8
4
  export declare var AccessDeniedException$: StaticErrorSchema;
9
5
  export declare var ConflictException$: StaticErrorSchema;