@aws-sdk/client-snowball 3.686.0 → 3.691.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/dist-types/models/models_0.d.ts +255 -255
- package/dist-types/ts3.4/models/models_0.d.ts +255 -255
- package/package.json +7 -7
|
@@ -6,21 +6,21 @@ export declare const AddressType: {
|
|
|
6
6
|
};
|
|
7
7
|
export type AddressType = (typeof AddressType)[keyof typeof AddressType];
|
|
8
8
|
export interface Address {
|
|
9
|
-
AddressId?: string;
|
|
10
|
-
Name?: string;
|
|
11
|
-
Company?: string;
|
|
12
|
-
Street1?: string;
|
|
13
|
-
Street2?: string;
|
|
14
|
-
Street3?: string;
|
|
15
|
-
City?: string;
|
|
16
|
-
StateOrProvince?: string;
|
|
17
|
-
PrefectureOrDistrict?: string;
|
|
18
|
-
Landmark?: string;
|
|
19
|
-
Country?: string;
|
|
20
|
-
PostalCode?: string;
|
|
21
|
-
PhoneNumber?: string;
|
|
22
|
-
IsRestricted?: boolean;
|
|
23
|
-
Type?: AddressType;
|
|
9
|
+
AddressId?: string | undefined;
|
|
10
|
+
Name?: string | undefined;
|
|
11
|
+
Company?: string | undefined;
|
|
12
|
+
Street1?: string | undefined;
|
|
13
|
+
Street2?: string | undefined;
|
|
14
|
+
Street3?: string | undefined;
|
|
15
|
+
City?: string | undefined;
|
|
16
|
+
StateOrProvince?: string | undefined;
|
|
17
|
+
PrefectureOrDistrict?: string | undefined;
|
|
18
|
+
Landmark?: string | undefined;
|
|
19
|
+
Country?: string | undefined;
|
|
20
|
+
PostalCode?: string | undefined;
|
|
21
|
+
PhoneNumber?: string | undefined;
|
|
22
|
+
IsRestricted?: boolean | undefined;
|
|
23
|
+
Type?: AddressType | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface CancelClusterRequest {
|
|
26
26
|
ClusterId: string | undefined;
|
|
@@ -29,7 +29,7 @@ export interface CancelClusterResult {}
|
|
|
29
29
|
export declare class InvalidJobStateException extends __BaseException {
|
|
30
30
|
readonly name: "InvalidJobStateException";
|
|
31
31
|
readonly $fault: "client";
|
|
32
|
-
Message?: string;
|
|
32
|
+
Message?: string | undefined;
|
|
33
33
|
constructor(
|
|
34
34
|
opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>
|
|
35
35
|
);
|
|
@@ -37,8 +37,8 @@ export declare class InvalidJobStateException extends __BaseException {
|
|
|
37
37
|
export declare class InvalidResourceException extends __BaseException {
|
|
38
38
|
readonly name: "InvalidResourceException";
|
|
39
39
|
readonly $fault: "client";
|
|
40
|
-
Message?: string;
|
|
41
|
-
ResourceType?: string;
|
|
40
|
+
Message?: string | undefined;
|
|
41
|
+
ResourceType?: string | undefined;
|
|
42
42
|
constructor(
|
|
43
43
|
opts: __ExceptionOptionType<InvalidResourceException, __BaseException>
|
|
44
44
|
);
|
|
@@ -46,7 +46,7 @@ export declare class InvalidResourceException extends __BaseException {
|
|
|
46
46
|
export declare class KMSRequestFailedException extends __BaseException {
|
|
47
47
|
readonly name: "KMSRequestFailedException";
|
|
48
48
|
readonly $fault: "client";
|
|
49
|
-
Message?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
50
|
constructor(
|
|
51
51
|
opts: __ExceptionOptionType<KMSRequestFailedException, __BaseException>
|
|
52
52
|
);
|
|
@@ -59,12 +59,12 @@ export interface CreateAddressRequest {
|
|
|
59
59
|
Address: Address | undefined;
|
|
60
60
|
}
|
|
61
61
|
export interface CreateAddressResult {
|
|
62
|
-
AddressId?: string;
|
|
62
|
+
AddressId?: string | undefined;
|
|
63
63
|
}
|
|
64
64
|
export declare class InvalidAddressException extends __BaseException {
|
|
65
65
|
readonly name: "InvalidAddressException";
|
|
66
66
|
readonly $fault: "client";
|
|
67
|
-
Message?: string;
|
|
67
|
+
Message?: string | undefined;
|
|
68
68
|
constructor(
|
|
69
69
|
opts: __ExceptionOptionType<InvalidAddressException, __BaseException>
|
|
70
70
|
);
|
|
@@ -72,7 +72,7 @@ export declare class InvalidAddressException extends __BaseException {
|
|
|
72
72
|
export declare class UnsupportedAddressException extends __BaseException {
|
|
73
73
|
readonly name: "UnsupportedAddressException";
|
|
74
74
|
readonly $fault: "client";
|
|
75
|
-
Message?: string;
|
|
75
|
+
Message?: string | undefined;
|
|
76
76
|
constructor(
|
|
77
77
|
opts: __ExceptionOptionType<UnsupportedAddressException, __BaseException>
|
|
78
78
|
);
|
|
@@ -100,38 +100,38 @@ export declare const JobState: {
|
|
|
100
100
|
};
|
|
101
101
|
export type JobState = (typeof JobState)[keyof typeof JobState];
|
|
102
102
|
export interface Notification {
|
|
103
|
-
SnsTopicARN?: string;
|
|
104
|
-
JobStatesToNotify?: JobState[];
|
|
105
|
-
NotifyAll?: boolean;
|
|
106
|
-
DevicePickupSnsTopicARN?: string;
|
|
103
|
+
SnsTopicARN?: string | undefined;
|
|
104
|
+
JobStatesToNotify?: JobState[] | undefined;
|
|
105
|
+
NotifyAll?: boolean | undefined;
|
|
106
|
+
DevicePickupSnsTopicARN?: string | undefined;
|
|
107
107
|
}
|
|
108
108
|
export interface EKSOnDeviceServiceConfiguration {
|
|
109
|
-
KubernetesVersion?: string;
|
|
110
|
-
EKSAnywhereVersion?: string;
|
|
109
|
+
KubernetesVersion?: string | undefined;
|
|
110
|
+
EKSAnywhereVersion?: string | undefined;
|
|
111
111
|
}
|
|
112
112
|
export declare const StorageUnit: {
|
|
113
113
|
readonly TB: "TB";
|
|
114
114
|
};
|
|
115
115
|
export type StorageUnit = (typeof StorageUnit)[keyof typeof StorageUnit];
|
|
116
116
|
export interface NFSOnDeviceServiceConfiguration {
|
|
117
|
-
StorageLimit?: number;
|
|
118
|
-
StorageUnit?: StorageUnit;
|
|
117
|
+
StorageLimit?: number | undefined;
|
|
118
|
+
StorageUnit?: StorageUnit | undefined;
|
|
119
119
|
}
|
|
120
120
|
export interface S3OnDeviceServiceConfiguration {
|
|
121
|
-
StorageLimit?: number;
|
|
122
|
-
StorageUnit?: StorageUnit;
|
|
123
|
-
ServiceSize?: number;
|
|
124
|
-
FaultTolerance?: number;
|
|
121
|
+
StorageLimit?: number | undefined;
|
|
122
|
+
StorageUnit?: StorageUnit | undefined;
|
|
123
|
+
ServiceSize?: number | undefined;
|
|
124
|
+
FaultTolerance?: number | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface TGWOnDeviceServiceConfiguration {
|
|
127
|
-
StorageLimit?: number;
|
|
128
|
-
StorageUnit?: StorageUnit;
|
|
127
|
+
StorageLimit?: number | undefined;
|
|
128
|
+
StorageUnit?: StorageUnit | undefined;
|
|
129
129
|
}
|
|
130
130
|
export interface OnDeviceServiceConfiguration {
|
|
131
|
-
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
|
|
132
|
-
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
|
|
133
|
-
EKSOnDeviceService?: EKSOnDeviceServiceConfiguration;
|
|
134
|
-
S3OnDeviceService?: S3OnDeviceServiceConfiguration;
|
|
131
|
+
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration | undefined;
|
|
132
|
+
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration | undefined;
|
|
133
|
+
EKSOnDeviceService?: EKSOnDeviceServiceConfiguration | undefined;
|
|
134
|
+
S3OnDeviceService?: S3OnDeviceServiceConfiguration | undefined;
|
|
135
135
|
}
|
|
136
136
|
export declare const RemoteManagement: {
|
|
137
137
|
readonly INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART";
|
|
@@ -142,18 +142,18 @@ export type RemoteManagement =
|
|
|
142
142
|
(typeof RemoteManagement)[keyof typeof RemoteManagement];
|
|
143
143
|
export interface Ec2AmiResource {
|
|
144
144
|
AmiId: string | undefined;
|
|
145
|
-
SnowballAmiId?: string;
|
|
145
|
+
SnowballAmiId?: string | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface EventTriggerDefinition {
|
|
148
|
-
EventResourceARN?: string;
|
|
148
|
+
EventResourceARN?: string | undefined;
|
|
149
149
|
}
|
|
150
150
|
export interface LambdaResource {
|
|
151
|
-
LambdaArn?: string;
|
|
152
|
-
EventTriggers?: EventTriggerDefinition[];
|
|
151
|
+
LambdaArn?: string | undefined;
|
|
152
|
+
EventTriggers?: EventTriggerDefinition[] | undefined;
|
|
153
153
|
}
|
|
154
154
|
export interface KeyRange {
|
|
155
|
-
BeginMarker?: string;
|
|
156
|
-
EndMarker?: string;
|
|
155
|
+
BeginMarker?: string | undefined;
|
|
156
|
+
EndMarker?: string | undefined;
|
|
157
157
|
}
|
|
158
158
|
export declare const DeviceServiceName: {
|
|
159
159
|
readonly NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE";
|
|
@@ -169,18 +169,18 @@ export declare const TransferOption: {
|
|
|
169
169
|
export type TransferOption =
|
|
170
170
|
(typeof TransferOption)[keyof typeof TransferOption];
|
|
171
171
|
export interface TargetOnDeviceService {
|
|
172
|
-
ServiceName?: DeviceServiceName;
|
|
173
|
-
TransferOption?: TransferOption;
|
|
172
|
+
ServiceName?: DeviceServiceName | undefined;
|
|
173
|
+
TransferOption?: TransferOption | undefined;
|
|
174
174
|
}
|
|
175
175
|
export interface S3Resource {
|
|
176
|
-
BucketArn?: string;
|
|
177
|
-
KeyRange?: KeyRange;
|
|
178
|
-
TargetOnDeviceServices?: TargetOnDeviceService[];
|
|
176
|
+
BucketArn?: string | undefined;
|
|
177
|
+
KeyRange?: KeyRange | undefined;
|
|
178
|
+
TargetOnDeviceServices?: TargetOnDeviceService[] | undefined;
|
|
179
179
|
}
|
|
180
180
|
export interface JobResource {
|
|
181
|
-
S3Resources?: S3Resource[];
|
|
182
|
-
LambdaResources?: LambdaResource[];
|
|
183
|
-
Ec2AmiResources?: Ec2AmiResource[];
|
|
181
|
+
S3Resources?: S3Resource[] | undefined;
|
|
182
|
+
LambdaResources?: LambdaResource[] | undefined;
|
|
183
|
+
Ec2AmiResources?: Ec2AmiResource[] | undefined;
|
|
184
184
|
}
|
|
185
185
|
export declare const ShippingOption: {
|
|
186
186
|
readonly EXPRESS: "EXPRESS";
|
|
@@ -219,47 +219,47 @@ export declare const SnowballType: {
|
|
|
219
219
|
};
|
|
220
220
|
export type SnowballType = (typeof SnowballType)[keyof typeof SnowballType];
|
|
221
221
|
export interface INDTaxDocuments {
|
|
222
|
-
GSTIN?: string;
|
|
222
|
+
GSTIN?: string | undefined;
|
|
223
223
|
}
|
|
224
224
|
export interface TaxDocuments {
|
|
225
|
-
IND?: INDTaxDocuments;
|
|
225
|
+
IND?: INDTaxDocuments | undefined;
|
|
226
226
|
}
|
|
227
227
|
export interface CreateClusterRequest {
|
|
228
228
|
JobType: JobType | undefined;
|
|
229
|
-
Resources?: JobResource;
|
|
230
|
-
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
231
|
-
Description?: string;
|
|
229
|
+
Resources?: JobResource | undefined;
|
|
230
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration | undefined;
|
|
231
|
+
Description?: string | undefined;
|
|
232
232
|
AddressId: string | undefined;
|
|
233
|
-
KmsKeyARN?: string;
|
|
234
|
-
RoleARN?: string;
|
|
233
|
+
KmsKeyARN?: string | undefined;
|
|
234
|
+
RoleARN?: string | undefined;
|
|
235
235
|
SnowballType: SnowballType | undefined;
|
|
236
236
|
ShippingOption: ShippingOption | undefined;
|
|
237
|
-
Notification?: Notification;
|
|
238
|
-
ForwardingAddressId?: string;
|
|
239
|
-
TaxDocuments?: TaxDocuments;
|
|
240
|
-
RemoteManagement?: RemoteManagement;
|
|
241
|
-
InitialClusterSize?: number;
|
|
242
|
-
ForceCreateJobs?: boolean;
|
|
243
|
-
LongTermPricingIds?: string[];
|
|
244
|
-
SnowballCapacityPreference?: SnowballCapacity;
|
|
237
|
+
Notification?: Notification | undefined;
|
|
238
|
+
ForwardingAddressId?: string | undefined;
|
|
239
|
+
TaxDocuments?: TaxDocuments | undefined;
|
|
240
|
+
RemoteManagement?: RemoteManagement | undefined;
|
|
241
|
+
InitialClusterSize?: number | undefined;
|
|
242
|
+
ForceCreateJobs?: boolean | undefined;
|
|
243
|
+
LongTermPricingIds?: string[] | undefined;
|
|
244
|
+
SnowballCapacityPreference?: SnowballCapacity | undefined;
|
|
245
245
|
}
|
|
246
246
|
export interface JobListEntry {
|
|
247
|
-
JobId?: string;
|
|
248
|
-
JobState?: JobState;
|
|
249
|
-
IsMaster?: boolean;
|
|
250
|
-
JobType?: JobType;
|
|
251
|
-
SnowballType?: SnowballType;
|
|
252
|
-
CreationDate?: Date;
|
|
253
|
-
Description?: string;
|
|
247
|
+
JobId?: string | undefined;
|
|
248
|
+
JobState?: JobState | undefined;
|
|
249
|
+
IsMaster?: boolean | undefined;
|
|
250
|
+
JobType?: JobType | undefined;
|
|
251
|
+
SnowballType?: SnowballType | undefined;
|
|
252
|
+
CreationDate?: Date | undefined;
|
|
253
|
+
Description?: string | undefined;
|
|
254
254
|
}
|
|
255
255
|
export interface CreateClusterResult {
|
|
256
|
-
ClusterId?: string;
|
|
257
|
-
JobListEntries?: JobListEntry[];
|
|
256
|
+
ClusterId?: string | undefined;
|
|
257
|
+
JobListEntries?: JobListEntry[] | undefined;
|
|
258
258
|
}
|
|
259
259
|
export declare class Ec2RequestFailedException extends __BaseException {
|
|
260
260
|
readonly name: "Ec2RequestFailedException";
|
|
261
261
|
readonly $fault: "client";
|
|
262
|
-
Message?: string;
|
|
262
|
+
Message?: string | undefined;
|
|
263
263
|
constructor(
|
|
264
264
|
opts: __ExceptionOptionType<Ec2RequestFailedException, __BaseException>
|
|
265
265
|
);
|
|
@@ -267,7 +267,7 @@ export declare class Ec2RequestFailedException extends __BaseException {
|
|
|
267
267
|
export declare class InvalidInputCombinationException extends __BaseException {
|
|
268
268
|
readonly name: "InvalidInputCombinationException";
|
|
269
269
|
readonly $fault: "client";
|
|
270
|
-
Message?: string;
|
|
270
|
+
Message?: string | undefined;
|
|
271
271
|
constructor(
|
|
272
272
|
opts: __ExceptionOptionType<
|
|
273
273
|
InvalidInputCombinationException,
|
|
@@ -278,19 +278,19 @@ export declare class InvalidInputCombinationException extends __BaseException {
|
|
|
278
278
|
export declare class ClusterLimitExceededException extends __BaseException {
|
|
279
279
|
readonly name: "ClusterLimitExceededException";
|
|
280
280
|
readonly $fault: "client";
|
|
281
|
-
Message?: string;
|
|
281
|
+
Message?: string | undefined;
|
|
282
282
|
constructor(
|
|
283
283
|
opts: __ExceptionOptionType<ClusterLimitExceededException, __BaseException>
|
|
284
284
|
);
|
|
285
285
|
}
|
|
286
286
|
export interface WirelessConnection {
|
|
287
|
-
IsWifiEnabled?: boolean;
|
|
287
|
+
IsWifiEnabled?: boolean | undefined;
|
|
288
288
|
}
|
|
289
289
|
export interface SnowconeDeviceConfiguration {
|
|
290
|
-
WirelessConnection?: WirelessConnection;
|
|
290
|
+
WirelessConnection?: WirelessConnection | undefined;
|
|
291
291
|
}
|
|
292
292
|
export interface DeviceConfiguration {
|
|
293
|
-
SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
|
|
293
|
+
SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration | undefined;
|
|
294
294
|
}
|
|
295
295
|
export declare const ImpactLevel: {
|
|
296
296
|
readonly IL2: "IL2";
|
|
@@ -301,37 +301,37 @@ export declare const ImpactLevel: {
|
|
|
301
301
|
};
|
|
302
302
|
export type ImpactLevel = (typeof ImpactLevel)[keyof typeof ImpactLevel];
|
|
303
303
|
export interface PickupDetails {
|
|
304
|
-
Name?: string;
|
|
305
|
-
PhoneNumber?: string;
|
|
306
|
-
Email?: string;
|
|
307
|
-
IdentificationNumber?: string;
|
|
308
|
-
IdentificationExpirationDate?: Date;
|
|
309
|
-
IdentificationIssuingOrg?: string;
|
|
310
|
-
DevicePickupId?: string;
|
|
304
|
+
Name?: string | undefined;
|
|
305
|
+
PhoneNumber?: string | undefined;
|
|
306
|
+
Email?: string | undefined;
|
|
307
|
+
IdentificationNumber?: string | undefined;
|
|
308
|
+
IdentificationExpirationDate?: Date | undefined;
|
|
309
|
+
IdentificationIssuingOrg?: string | undefined;
|
|
310
|
+
DevicePickupId?: string | undefined;
|
|
311
311
|
}
|
|
312
312
|
export interface CreateJobRequest {
|
|
313
|
-
JobType?: JobType;
|
|
314
|
-
Resources?: JobResource;
|
|
315
|
-
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
316
|
-
Description?: string;
|
|
317
|
-
AddressId?: string;
|
|
318
|
-
KmsKeyARN?: string;
|
|
319
|
-
RoleARN?: string;
|
|
320
|
-
SnowballCapacityPreference?: SnowballCapacity;
|
|
321
|
-
ShippingOption?: ShippingOption;
|
|
322
|
-
Notification?: Notification;
|
|
323
|
-
ClusterId?: string;
|
|
324
|
-
SnowballType?: SnowballType;
|
|
325
|
-
ForwardingAddressId?: string;
|
|
326
|
-
TaxDocuments?: TaxDocuments;
|
|
327
|
-
DeviceConfiguration?: DeviceConfiguration;
|
|
328
|
-
RemoteManagement?: RemoteManagement;
|
|
329
|
-
LongTermPricingId?: string;
|
|
330
|
-
ImpactLevel?: ImpactLevel;
|
|
331
|
-
PickupDetails?: PickupDetails;
|
|
313
|
+
JobType?: JobType | undefined;
|
|
314
|
+
Resources?: JobResource | undefined;
|
|
315
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration | undefined;
|
|
316
|
+
Description?: string | undefined;
|
|
317
|
+
AddressId?: string | undefined;
|
|
318
|
+
KmsKeyARN?: string | undefined;
|
|
319
|
+
RoleARN?: string | undefined;
|
|
320
|
+
SnowballCapacityPreference?: SnowballCapacity | undefined;
|
|
321
|
+
ShippingOption?: ShippingOption | undefined;
|
|
322
|
+
Notification?: Notification | undefined;
|
|
323
|
+
ClusterId?: string | undefined;
|
|
324
|
+
SnowballType?: SnowballType | undefined;
|
|
325
|
+
ForwardingAddressId?: string | undefined;
|
|
326
|
+
TaxDocuments?: TaxDocuments | undefined;
|
|
327
|
+
DeviceConfiguration?: DeviceConfiguration | undefined;
|
|
328
|
+
RemoteManagement?: RemoteManagement | undefined;
|
|
329
|
+
LongTermPricingId?: string | undefined;
|
|
330
|
+
ImpactLevel?: ImpactLevel | undefined;
|
|
331
|
+
PickupDetails?: PickupDetails | undefined;
|
|
332
332
|
}
|
|
333
333
|
export interface CreateJobResult {
|
|
334
|
-
JobId?: string;
|
|
334
|
+
JobId?: string | undefined;
|
|
335
335
|
}
|
|
336
336
|
export declare const LongTermPricingType: {
|
|
337
337
|
readonly ONE_MONTH: "OneMonth";
|
|
@@ -342,22 +342,22 @@ export type LongTermPricingType =
|
|
|
342
342
|
(typeof LongTermPricingType)[keyof typeof LongTermPricingType];
|
|
343
343
|
export interface CreateLongTermPricingRequest {
|
|
344
344
|
LongTermPricingType: LongTermPricingType | undefined;
|
|
345
|
-
IsLongTermPricingAutoRenew?: boolean;
|
|
345
|
+
IsLongTermPricingAutoRenew?: boolean | undefined;
|
|
346
346
|
SnowballType: SnowballType | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface CreateLongTermPricingResult {
|
|
349
|
-
LongTermPricingId?: string;
|
|
349
|
+
LongTermPricingId?: string | undefined;
|
|
350
350
|
}
|
|
351
351
|
export declare class ConflictException extends __BaseException {
|
|
352
352
|
readonly name: "ConflictException";
|
|
353
353
|
readonly $fault: "client";
|
|
354
|
-
ConflictResource?: string;
|
|
355
|
-
Message?: string;
|
|
354
|
+
ConflictResource?: string | undefined;
|
|
355
|
+
Message?: string | undefined;
|
|
356
356
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
357
357
|
}
|
|
358
358
|
export interface CreateReturnShippingLabelRequest {
|
|
359
359
|
JobId: string | undefined;
|
|
360
|
-
ShippingOption?: ShippingOption;
|
|
360
|
+
ShippingOption?: ShippingOption | undefined;
|
|
361
361
|
}
|
|
362
362
|
export declare const ShippingLabelStatus: {
|
|
363
363
|
readonly FAILED: "Failed";
|
|
@@ -368,12 +368,12 @@ export declare const ShippingLabelStatus: {
|
|
|
368
368
|
export type ShippingLabelStatus =
|
|
369
369
|
(typeof ShippingLabelStatus)[keyof typeof ShippingLabelStatus];
|
|
370
370
|
export interface CreateReturnShippingLabelResult {
|
|
371
|
-
Status?: ShippingLabelStatus;
|
|
371
|
+
Status?: ShippingLabelStatus | undefined;
|
|
372
372
|
}
|
|
373
373
|
export declare class ReturnShippingLabelAlreadyExistsException extends __BaseException {
|
|
374
374
|
readonly name: "ReturnShippingLabelAlreadyExistsException";
|
|
375
375
|
readonly $fault: "client";
|
|
376
|
-
Message?: string;
|
|
376
|
+
Message?: string | undefined;
|
|
377
377
|
constructor(
|
|
378
378
|
opts: __ExceptionOptionType<
|
|
379
379
|
ReturnShippingLabelAlreadyExistsException,
|
|
@@ -385,20 +385,20 @@ export interface DescribeAddressRequest {
|
|
|
385
385
|
AddressId: string | undefined;
|
|
386
386
|
}
|
|
387
387
|
export interface DescribeAddressResult {
|
|
388
|
-
Address?: Address;
|
|
388
|
+
Address?: Address | undefined;
|
|
389
389
|
}
|
|
390
390
|
export interface DescribeAddressesRequest {
|
|
391
|
-
MaxResults?: number;
|
|
392
|
-
NextToken?: string;
|
|
391
|
+
MaxResults?: number | undefined;
|
|
392
|
+
NextToken?: string | undefined;
|
|
393
393
|
}
|
|
394
394
|
export interface DescribeAddressesResult {
|
|
395
|
-
Addresses?: Address[];
|
|
396
|
-
NextToken?: string;
|
|
395
|
+
Addresses?: Address[] | undefined;
|
|
396
|
+
NextToken?: string | undefined;
|
|
397
397
|
}
|
|
398
398
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
399
399
|
readonly name: "InvalidNextTokenException";
|
|
400
400
|
readonly $fault: "client";
|
|
401
|
-
Message?: string;
|
|
401
|
+
Message?: string | undefined;
|
|
402
402
|
constructor(
|
|
403
403
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
404
404
|
);
|
|
@@ -415,180 +415,180 @@ export declare const ClusterState: {
|
|
|
415
415
|
};
|
|
416
416
|
export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
|
|
417
417
|
export interface ClusterMetadata {
|
|
418
|
-
ClusterId?: string;
|
|
419
|
-
Description?: string;
|
|
420
|
-
KmsKeyARN?: string;
|
|
421
|
-
RoleARN?: string;
|
|
422
|
-
ClusterState?: ClusterState;
|
|
423
|
-
JobType?: JobType;
|
|
424
|
-
SnowballType?: SnowballType;
|
|
425
|
-
CreationDate?: Date;
|
|
426
|
-
Resources?: JobResource;
|
|
427
|
-
AddressId?: string;
|
|
428
|
-
ShippingOption?: ShippingOption;
|
|
429
|
-
Notification?: Notification;
|
|
430
|
-
ForwardingAddressId?: string;
|
|
431
|
-
TaxDocuments?: TaxDocuments;
|
|
432
|
-
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
418
|
+
ClusterId?: string | undefined;
|
|
419
|
+
Description?: string | undefined;
|
|
420
|
+
KmsKeyARN?: string | undefined;
|
|
421
|
+
RoleARN?: string | undefined;
|
|
422
|
+
ClusterState?: ClusterState | undefined;
|
|
423
|
+
JobType?: JobType | undefined;
|
|
424
|
+
SnowballType?: SnowballType | undefined;
|
|
425
|
+
CreationDate?: Date | undefined;
|
|
426
|
+
Resources?: JobResource | undefined;
|
|
427
|
+
AddressId?: string | undefined;
|
|
428
|
+
ShippingOption?: ShippingOption | undefined;
|
|
429
|
+
Notification?: Notification | undefined;
|
|
430
|
+
ForwardingAddressId?: string | undefined;
|
|
431
|
+
TaxDocuments?: TaxDocuments | undefined;
|
|
432
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration | undefined;
|
|
433
433
|
}
|
|
434
434
|
export interface DescribeClusterResult {
|
|
435
|
-
ClusterMetadata?: ClusterMetadata;
|
|
435
|
+
ClusterMetadata?: ClusterMetadata | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface DescribeJobRequest {
|
|
438
438
|
JobId: string | undefined;
|
|
439
439
|
}
|
|
440
440
|
export interface DataTransfer {
|
|
441
|
-
BytesTransferred?: number;
|
|
442
|
-
ObjectsTransferred?: number;
|
|
443
|
-
TotalBytes?: number;
|
|
444
|
-
TotalObjects?: number;
|
|
441
|
+
BytesTransferred?: number | undefined;
|
|
442
|
+
ObjectsTransferred?: number | undefined;
|
|
443
|
+
TotalBytes?: number | undefined;
|
|
444
|
+
TotalObjects?: number | undefined;
|
|
445
445
|
}
|
|
446
446
|
export interface JobLogs {
|
|
447
|
-
JobCompletionReportURI?: string;
|
|
448
|
-
JobSuccessLogURI?: string;
|
|
449
|
-
JobFailureLogURI?: string;
|
|
447
|
+
JobCompletionReportURI?: string | undefined;
|
|
448
|
+
JobSuccessLogURI?: string | undefined;
|
|
449
|
+
JobFailureLogURI?: string | undefined;
|
|
450
450
|
}
|
|
451
451
|
export interface Shipment {
|
|
452
|
-
Status?: string;
|
|
453
|
-
TrackingNumber?: string;
|
|
452
|
+
Status?: string | undefined;
|
|
453
|
+
TrackingNumber?: string | undefined;
|
|
454
454
|
}
|
|
455
455
|
export interface ShippingDetails {
|
|
456
|
-
ShippingOption?: ShippingOption;
|
|
457
|
-
InboundShipment?: Shipment;
|
|
458
|
-
OutboundShipment?: Shipment;
|
|
456
|
+
ShippingOption?: ShippingOption | undefined;
|
|
457
|
+
InboundShipment?: Shipment | undefined;
|
|
458
|
+
OutboundShipment?: Shipment | undefined;
|
|
459
459
|
}
|
|
460
460
|
export interface JobMetadata {
|
|
461
|
-
JobId?: string;
|
|
462
|
-
JobState?: JobState;
|
|
463
|
-
JobType?: JobType;
|
|
464
|
-
SnowballType?: SnowballType;
|
|
465
|
-
CreationDate?: Date;
|
|
466
|
-
Resources?: JobResource;
|
|
467
|
-
Description?: string;
|
|
468
|
-
KmsKeyARN?: string;
|
|
469
|
-
RoleARN?: string;
|
|
470
|
-
AddressId?: string;
|
|
471
|
-
ShippingDetails?: ShippingDetails;
|
|
472
|
-
SnowballCapacityPreference?: SnowballCapacity;
|
|
473
|
-
Notification?: Notification;
|
|
474
|
-
DataTransferProgress?: DataTransfer;
|
|
475
|
-
JobLogInfo?: JobLogs;
|
|
476
|
-
ClusterId?: string;
|
|
477
|
-
ForwardingAddressId?: string;
|
|
478
|
-
TaxDocuments?: TaxDocuments;
|
|
479
|
-
DeviceConfiguration?: DeviceConfiguration;
|
|
480
|
-
RemoteManagement?: RemoteManagement;
|
|
481
|
-
LongTermPricingId?: string;
|
|
482
|
-
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
483
|
-
ImpactLevel?: ImpactLevel;
|
|
484
|
-
PickupDetails?: PickupDetails;
|
|
485
|
-
SnowballId?: string;
|
|
461
|
+
JobId?: string | undefined;
|
|
462
|
+
JobState?: JobState | undefined;
|
|
463
|
+
JobType?: JobType | undefined;
|
|
464
|
+
SnowballType?: SnowballType | undefined;
|
|
465
|
+
CreationDate?: Date | undefined;
|
|
466
|
+
Resources?: JobResource | undefined;
|
|
467
|
+
Description?: string | undefined;
|
|
468
|
+
KmsKeyARN?: string | undefined;
|
|
469
|
+
RoleARN?: string | undefined;
|
|
470
|
+
AddressId?: string | undefined;
|
|
471
|
+
ShippingDetails?: ShippingDetails | undefined;
|
|
472
|
+
SnowballCapacityPreference?: SnowballCapacity | undefined;
|
|
473
|
+
Notification?: Notification | undefined;
|
|
474
|
+
DataTransferProgress?: DataTransfer | undefined;
|
|
475
|
+
JobLogInfo?: JobLogs | undefined;
|
|
476
|
+
ClusterId?: string | undefined;
|
|
477
|
+
ForwardingAddressId?: string | undefined;
|
|
478
|
+
TaxDocuments?: TaxDocuments | undefined;
|
|
479
|
+
DeviceConfiguration?: DeviceConfiguration | undefined;
|
|
480
|
+
RemoteManagement?: RemoteManagement | undefined;
|
|
481
|
+
LongTermPricingId?: string | undefined;
|
|
482
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration | undefined;
|
|
483
|
+
ImpactLevel?: ImpactLevel | undefined;
|
|
484
|
+
PickupDetails?: PickupDetails | undefined;
|
|
485
|
+
SnowballId?: string | undefined;
|
|
486
486
|
}
|
|
487
487
|
export interface DescribeJobResult {
|
|
488
|
-
JobMetadata?: JobMetadata;
|
|
489
|
-
SubJobMetadata?: JobMetadata[];
|
|
488
|
+
JobMetadata?: JobMetadata | undefined;
|
|
489
|
+
SubJobMetadata?: JobMetadata[] | undefined;
|
|
490
490
|
}
|
|
491
491
|
export interface DescribeReturnShippingLabelRequest {
|
|
492
492
|
JobId: string | undefined;
|
|
493
493
|
}
|
|
494
494
|
export interface DescribeReturnShippingLabelResult {
|
|
495
|
-
Status?: ShippingLabelStatus;
|
|
496
|
-
ExpirationDate?: Date;
|
|
497
|
-
ReturnShippingLabelURI?: string;
|
|
495
|
+
Status?: ShippingLabelStatus | undefined;
|
|
496
|
+
ExpirationDate?: Date | undefined;
|
|
497
|
+
ReturnShippingLabelURI?: string | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface GetJobManifestRequest {
|
|
500
500
|
JobId: string | undefined;
|
|
501
501
|
}
|
|
502
502
|
export interface GetJobManifestResult {
|
|
503
|
-
ManifestURI?: string;
|
|
503
|
+
ManifestURI?: string | undefined;
|
|
504
504
|
}
|
|
505
505
|
export interface GetJobUnlockCodeRequest {
|
|
506
506
|
JobId: string | undefined;
|
|
507
507
|
}
|
|
508
508
|
export interface GetJobUnlockCodeResult {
|
|
509
|
-
UnlockCode?: string;
|
|
509
|
+
UnlockCode?: string | undefined;
|
|
510
510
|
}
|
|
511
511
|
export interface GetSnowballUsageRequest {}
|
|
512
512
|
export interface GetSnowballUsageResult {
|
|
513
|
-
SnowballLimit?: number;
|
|
514
|
-
SnowballsInUse?: number;
|
|
513
|
+
SnowballLimit?: number | undefined;
|
|
514
|
+
SnowballsInUse?: number | undefined;
|
|
515
515
|
}
|
|
516
516
|
export interface GetSoftwareUpdatesRequest {
|
|
517
517
|
JobId: string | undefined;
|
|
518
518
|
}
|
|
519
519
|
export interface GetSoftwareUpdatesResult {
|
|
520
|
-
UpdatesURI?: string;
|
|
520
|
+
UpdatesURI?: string | undefined;
|
|
521
521
|
}
|
|
522
522
|
export interface ListClusterJobsRequest {
|
|
523
523
|
ClusterId: string | undefined;
|
|
524
|
-
MaxResults?: number;
|
|
525
|
-
NextToken?: string;
|
|
524
|
+
MaxResults?: number | undefined;
|
|
525
|
+
NextToken?: string | undefined;
|
|
526
526
|
}
|
|
527
527
|
export interface ListClusterJobsResult {
|
|
528
|
-
JobListEntries?: JobListEntry[];
|
|
529
|
-
NextToken?: string;
|
|
528
|
+
JobListEntries?: JobListEntry[] | undefined;
|
|
529
|
+
NextToken?: string | undefined;
|
|
530
530
|
}
|
|
531
531
|
export interface ListClustersRequest {
|
|
532
|
-
MaxResults?: number;
|
|
533
|
-
NextToken?: string;
|
|
532
|
+
MaxResults?: number | undefined;
|
|
533
|
+
NextToken?: string | undefined;
|
|
534
534
|
}
|
|
535
535
|
export interface ClusterListEntry {
|
|
536
|
-
ClusterId?: string;
|
|
537
|
-
ClusterState?: ClusterState;
|
|
538
|
-
CreationDate?: Date;
|
|
539
|
-
Description?: string;
|
|
536
|
+
ClusterId?: string | undefined;
|
|
537
|
+
ClusterState?: ClusterState | undefined;
|
|
538
|
+
CreationDate?: Date | undefined;
|
|
539
|
+
Description?: string | undefined;
|
|
540
540
|
}
|
|
541
541
|
export interface ListClustersResult {
|
|
542
|
-
ClusterListEntries?: ClusterListEntry[];
|
|
543
|
-
NextToken?: string;
|
|
542
|
+
ClusterListEntries?: ClusterListEntry[] | undefined;
|
|
543
|
+
NextToken?: string | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface ListCompatibleImagesRequest {
|
|
546
|
-
MaxResults?: number;
|
|
547
|
-
NextToken?: string;
|
|
546
|
+
MaxResults?: number | undefined;
|
|
547
|
+
NextToken?: string | undefined;
|
|
548
548
|
}
|
|
549
549
|
export interface CompatibleImage {
|
|
550
|
-
AmiId?: string;
|
|
551
|
-
Name?: string;
|
|
550
|
+
AmiId?: string | undefined;
|
|
551
|
+
Name?: string | undefined;
|
|
552
552
|
}
|
|
553
553
|
export interface ListCompatibleImagesResult {
|
|
554
|
-
CompatibleImages?: CompatibleImage[];
|
|
555
|
-
NextToken?: string;
|
|
554
|
+
CompatibleImages?: CompatibleImage[] | undefined;
|
|
555
|
+
NextToken?: string | undefined;
|
|
556
556
|
}
|
|
557
557
|
export interface ListJobsRequest {
|
|
558
|
-
MaxResults?: number;
|
|
559
|
-
NextToken?: string;
|
|
558
|
+
MaxResults?: number | undefined;
|
|
559
|
+
NextToken?: string | undefined;
|
|
560
560
|
}
|
|
561
561
|
export interface ListJobsResult {
|
|
562
|
-
JobListEntries?: JobListEntry[];
|
|
563
|
-
NextToken?: string;
|
|
562
|
+
JobListEntries?: JobListEntry[] | undefined;
|
|
563
|
+
NextToken?: string | undefined;
|
|
564
564
|
}
|
|
565
565
|
export interface ListLongTermPricingRequest {
|
|
566
|
-
MaxResults?: number;
|
|
567
|
-
NextToken?: string;
|
|
566
|
+
MaxResults?: number | undefined;
|
|
567
|
+
NextToken?: string | undefined;
|
|
568
568
|
}
|
|
569
569
|
export interface LongTermPricingListEntry {
|
|
570
|
-
LongTermPricingId?: string;
|
|
571
|
-
LongTermPricingEndDate?: Date;
|
|
572
|
-
LongTermPricingStartDate?: Date;
|
|
573
|
-
LongTermPricingType?: LongTermPricingType;
|
|
574
|
-
CurrentActiveJob?: string;
|
|
575
|
-
ReplacementJob?: string;
|
|
576
|
-
IsLongTermPricingAutoRenew?: boolean;
|
|
577
|
-
LongTermPricingStatus?: string;
|
|
578
|
-
SnowballType?: SnowballType;
|
|
579
|
-
JobIds?: string[];
|
|
570
|
+
LongTermPricingId?: string | undefined;
|
|
571
|
+
LongTermPricingEndDate?: Date | undefined;
|
|
572
|
+
LongTermPricingStartDate?: Date | undefined;
|
|
573
|
+
LongTermPricingType?: LongTermPricingType | undefined;
|
|
574
|
+
CurrentActiveJob?: string | undefined;
|
|
575
|
+
ReplacementJob?: string | undefined;
|
|
576
|
+
IsLongTermPricingAutoRenew?: boolean | undefined;
|
|
577
|
+
LongTermPricingStatus?: string | undefined;
|
|
578
|
+
SnowballType?: SnowballType | undefined;
|
|
579
|
+
JobIds?: string[] | undefined;
|
|
580
580
|
}
|
|
581
581
|
export interface ListLongTermPricingResult {
|
|
582
|
-
LongTermPricingEntries?: LongTermPricingListEntry[];
|
|
583
|
-
NextToken?: string;
|
|
582
|
+
LongTermPricingEntries?: LongTermPricingListEntry[] | undefined;
|
|
583
|
+
NextToken?: string | undefined;
|
|
584
584
|
}
|
|
585
585
|
export interface ListPickupLocationsRequest {
|
|
586
|
-
MaxResults?: number;
|
|
587
|
-
NextToken?: string;
|
|
586
|
+
MaxResults?: number | undefined;
|
|
587
|
+
NextToken?: string | undefined;
|
|
588
588
|
}
|
|
589
589
|
export interface ListPickupLocationsResult {
|
|
590
|
-
Addresses?: Address[];
|
|
591
|
-
NextToken?: string;
|
|
590
|
+
Addresses?: Address[] | undefined;
|
|
591
|
+
NextToken?: string | undefined;
|
|
592
592
|
}
|
|
593
593
|
export declare const ServiceName: {
|
|
594
594
|
readonly EKS_ANYWHERE: "EKS_ANYWHERE";
|
|
@@ -596,48 +596,48 @@ export declare const ServiceName: {
|
|
|
596
596
|
};
|
|
597
597
|
export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
|
|
598
598
|
export interface ServiceVersion {
|
|
599
|
-
Version?: string;
|
|
599
|
+
Version?: string | undefined;
|
|
600
600
|
}
|
|
601
601
|
export interface DependentService {
|
|
602
|
-
ServiceName?: ServiceName;
|
|
603
|
-
ServiceVersion?: ServiceVersion;
|
|
602
|
+
ServiceName?: ServiceName | undefined;
|
|
603
|
+
ServiceVersion?: ServiceVersion | undefined;
|
|
604
604
|
}
|
|
605
605
|
export interface ListServiceVersionsRequest {
|
|
606
606
|
ServiceName: ServiceName | undefined;
|
|
607
|
-
DependentServices?: DependentService[];
|
|
608
|
-
MaxResults?: number;
|
|
609
|
-
NextToken?: string;
|
|
607
|
+
DependentServices?: DependentService[] | undefined;
|
|
608
|
+
MaxResults?: number | undefined;
|
|
609
|
+
NextToken?: string | undefined;
|
|
610
610
|
}
|
|
611
611
|
export interface ListServiceVersionsResult {
|
|
612
612
|
ServiceVersions: ServiceVersion[] | undefined;
|
|
613
613
|
ServiceName: ServiceName | undefined;
|
|
614
|
-
DependentServices?: DependentService[];
|
|
615
|
-
NextToken?: string;
|
|
614
|
+
DependentServices?: DependentService[] | undefined;
|
|
615
|
+
NextToken?: string | undefined;
|
|
616
616
|
}
|
|
617
617
|
export interface UpdateClusterRequest {
|
|
618
618
|
ClusterId: string | undefined;
|
|
619
|
-
RoleARN?: string;
|
|
620
|
-
Description?: string;
|
|
621
|
-
Resources?: JobResource;
|
|
622
|
-
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
623
|
-
AddressId?: string;
|
|
624
|
-
ShippingOption?: ShippingOption;
|
|
625
|
-
Notification?: Notification;
|
|
626
|
-
ForwardingAddressId?: string;
|
|
619
|
+
RoleARN?: string | undefined;
|
|
620
|
+
Description?: string | undefined;
|
|
621
|
+
Resources?: JobResource | undefined;
|
|
622
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration | undefined;
|
|
623
|
+
AddressId?: string | undefined;
|
|
624
|
+
ShippingOption?: ShippingOption | undefined;
|
|
625
|
+
Notification?: Notification | undefined;
|
|
626
|
+
ForwardingAddressId?: string | undefined;
|
|
627
627
|
}
|
|
628
628
|
export interface UpdateClusterResult {}
|
|
629
629
|
export interface UpdateJobRequest {
|
|
630
630
|
JobId: string | undefined;
|
|
631
|
-
RoleARN?: string;
|
|
632
|
-
Notification?: Notification;
|
|
633
|
-
Resources?: JobResource;
|
|
634
|
-
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
635
|
-
AddressId?: string;
|
|
636
|
-
ShippingOption?: ShippingOption;
|
|
637
|
-
Description?: string;
|
|
638
|
-
SnowballCapacityPreference?: SnowballCapacity;
|
|
639
|
-
ForwardingAddressId?: string;
|
|
640
|
-
PickupDetails?: PickupDetails;
|
|
631
|
+
RoleARN?: string | undefined;
|
|
632
|
+
Notification?: Notification | undefined;
|
|
633
|
+
Resources?: JobResource | undefined;
|
|
634
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration | undefined;
|
|
635
|
+
AddressId?: string | undefined;
|
|
636
|
+
ShippingOption?: ShippingOption | undefined;
|
|
637
|
+
Description?: string | undefined;
|
|
638
|
+
SnowballCapacityPreference?: SnowballCapacity | undefined;
|
|
639
|
+
ForwardingAddressId?: string | undefined;
|
|
640
|
+
PickupDetails?: PickupDetails | undefined;
|
|
641
641
|
}
|
|
642
642
|
export interface UpdateJobResult {}
|
|
643
643
|
export declare const ShipmentState: {
|
|
@@ -652,8 +652,8 @@ export interface UpdateJobShipmentStateRequest {
|
|
|
652
652
|
export interface UpdateJobShipmentStateResult {}
|
|
653
653
|
export interface UpdateLongTermPricingRequest {
|
|
654
654
|
LongTermPricingId: string | undefined;
|
|
655
|
-
ReplacementJob?: string;
|
|
656
|
-
IsLongTermPricingAutoRenew?: boolean;
|
|
655
|
+
ReplacementJob?: string | undefined;
|
|
656
|
+
IsLongTermPricingAutoRenew?: boolean | undefined;
|
|
657
657
|
}
|
|
658
658
|
export interface UpdateLongTermPricingResult {}
|
|
659
659
|
export declare const PickupDetailsFilterSensitiveLog: (
|