@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Account.d.ts +94 -30
- package/dist-types/ts3.4/AccountClient.d.ts +159 -78
- package/dist-types/ts3.4/commands/DeleteAlternateContactCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAlternateContactCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetContactInformationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutAlternateContactCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/PutContactInformationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +5 -5
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AccountServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +167 -148
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +65 -17
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
export interface
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
+
};
|