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