@aws-sdk/client-account 3.169.0 → 3.171.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.
@@ -1,5 +1,5 @@
1
- export * from "./Account";
2
- export * from "./AccountClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { AccountServiceException } from "./models/AccountServiceException";
1
+ export * from "./Account";
2
+ export * from "./AccountClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { AccountServiceException } from "./models/AccountServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class AccountServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class AccountServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";
@@ -1,148 +1,123 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { AccountServiceException as __BaseException } from "./AccountServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum AlternateContactType {
11
- BILLING = "BILLING",
12
- OPERATIONS = "OPERATIONS",
13
- SECURITY = "SECURITY"
14
- }
15
- export interface DeleteAlternateContactRequest {
16
-
17
- AlternateContactType: AlternateContactType | string | undefined;
18
-
19
- AccountId?: string;
20
- }
21
-
22
- export declare class InternalServerException extends __BaseException {
23
- readonly name: "InternalServerException";
24
- readonly $fault: "server";
25
- $retryable: {};
26
-
27
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
28
- }
29
-
30
- export declare class ResourceNotFoundException extends __BaseException {
31
- readonly name: "ResourceNotFoundException";
32
- readonly $fault: "client";
33
-
34
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
35
- }
36
-
37
- export declare class TooManyRequestsException extends __BaseException {
38
- readonly name: "TooManyRequestsException";
39
- readonly $fault: "client";
40
- $retryable: {
41
- throttling: boolean;
42
- };
43
-
44
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
45
- }
46
-
47
- export declare class ValidationException extends __BaseException {
48
- readonly name: "ValidationException";
49
- readonly $fault: "client";
50
-
51
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
52
- }
53
- export interface GetAlternateContactRequest {
54
-
55
- AlternateContactType: AlternateContactType | string | undefined;
56
-
57
- AccountId?: string;
58
- }
59
-
60
- export interface AlternateContact {
61
-
62
- Name?: string;
63
-
64
- Title?: string;
65
-
66
- EmailAddress?: string;
67
-
68
- PhoneNumber?: string;
69
-
70
- AlternateContactType?: AlternateContactType | string;
71
- }
72
- export interface GetAlternateContactResponse {
73
-
74
- AlternateContact?: AlternateContact;
75
- }
76
- export interface PutAlternateContactRequest {
77
-
78
- Name: string | undefined;
79
-
80
- Title: string | undefined;
81
-
82
- EmailAddress: string | undefined;
83
-
84
- PhoneNumber: string | undefined;
85
-
86
- AlternateContactType: AlternateContactType | string | undefined;
87
-
88
- AccountId?: string;
89
- }
90
- export interface GetContactInformationRequest {
91
-
92
- AccountId?: string;
93
- }
94
-
95
- export interface ContactInformation {
96
-
97
- FullName: string | undefined;
98
-
99
- AddressLine1: string | undefined;
100
-
101
- AddressLine2?: string;
102
-
103
- AddressLine3?: string;
104
-
105
- City: string | undefined;
106
-
107
- StateOrRegion?: string;
108
-
109
- DistrictOrCounty?: string;
110
-
111
- PostalCode: string | undefined;
112
-
113
- CountryCode: string | undefined;
114
-
115
- PhoneNumber: string | undefined;
116
-
117
- CompanyName?: string;
118
-
119
- WebsiteUrl?: string;
120
- }
121
- export interface GetContactInformationResponse {
122
-
123
- ContactInformation?: ContactInformation;
124
- }
125
- export interface PutContactInformationRequest {
126
-
127
- ContactInformation: ContactInformation | undefined;
128
-
129
- AccountId?: string;
130
- }
131
-
132
- export declare const DeleteAlternateContactRequestFilterSensitiveLog: (obj: DeleteAlternateContactRequest) => any;
133
-
134
- export declare const GetAlternateContactRequestFilterSensitiveLog: (obj: GetAlternateContactRequest) => any;
135
-
136
- export declare const AlternateContactFilterSensitiveLog: (obj: AlternateContact) => any;
137
-
138
- export declare const GetAlternateContactResponseFilterSensitiveLog: (obj: GetAlternateContactResponse) => any;
139
-
140
- export declare const PutAlternateContactRequestFilterSensitiveLog: (obj: PutAlternateContactRequest) => any;
141
-
142
- export declare const GetContactInformationRequestFilterSensitiveLog: (obj: GetContactInformationRequest) => any;
143
-
144
- export declare const ContactInformationFilterSensitiveLog: (obj: ContactInformation) => any;
145
-
146
- export declare const GetContactInformationResponseFilterSensitiveLog: (obj: GetContactInformationResponse) => any;
147
-
148
- export declare const PutContactInformationRequestFilterSensitiveLog: (obj: PutContactInformationRequest) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AccountServiceException as __BaseException } from "./AccountServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare enum AlternateContactType {
11
+ BILLING = "BILLING",
12
+ OPERATIONS = "OPERATIONS",
13
+ SECURITY = "SECURITY",
14
+ }
15
+ export interface DeleteAlternateContactRequest {
16
+ AlternateContactType: AlternateContactType | string | undefined;
17
+ AccountId?: string;
18
+ }
19
+ export declare class InternalServerException extends __BaseException {
20
+ readonly name: "InternalServerException";
21
+ readonly $fault: "server";
22
+ $retryable: {};
23
+ constructor(
24
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ResourceNotFoundException extends __BaseException {
28
+ readonly name: "ResourceNotFoundException";
29
+ readonly $fault: "client";
30
+ constructor(
31
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
32
+ );
33
+ }
34
+ export declare class TooManyRequestsException extends __BaseException {
35
+ readonly name: "TooManyRequestsException";
36
+ readonly $fault: "client";
37
+ $retryable: {
38
+ throttling: boolean;
39
+ };
40
+ constructor(
41
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
42
+ );
43
+ }
44
+ export declare class ValidationException extends __BaseException {
45
+ readonly name: "ValidationException";
46
+ readonly $fault: "client";
47
+ constructor(
48
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
49
+ );
50
+ }
51
+ export interface GetAlternateContactRequest {
52
+ AlternateContactType: AlternateContactType | string | undefined;
53
+ AccountId?: string;
54
+ }
55
+ export interface AlternateContact {
56
+ Name?: string;
57
+ Title?: string;
58
+ EmailAddress?: string;
59
+ PhoneNumber?: string;
60
+ AlternateContactType?: AlternateContactType | string;
61
+ }
62
+ export interface GetAlternateContactResponse {
63
+ AlternateContact?: AlternateContact;
64
+ }
65
+ export interface PutAlternateContactRequest {
66
+ Name: string | undefined;
67
+ Title: string | undefined;
68
+ EmailAddress: string | undefined;
69
+ PhoneNumber: string | undefined;
70
+ AlternateContactType: AlternateContactType | string | undefined;
71
+ AccountId?: string;
72
+ }
73
+ export interface GetContactInformationRequest {
74
+ AccountId?: string;
75
+ }
76
+ export interface ContactInformation {
77
+ FullName: string | undefined;
78
+ AddressLine1: string | undefined;
79
+ AddressLine2?: string;
80
+ AddressLine3?: string;
81
+ City: string | undefined;
82
+ StateOrRegion?: string;
83
+ DistrictOrCounty?: string;
84
+ PostalCode: string | undefined;
85
+ CountryCode: string | undefined;
86
+ PhoneNumber: string | undefined;
87
+ CompanyName?: string;
88
+ WebsiteUrl?: string;
89
+ }
90
+ export interface GetContactInformationResponse {
91
+ ContactInformation?: ContactInformation;
92
+ }
93
+ export interface PutContactInformationRequest {
94
+ ContactInformation: ContactInformation | undefined;
95
+ AccountId?: string;
96
+ }
97
+ export declare const DeleteAlternateContactRequestFilterSensitiveLog: (
98
+ obj: DeleteAlternateContactRequest
99
+ ) => any;
100
+ export declare const GetAlternateContactRequestFilterSensitiveLog: (
101
+ obj: GetAlternateContactRequest
102
+ ) => any;
103
+ export declare const AlternateContactFilterSensitiveLog: (
104
+ obj: AlternateContact
105
+ ) => any;
106
+ export declare const GetAlternateContactResponseFilterSensitiveLog: (
107
+ obj: GetAlternateContactResponse
108
+ ) => any;
109
+ export declare const PutAlternateContactRequestFilterSensitiveLog: (
110
+ obj: PutAlternateContactRequest
111
+ ) => any;
112
+ export declare const GetContactInformationRequestFilterSensitiveLog: (
113
+ obj: GetContactInformationRequest
114
+ ) => any;
115
+ export declare const ContactInformationFilterSensitiveLog: (
116
+ obj: ContactInformation
117
+ ) => any;
118
+ export declare const GetContactInformationResponseFilterSensitiveLog: (
119
+ obj: GetContactInformationResponse
120
+ ) => any;
121
+ export declare const PutContactInformationRequestFilterSensitiveLog: (
122
+ obj: PutContactInformationRequest
123
+ ) => any;
@@ -1,17 +1,65 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DeleteAlternateContactCommandInput, DeleteAlternateContactCommandOutput } from "../commands/DeleteAlternateContactCommand";
4
- import { GetAlternateContactCommandInput, GetAlternateContactCommandOutput } from "../commands/GetAlternateContactCommand";
5
- import { GetContactInformationCommandInput, GetContactInformationCommandOutput } from "../commands/GetContactInformationCommand";
6
- import { PutAlternateContactCommandInput, PutAlternateContactCommandOutput } from "../commands/PutAlternateContactCommand";
7
- import { PutContactInformationCommandInput, PutContactInformationCommandOutput } from "../commands/PutContactInformationCommand";
8
- export declare const serializeAws_restJson1DeleteAlternateContactCommand: (input: DeleteAlternateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1GetAlternateContactCommand: (input: GetAlternateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1GetContactInformationCommand: (input: GetContactInformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const serializeAws_restJson1PutAlternateContactCommand: (input: PutAlternateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
- export declare const serializeAws_restJson1PutContactInformationCommand: (input: PutContactInformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
- export declare const deserializeAws_restJson1DeleteAlternateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAlternateContactCommandOutput>;
14
- export declare const deserializeAws_restJson1GetAlternateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAlternateContactCommandOutput>;
15
- export declare const deserializeAws_restJson1GetContactInformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactInformationCommandOutput>;
16
- export declare const deserializeAws_restJson1PutAlternateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAlternateContactCommandOutput>;
17
- export declare const deserializeAws_restJson1PutContactInformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutContactInformationCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ DeleteAlternateContactCommandInput,
8
+ DeleteAlternateContactCommandOutput,
9
+ } from "../commands/DeleteAlternateContactCommand";
10
+ import {
11
+ GetAlternateContactCommandInput,
12
+ GetAlternateContactCommandOutput,
13
+ } from "../commands/GetAlternateContactCommand";
14
+ import {
15
+ GetContactInformationCommandInput,
16
+ GetContactInformationCommandOutput,
17
+ } from "../commands/GetContactInformationCommand";
18
+ import {
19
+ PutAlternateContactCommandInput,
20
+ PutAlternateContactCommandOutput,
21
+ } from "../commands/PutAlternateContactCommand";
22
+ import {
23
+ PutContactInformationCommandInput,
24
+ PutContactInformationCommandOutput,
25
+ } from "../commands/PutContactInformationCommand";
26
+ export declare const serializeAws_restJson1DeleteAlternateContactCommand: (
27
+ input: DeleteAlternateContactCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1GetAlternateContactCommand: (
31
+ input: GetAlternateContactCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1GetContactInformationCommand: (
35
+ input: GetContactInformationCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_restJson1PutAlternateContactCommand: (
39
+ input: PutAlternateContactCommandInput,
40
+ context: __SerdeContext
41
+ ) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_restJson1PutContactInformationCommand: (
43
+ input: PutContactInformationCommandInput,
44
+ context: __SerdeContext
45
+ ) => Promise<__HttpRequest>;
46
+ export declare const deserializeAws_restJson1DeleteAlternateContactCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<DeleteAlternateContactCommandOutput>;
50
+ export declare const deserializeAws_restJson1GetAlternateContactCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<GetAlternateContactCommandOutput>;
54
+ export declare const deserializeAws_restJson1GetContactInformationCommand: (
55
+ output: __HttpResponse,
56
+ context: __SerdeContext
57
+ ) => Promise<GetContactInformationCommandOutput>;
58
+ export declare const deserializeAws_restJson1PutAlternateContactCommand: (
59
+ output: __HttpResponse,
60
+ context: __SerdeContext
61
+ ) => Promise<PutAlternateContactCommandOutput>;
62
+ export declare const deserializeAws_restJson1PutContactInformationCommand: (
63
+ output: __HttpResponse,
64
+ context: __SerdeContext
65
+ ) => Promise<PutContactInformationCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { AccountClientConfig } from "./AccountClient";
3
-
4
- export declare const getRuntimeConfig: (config: AccountClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AccountClientConfig } from "./AccountClient";
3
+ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,38 +1,65 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { AccountClientConfig } from "./AccountClient";
3
-
4
- export declare const getRuntimeConfig: (config: AccountClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { AccountClientConfig } from "./AccountClient";
3
+ export declare const getRuntimeConfig: (config: AccountClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };