@aws-sdk/client-arc-zonal-shift 3.219.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/LICENSE +201 -0
- package/README.md +219 -0
- package/dist-cjs/ARCZonalShift.js +97 -0
- package/dist-cjs/ARCZonalShiftClient.js +40 -0
- package/dist-cjs/commands/CancelZonalShiftCommand.js +46 -0
- package/dist-cjs/commands/GetManagedResourceCommand.js +46 -0
- package/dist-cjs/commands/ListManagedResourcesCommand.js +46 -0
- package/dist-cjs/commands/ListZonalShiftsCommand.js +46 -0
- package/dist-cjs/commands/StartZonalShiftCommand.js +46 -0
- package/dist-cjs/commands/UpdateZonalShiftCommand.js +46 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/ARCZonalShiftServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +164 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListManagedResourcesPaginator.js +36 -0
- package/dist-cjs/pagination/ListZonalShiftsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +703 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/ARCZonalShift.js +93 -0
- package/dist-es/ARCZonalShiftClient.js +36 -0
- package/dist-es/commands/CancelZonalShiftCommand.js +42 -0
- package/dist-es/commands/GetManagedResourceCommand.js +42 -0
- package/dist-es/commands/ListManagedResourcesCommand.js +42 -0
- package/dist-es/commands/ListZonalShiftsCommand.js +42 -0
- package/dist-es/commands/StartZonalShiftCommand.js +42 -0
- package/dist-es/commands/UpdateZonalShiftCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/ARCZonalShiftServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +142 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListManagedResourcesPaginator.js +32 -0
- package/dist-es/pagination/ListZonalShiftsPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +688 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/ARCZonalShift.d.ts +77 -0
- package/dist-types/ARCZonalShiftClient.d.ts +161 -0
- package/dist-types/commands/CancelZonalShiftCommand.d.ts +37 -0
- package/dist-types/commands/GetManagedResourceCommand.d.ts +39 -0
- package/dist-types/commands/ListManagedResourcesCommand.d.ts +39 -0
- package/dist-types/commands/ListZonalShiftsCommand.d.ts +37 -0
- package/dist-types/commands/StartZonalShiftCommand.d.ts +46 -0
- package/dist-types/commands/UpdateZonalShiftCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/ARCZonalShiftServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +503 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListManagedResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListZonalShiftsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +20 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/ARCZonalShift.d.ts +106 -0
- package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +148 -0
- package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ARCZonalShiftServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +177 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListManagedResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListZonalShiftsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +101 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ARCZonalShift service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ARCZonalShiftServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,503 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ARCZonalShiftServiceException as __BaseException } from "./ARCZonalShiftServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
*/
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
|
+
}
|
|
14
|
+
export declare enum AppliedStatus {
|
|
15
|
+
APPLIED = "APPLIED",
|
|
16
|
+
NOT_APPLIED = "NOT_APPLIED"
|
|
17
|
+
}
|
|
18
|
+
export interface CancelZonalShiftRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The internally-generated identifier of a zonal shift.</p>
|
|
21
|
+
*/
|
|
22
|
+
zonalShiftId: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
export declare enum ConflictExceptionReason {
|
|
25
|
+
SIMULTANEOUS_ZONAL_SHIFTS_CONFLICT = "SimultaneousZonalShiftsConflict",
|
|
26
|
+
ZONAL_SHIFT_ALREADY_EXISTS = "ZonalShiftAlreadyExists",
|
|
27
|
+
ZONAL_SHIFT_STATUS_NOT_ACTIVE = "ZonalShiftStatusNotActive"
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>The request could not be processed because of conflict in the current state of the resource.</p>
|
|
31
|
+
*/
|
|
32
|
+
export declare class ConflictException extends __BaseException {
|
|
33
|
+
readonly name: "ConflictException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* <p>The reason for the conflict exception.</p>
|
|
37
|
+
*/
|
|
38
|
+
reason: ConflictExceptionReason | string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The zonal shift ID associated with the conflict exception.</p>
|
|
41
|
+
*/
|
|
42
|
+
zonalShiftId?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* <p>There was an internal server error.</p>
|
|
50
|
+
*/
|
|
51
|
+
export declare class InternalServerException extends __BaseException {
|
|
52
|
+
readonly name: "InternalServerException";
|
|
53
|
+
readonly $fault: "server";
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>The input requested a resource that was not found.</p>
|
|
61
|
+
*/
|
|
62
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
63
|
+
readonly name: "ResourceNotFoundException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>The request was denied due to request throttling.</p>
|
|
72
|
+
*/
|
|
73
|
+
export declare class ThrottlingException extends __BaseException {
|
|
74
|
+
readonly name: "ThrottlingException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
export declare enum ValidationExceptionReason {
|
|
82
|
+
INVALID_AZ = "InvalidAz",
|
|
83
|
+
INVALID_EXPIRES_IN = "InvalidExpiresIn",
|
|
84
|
+
INVALID_RESOURCE_IDENTIFIER = "InvalidResourceIdentifier",
|
|
85
|
+
INVALID_STATUS = "InvalidStatus",
|
|
86
|
+
INVALID_TOKEN = "InvalidToken",
|
|
87
|
+
MISSING_VALUE = "MissingValue",
|
|
88
|
+
UNSUPPORTED_AZ = "UnsupportedAz"
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
92
|
+
*/
|
|
93
|
+
export declare class ValidationException extends __BaseException {
|
|
94
|
+
readonly name: "ValidationException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
/**
|
|
97
|
+
* <p>The reason for the validation exception.</p>
|
|
98
|
+
*/
|
|
99
|
+
reason: ValidationExceptionReason | string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
103
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
104
|
+
}
|
|
105
|
+
export declare enum ZonalShiftStatus {
|
|
106
|
+
ACTIVE = "ACTIVE",
|
|
107
|
+
CANCELED = "CANCELED",
|
|
108
|
+
EXPIRED = "EXPIRED"
|
|
109
|
+
}
|
|
110
|
+
export interface ZonalShift {
|
|
111
|
+
/**
|
|
112
|
+
* <p>The identifier of a zonal shift.</p>
|
|
113
|
+
*/
|
|
114
|
+
zonalShiftId: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* <p>The identifier for the resource to include in a zonal shift. The identifier is the Amazon Resource Name (ARN) for the resource.</p>
|
|
117
|
+
* <p>At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
|
|
118
|
+
*/
|
|
119
|
+
resourceIdentifier: string | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* <p>The Availability Zone that traffic is moved away from for a resource when you start a zonal shift.
|
|
122
|
+
* Until the zonal shift expires or you cancel it, traffic for the resource is instead moved to other Availability Zones in the AWS Region.</p>
|
|
123
|
+
*/
|
|
124
|
+
awayFrom: string | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* <p>The expiry time (expiration time) for the zonal shift. A zonal shift is temporary and must be set to expire when you start the zonal shift.
|
|
127
|
+
* You can initially set a zonal shift to expire in a maximum of three days (72 hours). However, you can update a zonal shift
|
|
128
|
+
* to set a new expiration at any time. </p>
|
|
129
|
+
* <p>When you start a zonal shift, you specify how long you want it to be active, which Route 53 ARC converts
|
|
130
|
+
* to an expiry time (expiration time). You can cancel a zonal shift, for example, if you're ready to restore traffic to the Availability Zone. Or you
|
|
131
|
+
* can update the zonal shift to specify another length of time to expire in.</p>
|
|
132
|
+
*/
|
|
133
|
+
expiryTime: Date | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* <p>The time (UTC) when the zonal shift is started.</p>
|
|
136
|
+
*/
|
|
137
|
+
startTime: Date | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* <p>A status for a zonal shift.</p>
|
|
140
|
+
* <p>The <code>Status</code> for a zonal shift can have one of the following values:</p>
|
|
141
|
+
* <ul>
|
|
142
|
+
* <li>
|
|
143
|
+
* <p>
|
|
144
|
+
* <b>ACTIVE:</b> The zonal shift is started and active.</p>
|
|
145
|
+
* </li>
|
|
146
|
+
* <li>
|
|
147
|
+
* <p>
|
|
148
|
+
* <b>EXPIRED:</b> The zonal shift has expired (the expiry time was exceeded).</p>
|
|
149
|
+
* </li>
|
|
150
|
+
* <li>
|
|
151
|
+
* <p>
|
|
152
|
+
* <b>CANCELED:</b> The zonal shift was canceled.</p>
|
|
153
|
+
* </li>
|
|
154
|
+
* </ul>
|
|
155
|
+
*/
|
|
156
|
+
status: ZonalShiftStatus | string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
159
|
+
* history is maintained. A new comment overwrites any existing comment string.</p>
|
|
160
|
+
*/
|
|
161
|
+
comment: string | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface GetManagedResourceRequest {
|
|
164
|
+
/**
|
|
165
|
+
* <p>The identifier for the resource to include in a zonal shift. The identifier is the Amazon Resource Name (ARN) for the resource.</p>
|
|
166
|
+
* <p>At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
|
|
167
|
+
*/
|
|
168
|
+
resourceIdentifier: string | undefined;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* <p>A complex structure that lists the zonal shifts for a managed resource and their statuses for the resource.</p>
|
|
172
|
+
*/
|
|
173
|
+
export interface ZonalShiftInResource {
|
|
174
|
+
/**
|
|
175
|
+
* <p>An <code>appliedStatus</code> for a zonal shift for a resource can have one of two values: <code>APPLIED</code>
|
|
176
|
+
* or <code>NOT_APPLIED</code>. </p>
|
|
177
|
+
*/
|
|
178
|
+
appliedStatus: AppliedStatus | string | undefined;
|
|
179
|
+
/**
|
|
180
|
+
* <p>The identifier of a zonal shift.</p>
|
|
181
|
+
*/
|
|
182
|
+
zonalShiftId: string | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* <p>The identifier for the resource to include in a zonal shift. The identifier is the Amazon Resource Name (ARN) for the resource.</p>
|
|
185
|
+
* <p>At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
|
|
186
|
+
*/
|
|
187
|
+
resourceIdentifier: string | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* <p>The Availability Zone that traffic is moved away from for a resource when you start a zonal shift.
|
|
190
|
+
* Until the zonal shift expires or you cancel it, traffic for the resource is instead moved to other Availability Zones in the AWS Region.</p>
|
|
191
|
+
*/
|
|
192
|
+
awayFrom: string | undefined;
|
|
193
|
+
/**
|
|
194
|
+
* <p>The expiry time (expiration time) for the zonal shift. A zonal shift is temporary and must be set to expire when you start the zonal shift.
|
|
195
|
+
* You can initially set a zonal shift to expire in a maximum of three days (72 hours). However, you can update a zonal shift
|
|
196
|
+
* to set a new expiration at any time. </p>
|
|
197
|
+
* <p>When you start a zonal shift, you specify how long you want it to be active, which Route 53 ARC converts
|
|
198
|
+
* to an expiry time (expiration time). You can cancel a zonal shift, for example, if you're ready to restore traffic to the Availability Zone. Or you
|
|
199
|
+
* can update the zonal shift to specify another length of time to expire in.</p>
|
|
200
|
+
*/
|
|
201
|
+
expiryTime: Date | undefined;
|
|
202
|
+
/**
|
|
203
|
+
* <p>The time (UTC) when the zonal shift is started.</p>
|
|
204
|
+
*/
|
|
205
|
+
startTime: Date | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
208
|
+
* history is maintained. That is, a new comment overwrites any existing comment string.</p>
|
|
209
|
+
*/
|
|
210
|
+
comment: string | undefined;
|
|
211
|
+
}
|
|
212
|
+
export interface GetManagedResourceResponse {
|
|
213
|
+
/**
|
|
214
|
+
* <p>The Amazon Resource Name (ARN) for the resource.</p>
|
|
215
|
+
*/
|
|
216
|
+
arn?: string;
|
|
217
|
+
/**
|
|
218
|
+
* <p>The name of the resource.</p>
|
|
219
|
+
*/
|
|
220
|
+
name?: string;
|
|
221
|
+
/**
|
|
222
|
+
* <p>A collection of key-value pairs that indicate whether resources are active in Availability Zones or not.
|
|
223
|
+
* The key name is the Availability Zone where the resource is deployed. The value is 1 or 0.</p>
|
|
224
|
+
*/
|
|
225
|
+
appliedWeights: Record<string, number> | undefined;
|
|
226
|
+
/**
|
|
227
|
+
* <p>The zonal shifts that are currently active for a resource. </p>
|
|
228
|
+
*/
|
|
229
|
+
zonalShifts: ZonalShiftInResource[] | undefined;
|
|
230
|
+
}
|
|
231
|
+
export interface ListManagedResourcesRequest {
|
|
232
|
+
/**
|
|
233
|
+
* <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>NextToken</code> response in the
|
|
234
|
+
* previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous
|
|
235
|
+
* call's <code>NextToken</code> response to request the next page of results.</p>
|
|
236
|
+
*/
|
|
237
|
+
nextToken?: string;
|
|
238
|
+
/**
|
|
239
|
+
* <p>The number of objects that you want to return with this call.</p>
|
|
240
|
+
*/
|
|
241
|
+
maxResults?: number;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* <p>A complex structure for a managed resource in an account.</p>
|
|
245
|
+
* <p>A managed resource is a Network Load Balancer or Application Load Balancer that has been registered with Route 53 ARC by Elastic Load Balancing. You can start a
|
|
246
|
+
* zonal shift in Route 53 ARC for a managed resource to temporarily move traffic for the resource away from an Availability Zone in an AWS Region.</p>
|
|
247
|
+
* <note>
|
|
248
|
+
* <p>At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
|
|
249
|
+
* </note>
|
|
250
|
+
*/
|
|
251
|
+
export interface ManagedResourceSummary {
|
|
252
|
+
/**
|
|
253
|
+
* <p>The Amazon Resource Name (ARN) for the managed resource.</p>
|
|
254
|
+
*/
|
|
255
|
+
arn?: string;
|
|
256
|
+
/**
|
|
257
|
+
* <p>The name of the managed resource.</p>
|
|
258
|
+
*/
|
|
259
|
+
name?: string;
|
|
260
|
+
/**
|
|
261
|
+
* <p>The Availability Zones that a resource is deployed in.</p>
|
|
262
|
+
*/
|
|
263
|
+
availabilityZones: string[] | undefined;
|
|
264
|
+
}
|
|
265
|
+
export interface ListManagedResourcesResponse {
|
|
266
|
+
/**
|
|
267
|
+
* <p>The items in the response list.</p>
|
|
268
|
+
*/
|
|
269
|
+
items: ManagedResourceSummary[] | undefined;
|
|
270
|
+
/**
|
|
271
|
+
* <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>NextToken</code> response in the
|
|
272
|
+
* previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous
|
|
273
|
+
* call's <code>NextToken</code> response to request the next page of results.</p>
|
|
274
|
+
*/
|
|
275
|
+
nextToken?: string;
|
|
276
|
+
}
|
|
277
|
+
export interface ListZonalShiftsRequest {
|
|
278
|
+
/**
|
|
279
|
+
* <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>NextToken</code> response in the
|
|
280
|
+
* previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous
|
|
281
|
+
* call's <code>NextToken</code> response to request the next page of results.</p>
|
|
282
|
+
*/
|
|
283
|
+
nextToken?: string;
|
|
284
|
+
/**
|
|
285
|
+
* <p>A status for a zonal shift.</p>
|
|
286
|
+
* <p>The <code>Status</code> for a zonal shift can have one of the following values:</p>
|
|
287
|
+
* <ul>
|
|
288
|
+
* <li>
|
|
289
|
+
* <p>
|
|
290
|
+
* <b>ACTIVE</b>: The zonal shift is started and active.</p>
|
|
291
|
+
* </li>
|
|
292
|
+
* <li>
|
|
293
|
+
* <p>
|
|
294
|
+
* <b>EXPIRED</b>: The zonal shift has expired (the expiry time was exceeded).</p>
|
|
295
|
+
* </li>
|
|
296
|
+
* <li>
|
|
297
|
+
* <p>
|
|
298
|
+
* <b>CANCELED</b>: The zonal shift was canceled.</p>
|
|
299
|
+
* </li>
|
|
300
|
+
* </ul>
|
|
301
|
+
*/
|
|
302
|
+
status?: ZonalShiftStatus | string;
|
|
303
|
+
/**
|
|
304
|
+
* <p>The number of objects that you want to return with this call.</p>
|
|
305
|
+
*/
|
|
306
|
+
maxResults?: number;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* <p>You start a zonal shift to temporarily move load balancer traffic away from an Availability Zone in a AWS Region.
|
|
310
|
+
* A zonal shift helps your application recover immediately, for example, from a developer's bad code deployment or from an AWS
|
|
311
|
+
* infrastructure failure in a single Availability Zone. You can start a zonal shift in Route 53 ARC only for managed
|
|
312
|
+
* resources in your account in an AWS Region. Supported AWS resources are automatically registered with Route 53 ARC.</p>
|
|
313
|
+
* <p>Zonal shifts are temporary. A zonal shift can be active for up to three days (72 hours).</p>
|
|
314
|
+
* <p>When you start a zonal shift, you specify how long you want it to be active, which Amazon Route 53 Application Recovery Controller converts
|
|
315
|
+
* to an expiry time (expiration time). You can cancel a zonal shift, for example, if you're ready to restore traffic to the Availability Zone. Or you
|
|
316
|
+
* can extend the zonal shift by updating the expiration so the zonal shift is active longer.</p>
|
|
317
|
+
*/
|
|
318
|
+
export interface ZonalShiftSummary {
|
|
319
|
+
/**
|
|
320
|
+
* <p>The identifier of a zonal shift.</p>
|
|
321
|
+
*/
|
|
322
|
+
zonalShiftId: string | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* <p>The identifier for the resource to include in a zonal shift. The identifier is the Amazon Resource Name (ARN) for the resource.</p>
|
|
325
|
+
* <p>At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
|
|
326
|
+
*/
|
|
327
|
+
resourceIdentifier: string | undefined;
|
|
328
|
+
/**
|
|
329
|
+
* <p>The Availability Zone that traffic is moved away from for a resource when you start a zonal shift.
|
|
330
|
+
* Until the zonal shift expires or you cancel it, traffic for the resource is instead moved to other Availability Zones in the AWS Region.</p>
|
|
331
|
+
*/
|
|
332
|
+
awayFrom: string | undefined;
|
|
333
|
+
/**
|
|
334
|
+
* <p>The expiry time (expiration time) for the zonal shift. A zonal shift is temporary and must be set to expire when you start the zonal shift.
|
|
335
|
+
* You can initially set a zonal shift to expire in a maximum of three days (72 hours). However, you can update a zonal shift
|
|
336
|
+
* to set a new expiration at any time. </p>
|
|
337
|
+
* <p>When you start a zonal shift, you specify how long you want it to be active, which Route 53 ARC converts
|
|
338
|
+
* to an expiry time (expiration time). You can cancel a zonal shift, for example, if you're ready to restore traffic to the Availability Zone. Or you
|
|
339
|
+
* can update the zonal shift to specify another length of time to expire in.</p>
|
|
340
|
+
*/
|
|
341
|
+
expiryTime: Date | undefined;
|
|
342
|
+
/**
|
|
343
|
+
* <p>The time (UTC) when the zonal shift is started.</p>
|
|
344
|
+
*/
|
|
345
|
+
startTime: Date | undefined;
|
|
346
|
+
/**
|
|
347
|
+
* <p>A status for a zonal shift.</p>
|
|
348
|
+
* <p>The <code>Status</code> for a zonal shift can have one of the following values:</p>
|
|
349
|
+
* <ul>
|
|
350
|
+
* <li>
|
|
351
|
+
* <p>
|
|
352
|
+
* <b>ACTIVE:</b> The zonal shift is started and active.</p>
|
|
353
|
+
* </li>
|
|
354
|
+
* <li>
|
|
355
|
+
* <p>
|
|
356
|
+
* <b>EXPIRED:</b> The zonal shift has expired (the expiry time was exceeded).</p>
|
|
357
|
+
* </li>
|
|
358
|
+
* <li>
|
|
359
|
+
* <p>
|
|
360
|
+
* <b>CANCELED:</b> The zonal shift was canceled.</p>
|
|
361
|
+
* </li>
|
|
362
|
+
* </ul>
|
|
363
|
+
*/
|
|
364
|
+
status: ZonalShiftStatus | string | undefined;
|
|
365
|
+
/**
|
|
366
|
+
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
367
|
+
* history is maintained. That is, a new comment overwrites any existing comment string.</p>
|
|
368
|
+
*/
|
|
369
|
+
comment: string | undefined;
|
|
370
|
+
}
|
|
371
|
+
export interface ListZonalShiftsResponse {
|
|
372
|
+
/**
|
|
373
|
+
* <p>The items in the response list.</p>
|
|
374
|
+
*/
|
|
375
|
+
items?: ZonalShiftSummary[];
|
|
376
|
+
/**
|
|
377
|
+
* <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>NextToken</code> response in the
|
|
378
|
+
* previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous
|
|
379
|
+
* call's <code>NextToken</code> response to request the next page of results.</p>
|
|
380
|
+
*/
|
|
381
|
+
nextToken?: string;
|
|
382
|
+
}
|
|
383
|
+
export interface UpdateZonalShiftRequest {
|
|
384
|
+
/**
|
|
385
|
+
* <p>The identifier of a zonal shift.</p>
|
|
386
|
+
*/
|
|
387
|
+
zonalShiftId: string | undefined;
|
|
388
|
+
/**
|
|
389
|
+
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
390
|
+
* history is maintained. A new comment overwrites any existing comment string.</p>
|
|
391
|
+
*/
|
|
392
|
+
comment?: string;
|
|
393
|
+
/**
|
|
394
|
+
* <p>The length of time that you want a zonal shift to be active, which Route 53 ARC converts to an expiry time (expiration time).
|
|
395
|
+
* Zonal shifts are temporary. You can set a zonal shift to be active initially for up to three days (72 hours).</p>
|
|
396
|
+
* <p>If you want to still keep traffic away from an Availability Zone, you can update the
|
|
397
|
+
* zonal shift and set a new expiration. You can also cancel a zonal shift, before it expires, for example, if you're ready to
|
|
398
|
+
* restore traffic to the Availability Zone.</p>
|
|
399
|
+
* <p>To set a length of time for a zonal shift to be active, specify a whole number, and then one of the following, with no space:</p>
|
|
400
|
+
* <ul>
|
|
401
|
+
* <li>
|
|
402
|
+
* <p>
|
|
403
|
+
* <b>A lowercase letter m:</b> To specify that the value is in minutes.</p>
|
|
404
|
+
* </li>
|
|
405
|
+
* <li>
|
|
406
|
+
* <p>
|
|
407
|
+
* <b>A lowercase letter h:</b> To specify that the value is in hours.</p>
|
|
408
|
+
* </li>
|
|
409
|
+
* </ul>
|
|
410
|
+
* <p>For example: <code>20h</code> means the zonal shift expires in 20 hours. <code>120m</code> means the zonal shift expires in 120 minutes (2 hours).</p>
|
|
411
|
+
*/
|
|
412
|
+
expiresIn?: string;
|
|
413
|
+
}
|
|
414
|
+
export interface StartZonalShiftRequest {
|
|
415
|
+
/**
|
|
416
|
+
* <p>The identifier for the resource to include in a zonal shift. The identifier is the Amazon Resource Name (ARN) for the resource.</p>
|
|
417
|
+
* <p>At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
|
|
418
|
+
*/
|
|
419
|
+
resourceIdentifier: string | undefined;
|
|
420
|
+
/**
|
|
421
|
+
* <p>The Availability Zone that traffic is moved away from for a resource when you start a zonal shift.
|
|
422
|
+
* Until the zonal shift expires or you cancel it, traffic for the resource is instead moved to other Availability Zones in the AWS Region.</p>
|
|
423
|
+
*/
|
|
424
|
+
awayFrom: string | undefined;
|
|
425
|
+
/**
|
|
426
|
+
* <p>The length of time that you want a zonal shift to be active, which Route 53 ARC converts to an expiry time (expiration time).
|
|
427
|
+
* Zonal shifts are temporary. You can set a zonal shift to be active initially for up to three days (72 hours).</p>
|
|
428
|
+
* <p>If you want to still keep traffic away from an Availability Zone, you can update the
|
|
429
|
+
* zonal shift and set a new expiration. You can also cancel a zonal shift, before it expires, for example, if you're ready to
|
|
430
|
+
* restore traffic to the Availability Zone.</p>
|
|
431
|
+
* <p>To set a length of time for a zonal shift to be active, specify a whole number, and then one of the following, with no space:</p>
|
|
432
|
+
*
|
|
433
|
+
* <ul>
|
|
434
|
+
* <li>
|
|
435
|
+
* <p>
|
|
436
|
+
* <b>A lowercase letter m:</b> To specify that the value is in minutes.</p>
|
|
437
|
+
* </li>
|
|
438
|
+
* <li>
|
|
439
|
+
* <p>
|
|
440
|
+
* <b>A lowercase letter h:</b> To specify that the value is in hours.</p>
|
|
441
|
+
* </li>
|
|
442
|
+
* </ul>
|
|
443
|
+
* <p>For example: <code>20h</code> means the zonal shift expires in 20 hours. <code>120m</code> means the zonal shift expires in 120 minutes (2 hours).</p>
|
|
444
|
+
*/
|
|
445
|
+
expiresIn: string | undefined;
|
|
446
|
+
/**
|
|
447
|
+
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
448
|
+
* history is maintained. A new comment overwrites any existing comment string.</p>
|
|
449
|
+
*/
|
|
450
|
+
comment: string | undefined;
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* @internal
|
|
454
|
+
*/
|
|
455
|
+
export declare const CancelZonalShiftRequestFilterSensitiveLog: (obj: CancelZonalShiftRequest) => any;
|
|
456
|
+
/**
|
|
457
|
+
* @internal
|
|
458
|
+
*/
|
|
459
|
+
export declare const ZonalShiftFilterSensitiveLog: (obj: ZonalShift) => any;
|
|
460
|
+
/**
|
|
461
|
+
* @internal
|
|
462
|
+
*/
|
|
463
|
+
export declare const GetManagedResourceRequestFilterSensitiveLog: (obj: GetManagedResourceRequest) => any;
|
|
464
|
+
/**
|
|
465
|
+
* @internal
|
|
466
|
+
*/
|
|
467
|
+
export declare const ZonalShiftInResourceFilterSensitiveLog: (obj: ZonalShiftInResource) => any;
|
|
468
|
+
/**
|
|
469
|
+
* @internal
|
|
470
|
+
*/
|
|
471
|
+
export declare const GetManagedResourceResponseFilterSensitiveLog: (obj: GetManagedResourceResponse) => any;
|
|
472
|
+
/**
|
|
473
|
+
* @internal
|
|
474
|
+
*/
|
|
475
|
+
export declare const ListManagedResourcesRequestFilterSensitiveLog: (obj: ListManagedResourcesRequest) => any;
|
|
476
|
+
/**
|
|
477
|
+
* @internal
|
|
478
|
+
*/
|
|
479
|
+
export declare const ManagedResourceSummaryFilterSensitiveLog: (obj: ManagedResourceSummary) => any;
|
|
480
|
+
/**
|
|
481
|
+
* @internal
|
|
482
|
+
*/
|
|
483
|
+
export declare const ListManagedResourcesResponseFilterSensitiveLog: (obj: ListManagedResourcesResponse) => any;
|
|
484
|
+
/**
|
|
485
|
+
* @internal
|
|
486
|
+
*/
|
|
487
|
+
export declare const ListZonalShiftsRequestFilterSensitiveLog: (obj: ListZonalShiftsRequest) => any;
|
|
488
|
+
/**
|
|
489
|
+
* @internal
|
|
490
|
+
*/
|
|
491
|
+
export declare const ZonalShiftSummaryFilterSensitiveLog: (obj: ZonalShiftSummary) => any;
|
|
492
|
+
/**
|
|
493
|
+
* @internal
|
|
494
|
+
*/
|
|
495
|
+
export declare const ListZonalShiftsResponseFilterSensitiveLog: (obj: ListZonalShiftsResponse) => any;
|
|
496
|
+
/**
|
|
497
|
+
* @internal
|
|
498
|
+
*/
|
|
499
|
+
export declare const UpdateZonalShiftRequestFilterSensitiveLog: (obj: UpdateZonalShiftRequest) => any;
|
|
500
|
+
/**
|
|
501
|
+
* @internal
|
|
502
|
+
*/
|
|
503
|
+
export declare const StartZonalShiftRequestFilterSensitiveLog: (obj: StartZonalShiftRequest) => any;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ARCZonalShift } from "../ARCZonalShift";
|
|
3
|
+
import { ARCZonalShiftClient } from "../ARCZonalShiftClient";
|
|
4
|
+
export interface ARCZonalShiftPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: ARCZonalShift | ARCZonalShiftClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput } from "../commands/ListManagedResourcesCommand";
|
|
3
|
+
import { ARCZonalShiftPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListManagedResources(config: ARCZonalShiftPaginationConfiguration, input: ListManagedResourcesCommandInput, ...additionalArguments: any): Paginator<ListManagedResourcesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput } from "../commands/ListZonalShiftsCommand";
|
|
3
|
+
import { ARCZonalShiftPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListZonalShifts(config: ARCZonalShiftPaginationConfiguration, input: ListZonalShiftsCommandInput, ...additionalArguments: any): Paginator<ListZonalShiftsCommandOutput>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput } from "../commands/CancelZonalShiftCommand";
|
|
4
|
+
import { GetManagedResourceCommandInput, GetManagedResourceCommandOutput } from "../commands/GetManagedResourceCommand";
|
|
5
|
+
import { ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput } from "../commands/ListManagedResourcesCommand";
|
|
6
|
+
import { ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput } from "../commands/ListZonalShiftsCommand";
|
|
7
|
+
import { StartZonalShiftCommandInput, StartZonalShiftCommandOutput } from "../commands/StartZonalShiftCommand";
|
|
8
|
+
import { UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput } from "../commands/UpdateZonalShiftCommand";
|
|
9
|
+
export declare const serializeAws_restJson1CancelZonalShiftCommand: (input: CancelZonalShiftCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1GetManagedResourceCommand: (input: GetManagedResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const serializeAws_restJson1ListManagedResourcesCommand: (input: ListManagedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_restJson1ListZonalShiftsCommand: (input: ListZonalShiftsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const serializeAws_restJson1StartZonalShiftCommand: (input: StartZonalShiftCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
+
export declare const serializeAws_restJson1UpdateZonalShiftCommand: (input: UpdateZonalShiftCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
+
export declare const deserializeAws_restJson1CancelZonalShiftCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelZonalShiftCommandOutput>;
|
|
16
|
+
export declare const deserializeAws_restJson1GetManagedResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetManagedResourceCommandOutput>;
|
|
17
|
+
export declare const deserializeAws_restJson1ListManagedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedResourcesCommandOutput>;
|
|
18
|
+
export declare const deserializeAws_restJson1ListZonalShiftsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListZonalShiftsCommandOutput>;
|
|
19
|
+
export declare const deserializeAws_restJson1StartZonalShiftCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartZonalShiftCommandOutput>;
|
|
20
|
+
export declare const deserializeAws_restJson1UpdateZonalShiftCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateZonalShiftCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
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
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|