@aws-sdk/client-snowball 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CancelClusterCommand.js +2 -2
- package/dist-cjs/commands/CancelJobCommand.js +2 -2
- package/dist-cjs/commands/CreateAddressCommand.js +2 -2
- package/dist-cjs/commands/CreateClusterCommand.js +2 -2
- package/dist-cjs/commands/CreateJobCommand.js +2 -2
- package/dist-cjs/commands/CreateLongTermPricingCommand.js +2 -2
- package/dist-cjs/commands/CreateReturnShippingLabelCommand.js +2 -2
- package/dist-cjs/commands/DescribeAddressCommand.js +2 -2
- package/dist-cjs/commands/DescribeAddressesCommand.js +2 -2
- package/dist-cjs/commands/DescribeClusterCommand.js +2 -2
- package/dist-cjs/commands/DescribeJobCommand.js +2 -2
- package/dist-cjs/commands/DescribeReturnShippingLabelCommand.js +2 -2
- package/dist-cjs/commands/GetJobManifestCommand.js +2 -2
- package/dist-cjs/commands/GetJobUnlockCodeCommand.js +2 -2
- package/dist-cjs/commands/GetSnowballUsageCommand.js +2 -2
- package/dist-cjs/commands/GetSoftwareUpdatesCommand.js +2 -2
- package/dist-cjs/commands/ListClusterJobsCommand.js +2 -2
- package/dist-cjs/commands/ListClustersCommand.js +2 -2
- package/dist-cjs/commands/ListCompatibleImagesCommand.js +2 -2
- package/dist-cjs/commands/ListJobsCommand.js +2 -2
- package/dist-cjs/commands/ListLongTermPricingCommand.js +2 -2
- package/dist-cjs/commands/UpdateClusterCommand.js +2 -2
- package/dist-cjs/commands/UpdateJobCommand.js +2 -2
- package/dist-cjs/commands/UpdateJobShipmentStateCommand.js +2 -2
- package/dist-cjs/commands/UpdateLongTermPricingCommand.js +2 -2
- package/dist-cjs/models/models_0.js +311 -465
- package/dist-cjs/protocols/Aws_json1_1.js +127 -223
- package/dist-es/commands/CancelClusterCommand.js +3 -3
- package/dist-es/commands/CancelJobCommand.js +3 -3
- package/dist-es/commands/CreateAddressCommand.js +3 -3
- package/dist-es/commands/CreateClusterCommand.js +3 -3
- package/dist-es/commands/CreateJobCommand.js +3 -3
- package/dist-es/commands/CreateLongTermPricingCommand.js +3 -3
- package/dist-es/commands/CreateReturnShippingLabelCommand.js +3 -3
- package/dist-es/commands/DescribeAddressCommand.js +3 -3
- package/dist-es/commands/DescribeAddressesCommand.js +3 -3
- package/dist-es/commands/DescribeClusterCommand.js +3 -3
- package/dist-es/commands/DescribeJobCommand.js +3 -3
- package/dist-es/commands/DescribeReturnShippingLabelCommand.js +3 -3
- package/dist-es/commands/GetJobManifestCommand.js +3 -3
- package/dist-es/commands/GetJobUnlockCodeCommand.js +3 -3
- package/dist-es/commands/GetSnowballUsageCommand.js +3 -3
- package/dist-es/commands/GetSoftwareUpdatesCommand.js +3 -3
- package/dist-es/commands/ListClusterJobsCommand.js +3 -3
- package/dist-es/commands/ListClustersCommand.js +3 -3
- package/dist-es/commands/ListCompatibleImagesCommand.js +3 -3
- package/dist-es/commands/ListJobsCommand.js +3 -3
- package/dist-es/commands/ListLongTermPricingCommand.js +3 -3
- package/dist-es/commands/UpdateClusterCommand.js +3 -3
- package/dist-es/commands/UpdateJobCommand.js +3 -3
- package/dist-es/commands/UpdateJobShipmentStateCommand.js +3 -3
- package/dist-es/commands/UpdateLongTermPricingCommand.js +3 -3
- package/dist-es/models/models_0.js +77 -308
- package/dist-es/protocols/Aws_json1_1.js +201 -224
- package/dist-types/models/models_0.d.ts +308 -462
- package/dist-types/ts3.4/models/models_0.d.ts +154 -308
- package/package.json +6 -6
|
@@ -70,12 +70,6 @@ export interface Address {
|
|
|
70
70
|
*/
|
|
71
71
|
IsRestricted?: boolean;
|
|
72
72
|
}
|
|
73
|
-
export declare namespace Address {
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
const filterSensitiveLog: (obj: Address) => any;
|
|
78
|
-
}
|
|
79
73
|
export interface CancelClusterRequest {
|
|
80
74
|
/**
|
|
81
75
|
* <p>The 39-character ID for the cluster that you want to cancel, for example
|
|
@@ -83,20 +77,8 @@ export interface CancelClusterRequest {
|
|
|
83
77
|
*/
|
|
84
78
|
ClusterId: string | undefined;
|
|
85
79
|
}
|
|
86
|
-
export declare namespace CancelClusterRequest {
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
const filterSensitiveLog: (obj: CancelClusterRequest) => any;
|
|
91
|
-
}
|
|
92
80
|
export interface CancelClusterResult {
|
|
93
81
|
}
|
|
94
|
-
export declare namespace CancelClusterResult {
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
const filterSensitiveLog: (obj: CancelClusterResult) => any;
|
|
99
|
-
}
|
|
100
82
|
/**
|
|
101
83
|
* <p>The action can't be performed because the job's current state doesn't allow that action
|
|
102
84
|
* to be performed.</p>
|
|
@@ -147,32 +129,14 @@ export interface CancelJobRequest {
|
|
|
147
129
|
*/
|
|
148
130
|
JobId: string | undefined;
|
|
149
131
|
}
|
|
150
|
-
export declare namespace CancelJobRequest {
|
|
151
|
-
/**
|
|
152
|
-
* @internal
|
|
153
|
-
*/
|
|
154
|
-
const filterSensitiveLog: (obj: CancelJobRequest) => any;
|
|
155
|
-
}
|
|
156
132
|
export interface CancelJobResult {
|
|
157
133
|
}
|
|
158
|
-
export declare namespace CancelJobResult {
|
|
159
|
-
/**
|
|
160
|
-
* @internal
|
|
161
|
-
*/
|
|
162
|
-
const filterSensitiveLog: (obj: CancelJobResult) => any;
|
|
163
|
-
}
|
|
164
134
|
export interface CreateAddressRequest {
|
|
165
135
|
/**
|
|
166
136
|
* <p>The address that you want the Snow device shipped to.</p>
|
|
167
137
|
*/
|
|
168
138
|
Address: Address | undefined;
|
|
169
139
|
}
|
|
170
|
-
export declare namespace CreateAddressRequest {
|
|
171
|
-
/**
|
|
172
|
-
* @internal
|
|
173
|
-
*/
|
|
174
|
-
const filterSensitiveLog: (obj: CreateAddressRequest) => any;
|
|
175
|
-
}
|
|
176
140
|
export interface CreateAddressResult {
|
|
177
141
|
/**
|
|
178
142
|
* <p>The automatically generated ID for a specific address. You'll use this ID when you
|
|
@@ -181,12 +145,6 @@ export interface CreateAddressResult {
|
|
|
181
145
|
*/
|
|
182
146
|
AddressId?: string;
|
|
183
147
|
}
|
|
184
|
-
export declare namespace CreateAddressResult {
|
|
185
|
-
/**
|
|
186
|
-
* @internal
|
|
187
|
-
*/
|
|
188
|
-
const filterSensitiveLog: (obj: CreateAddressResult) => any;
|
|
189
|
-
}
|
|
190
148
|
/**
|
|
191
149
|
* <p>The address provided was invalid. Check the address with your region's carrier, and try
|
|
192
150
|
* again.</p>
|
|
@@ -264,12 +222,6 @@ export interface Notification {
|
|
|
264
222
|
*/
|
|
265
223
|
NotifyAll?: boolean;
|
|
266
224
|
}
|
|
267
|
-
export declare namespace Notification {
|
|
268
|
-
/**
|
|
269
|
-
* @internal
|
|
270
|
-
*/
|
|
271
|
-
const filterSensitiveLog: (obj: Notification) => any;
|
|
272
|
-
}
|
|
273
225
|
export declare enum StorageUnit {
|
|
274
226
|
TB = "TB"
|
|
275
227
|
}
|
|
@@ -288,12 +240,6 @@ export interface NFSOnDeviceServiceConfiguration {
|
|
|
288
240
|
*/
|
|
289
241
|
StorageUnit?: StorageUnit | string;
|
|
290
242
|
}
|
|
291
|
-
export declare namespace NFSOnDeviceServiceConfiguration {
|
|
292
|
-
/**
|
|
293
|
-
* @internal
|
|
294
|
-
*/
|
|
295
|
-
const filterSensitiveLog: (obj: NFSOnDeviceServiceConfiguration) => any;
|
|
296
|
-
}
|
|
297
243
|
/**
|
|
298
244
|
* <p>An object that represents the metadata and configuration settings for the Storage Gateway
|
|
299
245
|
* service Tape Gateway type on an Amazon Web Services Snow Family device.</p>
|
|
@@ -309,12 +255,6 @@ export interface TGWOnDeviceServiceConfiguration {
|
|
|
309
255
|
*/
|
|
310
256
|
StorageUnit?: StorageUnit | string;
|
|
311
257
|
}
|
|
312
|
-
export declare namespace TGWOnDeviceServiceConfiguration {
|
|
313
|
-
/**
|
|
314
|
-
* @internal
|
|
315
|
-
*/
|
|
316
|
-
const filterSensitiveLog: (obj: TGWOnDeviceServiceConfiguration) => any;
|
|
317
|
-
}
|
|
318
258
|
/**
|
|
319
259
|
* <p>An object that represents the metadata and configuration settings for services on an Amazon Web Services
|
|
320
260
|
* Snow Family device.</p>
|
|
@@ -329,12 +269,6 @@ export interface OnDeviceServiceConfiguration {
|
|
|
329
269
|
*/
|
|
330
270
|
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
|
|
331
271
|
}
|
|
332
|
-
export declare namespace OnDeviceServiceConfiguration {
|
|
333
|
-
/**
|
|
334
|
-
* @internal
|
|
335
|
-
*/
|
|
336
|
-
const filterSensitiveLog: (obj: OnDeviceServiceConfiguration) => any;
|
|
337
|
-
}
|
|
338
272
|
export declare enum RemoteManagement {
|
|
339
273
|
INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
|
|
340
274
|
INSTALLED_ONLY = "INSTALLED_ONLY"
|
|
@@ -354,12 +288,6 @@ export interface Ec2AmiResource {
|
|
|
354
288
|
*/
|
|
355
289
|
SnowballAmiId?: string;
|
|
356
290
|
}
|
|
357
|
-
export declare namespace Ec2AmiResource {
|
|
358
|
-
/**
|
|
359
|
-
* @internal
|
|
360
|
-
*/
|
|
361
|
-
const filterSensitiveLog: (obj: Ec2AmiResource) => any;
|
|
362
|
-
}
|
|
363
291
|
/**
|
|
364
292
|
* <p>The container for the <a>EventTriggerDefinition$EventResourceARN</a>.</p>
|
|
365
293
|
*/
|
|
@@ -369,12 +297,6 @@ export interface EventTriggerDefinition {
|
|
|
369
297
|
*/
|
|
370
298
|
EventResourceARN?: string;
|
|
371
299
|
}
|
|
372
|
-
export declare namespace EventTriggerDefinition {
|
|
373
|
-
/**
|
|
374
|
-
* @internal
|
|
375
|
-
*/
|
|
376
|
-
const filterSensitiveLog: (obj: EventTriggerDefinition) => any;
|
|
377
|
-
}
|
|
378
300
|
/**
|
|
379
301
|
* <p>Identifies </p>
|
|
380
302
|
*/
|
|
@@ -389,12 +311,6 @@ export interface LambdaResource {
|
|
|
389
311
|
*/
|
|
390
312
|
EventTriggers?: EventTriggerDefinition[];
|
|
391
313
|
}
|
|
392
|
-
export declare namespace LambdaResource {
|
|
393
|
-
/**
|
|
394
|
-
* @internal
|
|
395
|
-
*/
|
|
396
|
-
const filterSensitiveLog: (obj: LambdaResource) => any;
|
|
397
|
-
}
|
|
398
314
|
/**
|
|
399
315
|
* <p>Contains a key range. For export jobs, a <code>S3Resource</code> object can have an
|
|
400
316
|
* optional <code>KeyRange</code> value. The length of the range is defined at job creation, and
|
|
@@ -413,12 +329,6 @@ export interface KeyRange {
|
|
|
413
329
|
*/
|
|
414
330
|
EndMarker?: string;
|
|
415
331
|
}
|
|
416
|
-
export declare namespace KeyRange {
|
|
417
|
-
/**
|
|
418
|
-
* @internal
|
|
419
|
-
*/
|
|
420
|
-
const filterSensitiveLog: (obj: KeyRange) => any;
|
|
421
|
-
}
|
|
422
332
|
export declare enum DeviceServiceName {
|
|
423
333
|
NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
|
|
424
334
|
S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE"
|
|
@@ -445,12 +355,6 @@ export interface TargetOnDeviceService {
|
|
|
445
355
|
*/
|
|
446
356
|
TransferOption?: TransferOption | string;
|
|
447
357
|
}
|
|
448
|
-
export declare namespace TargetOnDeviceService {
|
|
449
|
-
/**
|
|
450
|
-
* @internal
|
|
451
|
-
*/
|
|
452
|
-
const filterSensitiveLog: (obj: TargetOnDeviceService) => any;
|
|
453
|
-
}
|
|
454
358
|
/**
|
|
455
359
|
* <p>Each <code>S3Resource</code> object represents an Amazon S3 bucket that your
|
|
456
360
|
* transferred data will be exported from or imported into. For export jobs, this object can have
|
|
@@ -477,12 +381,6 @@ export interface S3Resource {
|
|
|
477
381
|
*/
|
|
478
382
|
TargetOnDeviceServices?: TargetOnDeviceService[];
|
|
479
383
|
}
|
|
480
|
-
export declare namespace S3Resource {
|
|
481
|
-
/**
|
|
482
|
-
* @internal
|
|
483
|
-
*/
|
|
484
|
-
const filterSensitiveLog: (obj: S3Resource) => any;
|
|
485
|
-
}
|
|
486
384
|
/**
|
|
487
385
|
* <p>Contains an array of Amazon Web Services resource objects. Each object represents an
|
|
488
386
|
* Amazon S3 bucket, an Lambda function, or an Amazon Machine Image (AMI) based
|
|
@@ -502,12 +400,6 @@ export interface JobResource {
|
|
|
502
400
|
*/
|
|
503
401
|
Ec2AmiResources?: Ec2AmiResource[];
|
|
504
402
|
}
|
|
505
|
-
export declare namespace JobResource {
|
|
506
|
-
/**
|
|
507
|
-
* @internal
|
|
508
|
-
*/
|
|
509
|
-
const filterSensitiveLog: (obj: JobResource) => any;
|
|
510
|
-
}
|
|
511
403
|
export declare enum ShippingOption {
|
|
512
404
|
EXPRESS = "EXPRESS",
|
|
513
405
|
NEXT_DAY = "NEXT_DAY",
|
|
@@ -533,12 +425,6 @@ export interface INDTaxDocuments {
|
|
|
533
425
|
*/
|
|
534
426
|
GSTIN?: string;
|
|
535
427
|
}
|
|
536
|
-
export declare namespace INDTaxDocuments {
|
|
537
|
-
/**
|
|
538
|
-
* @internal
|
|
539
|
-
*/
|
|
540
|
-
const filterSensitiveLog: (obj: INDTaxDocuments) => any;
|
|
541
|
-
}
|
|
542
428
|
/**
|
|
543
429
|
* <p>The tax documents required in your Amazon Web Services Region.</p>
|
|
544
430
|
*/
|
|
@@ -548,12 +434,6 @@ export interface TaxDocuments {
|
|
|
548
434
|
*/
|
|
549
435
|
IND?: INDTaxDocuments;
|
|
550
436
|
}
|
|
551
|
-
export declare namespace TaxDocuments {
|
|
552
|
-
/**
|
|
553
|
-
* @internal
|
|
554
|
-
*/
|
|
555
|
-
const filterSensitiveLog: (obj: TaxDocuments) => any;
|
|
556
|
-
}
|
|
557
437
|
export interface CreateClusterRequest {
|
|
558
438
|
/**
|
|
559
439
|
* <p>The type of job for this cluster. Currently, the only job type supported for clusters
|
|
@@ -677,24 +557,12 @@ export interface CreateClusterRequest {
|
|
|
677
557
|
*/
|
|
678
558
|
RemoteManagement?: RemoteManagement | string;
|
|
679
559
|
}
|
|
680
|
-
export declare namespace CreateClusterRequest {
|
|
681
|
-
/**
|
|
682
|
-
* @internal
|
|
683
|
-
*/
|
|
684
|
-
const filterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
685
|
-
}
|
|
686
560
|
export interface CreateClusterResult {
|
|
687
561
|
/**
|
|
688
562
|
* <p>The automatically generated ID for a cluster.</p>
|
|
689
563
|
*/
|
|
690
564
|
ClusterId?: string;
|
|
691
565
|
}
|
|
692
|
-
export declare namespace CreateClusterResult {
|
|
693
|
-
/**
|
|
694
|
-
* @internal
|
|
695
|
-
*/
|
|
696
|
-
const filterSensitiveLog: (obj: CreateClusterResult) => any;
|
|
697
|
-
}
|
|
698
566
|
/**
|
|
699
567
|
* <p>Your IAM user lacks the necessary Amazon EC2 permissions to perform the attempted
|
|
700
568
|
* action.</p>
|
|
@@ -743,12 +611,6 @@ export interface WirelessConnection {
|
|
|
743
611
|
*/
|
|
744
612
|
IsWifiEnabled?: boolean;
|
|
745
613
|
}
|
|
746
|
-
export declare namespace WirelessConnection {
|
|
747
|
-
/**
|
|
748
|
-
* @internal
|
|
749
|
-
*/
|
|
750
|
-
const filterSensitiveLog: (obj: WirelessConnection) => any;
|
|
751
|
-
}
|
|
752
614
|
/**
|
|
753
615
|
* <p>Specifies the device configuration for an Snowcone job.</p>
|
|
754
616
|
*/
|
|
@@ -758,12 +620,6 @@ export interface SnowconeDeviceConfiguration {
|
|
|
758
620
|
*/
|
|
759
621
|
WirelessConnection?: WirelessConnection;
|
|
760
622
|
}
|
|
761
|
-
export declare namespace SnowconeDeviceConfiguration {
|
|
762
|
-
/**
|
|
763
|
-
* @internal
|
|
764
|
-
*/
|
|
765
|
-
const filterSensitiveLog: (obj: SnowconeDeviceConfiguration) => any;
|
|
766
|
-
}
|
|
767
623
|
/**
|
|
768
624
|
* <p>The container for <code>SnowconeDeviceConfiguration</code>. </p>
|
|
769
625
|
*/
|
|
@@ -774,12 +630,6 @@ export interface DeviceConfiguration {
|
|
|
774
630
|
*/
|
|
775
631
|
SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
|
|
776
632
|
}
|
|
777
|
-
export declare namespace DeviceConfiguration {
|
|
778
|
-
/**
|
|
779
|
-
* @internal
|
|
780
|
-
*/
|
|
781
|
-
const filterSensitiveLog: (obj: DeviceConfiguration) => any;
|
|
782
|
-
}
|
|
783
633
|
export declare enum SnowballCapacity {
|
|
784
634
|
NO_PREFERENCE = "NoPreference",
|
|
785
635
|
T100 = "T100",
|
|
@@ -934,12 +784,6 @@ export interface CreateJobRequest {
|
|
|
934
784
|
*/
|
|
935
785
|
LongTermPricingId?: string;
|
|
936
786
|
}
|
|
937
|
-
export declare namespace CreateJobRequest {
|
|
938
|
-
/**
|
|
939
|
-
* @internal
|
|
940
|
-
*/
|
|
941
|
-
const filterSensitiveLog: (obj: CreateJobRequest) => any;
|
|
942
|
-
}
|
|
943
787
|
export interface CreateJobResult {
|
|
944
788
|
/**
|
|
945
789
|
* <p>The automatically generated ID for a job, for example
|
|
@@ -947,12 +791,6 @@ export interface CreateJobResult {
|
|
|
947
791
|
*/
|
|
948
792
|
JobId?: string;
|
|
949
793
|
}
|
|
950
|
-
export declare namespace CreateJobResult {
|
|
951
|
-
/**
|
|
952
|
-
* @internal
|
|
953
|
-
*/
|
|
954
|
-
const filterSensitiveLog: (obj: CreateJobResult) => any;
|
|
955
|
-
}
|
|
956
794
|
export declare enum LongTermPricingType {
|
|
957
795
|
ONE_YEAR = "OneYear",
|
|
958
796
|
THREE_YEAR = "ThreeYear"
|
|
@@ -973,24 +811,12 @@ export interface CreateLongTermPricingRequest {
|
|
|
973
811
|
*/
|
|
974
812
|
SnowballType?: SnowballType | string;
|
|
975
813
|
}
|
|
976
|
-
export declare namespace CreateLongTermPricingRequest {
|
|
977
|
-
/**
|
|
978
|
-
* @internal
|
|
979
|
-
*/
|
|
980
|
-
const filterSensitiveLog: (obj: CreateLongTermPricingRequest) => any;
|
|
981
|
-
}
|
|
982
814
|
export interface CreateLongTermPricingResult {
|
|
983
815
|
/**
|
|
984
816
|
* <p>The ID of the long-term pricing type for the device.</p>
|
|
985
817
|
*/
|
|
986
818
|
LongTermPricingId?: string;
|
|
987
819
|
}
|
|
988
|
-
export declare namespace CreateLongTermPricingResult {
|
|
989
|
-
/**
|
|
990
|
-
* @internal
|
|
991
|
-
*/
|
|
992
|
-
const filterSensitiveLog: (obj: CreateLongTermPricingResult) => any;
|
|
993
|
-
}
|
|
994
820
|
/**
|
|
995
821
|
* <p>You get this exception when you call <code>CreateReturnShippingLabel</code> more than once
|
|
996
822
|
* when other requests are not completed.</p>
|
|
@@ -1021,12 +847,6 @@ export interface CreateReturnShippingLabelRequest {
|
|
|
1021
847
|
*/
|
|
1022
848
|
ShippingOption?: ShippingOption | string;
|
|
1023
849
|
}
|
|
1024
|
-
export declare namespace CreateReturnShippingLabelRequest {
|
|
1025
|
-
/**
|
|
1026
|
-
* @internal
|
|
1027
|
-
*/
|
|
1028
|
-
const filterSensitiveLog: (obj: CreateReturnShippingLabelRequest) => any;
|
|
1029
|
-
}
|
|
1030
850
|
export declare enum ShippingLabelStatus {
|
|
1031
851
|
FAILED = "Failed",
|
|
1032
852
|
IN_PROGRESS = "InProgress",
|
|
@@ -1039,12 +859,6 @@ export interface CreateReturnShippingLabelResult {
|
|
|
1039
859
|
*/
|
|
1040
860
|
Status?: ShippingLabelStatus | string;
|
|
1041
861
|
}
|
|
1042
|
-
export declare namespace CreateReturnShippingLabelResult {
|
|
1043
|
-
/**
|
|
1044
|
-
* @internal
|
|
1045
|
-
*/
|
|
1046
|
-
const filterSensitiveLog: (obj: CreateReturnShippingLabelResult) => any;
|
|
1047
|
-
}
|
|
1048
862
|
/**
|
|
1049
863
|
* <p>You get this exception if you call <code>CreateReturnShippingLabel</code> and a valid
|
|
1050
864
|
* return shipping label already exists. In this case, use
|
|
@@ -1065,12 +879,6 @@ export interface DescribeAddressRequest {
|
|
|
1065
879
|
*/
|
|
1066
880
|
AddressId: string | undefined;
|
|
1067
881
|
}
|
|
1068
|
-
export declare namespace DescribeAddressRequest {
|
|
1069
|
-
/**
|
|
1070
|
-
* @internal
|
|
1071
|
-
*/
|
|
1072
|
-
const filterSensitiveLog: (obj: DescribeAddressRequest) => any;
|
|
1073
|
-
}
|
|
1074
882
|
export interface DescribeAddressResult {
|
|
1075
883
|
/**
|
|
1076
884
|
* <p>The address that you want the Snow device(s) associated with a specific job to be
|
|
@@ -1078,12 +886,6 @@ export interface DescribeAddressResult {
|
|
|
1078
886
|
*/
|
|
1079
887
|
Address?: Address;
|
|
1080
888
|
}
|
|
1081
|
-
export declare namespace DescribeAddressResult {
|
|
1082
|
-
/**
|
|
1083
|
-
* @internal
|
|
1084
|
-
*/
|
|
1085
|
-
const filterSensitiveLog: (obj: DescribeAddressResult) => any;
|
|
1086
|
-
}
|
|
1087
889
|
export interface DescribeAddressesRequest {
|
|
1088
890
|
/**
|
|
1089
891
|
* <p>The number of <code>ADDRESS</code> objects to return.</p>
|
|
@@ -1096,12 +898,6 @@ export interface DescribeAddressesRequest {
|
|
|
1096
898
|
*/
|
|
1097
899
|
NextToken?: string;
|
|
1098
900
|
}
|
|
1099
|
-
export declare namespace DescribeAddressesRequest {
|
|
1100
|
-
/**
|
|
1101
|
-
* @internal
|
|
1102
|
-
*/
|
|
1103
|
-
const filterSensitiveLog: (obj: DescribeAddressesRequest) => any;
|
|
1104
|
-
}
|
|
1105
901
|
export interface DescribeAddressesResult {
|
|
1106
902
|
/**
|
|
1107
903
|
* <p>The Snow device shipping addresses that were created for this account.</p>
|
|
@@ -1114,12 +910,6 @@ export interface DescribeAddressesResult {
|
|
|
1114
910
|
*/
|
|
1115
911
|
NextToken?: string;
|
|
1116
912
|
}
|
|
1117
|
-
export declare namespace DescribeAddressesResult {
|
|
1118
|
-
/**
|
|
1119
|
-
* @internal
|
|
1120
|
-
*/
|
|
1121
|
-
const filterSensitiveLog: (obj: DescribeAddressesResult) => any;
|
|
1122
|
-
}
|
|
1123
913
|
/**
|
|
1124
914
|
* <p>The <code>NextToken</code> string was altered unexpectedly, and the operation has
|
|
1125
915
|
* stopped. Run the operation without changing the <code>NextToken</code> string, and try
|
|
@@ -1140,12 +930,6 @@ export interface DescribeClusterRequest {
|
|
|
1140
930
|
*/
|
|
1141
931
|
ClusterId: string | undefined;
|
|
1142
932
|
}
|
|
1143
|
-
export declare namespace DescribeClusterRequest {
|
|
1144
|
-
/**
|
|
1145
|
-
* @internal
|
|
1146
|
-
*/
|
|
1147
|
-
const filterSensitiveLog: (obj: DescribeClusterRequest) => any;
|
|
1148
|
-
}
|
|
1149
933
|
export declare enum ClusterState {
|
|
1150
934
|
AWAITING_QUORUM = "AwaitingQuorum",
|
|
1151
935
|
CANCELLED = "Cancelled",
|
|
@@ -1250,12 +1034,6 @@ export interface ClusterMetadata {
|
|
|
1250
1034
|
*/
|
|
1251
1035
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
1252
1036
|
}
|
|
1253
|
-
export declare namespace ClusterMetadata {
|
|
1254
|
-
/**
|
|
1255
|
-
* @internal
|
|
1256
|
-
*/
|
|
1257
|
-
const filterSensitiveLog: (obj: ClusterMetadata) => any;
|
|
1258
|
-
}
|
|
1259
1037
|
export interface DescribeClusterResult {
|
|
1260
1038
|
/**
|
|
1261
1039
|
* <p>Information about a specific cluster, including shipping information, cluster status,
|
|
@@ -1263,12 +1041,6 @@ export interface DescribeClusterResult {
|
|
|
1263
1041
|
*/
|
|
1264
1042
|
ClusterMetadata?: ClusterMetadata;
|
|
1265
1043
|
}
|
|
1266
|
-
export declare namespace DescribeClusterResult {
|
|
1267
|
-
/**
|
|
1268
|
-
* @internal
|
|
1269
|
-
*/
|
|
1270
|
-
const filterSensitiveLog: (obj: DescribeClusterResult) => any;
|
|
1271
|
-
}
|
|
1272
1044
|
export interface DescribeJobRequest {
|
|
1273
1045
|
/**
|
|
1274
1046
|
* <p>The automatically generated ID for a job, for example
|
|
@@ -1276,12 +1048,6 @@ export interface DescribeJobRequest {
|
|
|
1276
1048
|
*/
|
|
1277
1049
|
JobId: string | undefined;
|
|
1278
1050
|
}
|
|
1279
|
-
export declare namespace DescribeJobRequest {
|
|
1280
|
-
/**
|
|
1281
|
-
* @internal
|
|
1282
|
-
*/
|
|
1283
|
-
const filterSensitiveLog: (obj: DescribeJobRequest) => any;
|
|
1284
|
-
}
|
|
1285
1051
|
/**
|
|
1286
1052
|
* <p>Defines the real-time status of a Snow device's data transfer while the device is at
|
|
1287
1053
|
* Amazon Web Services. This data is only available while a job has a <code>JobState</code>
|
|
@@ -1308,12 +1074,6 @@ export interface DataTransfer {
|
|
|
1308
1074
|
*/
|
|
1309
1075
|
TotalObjects?: number;
|
|
1310
1076
|
}
|
|
1311
|
-
export declare namespace DataTransfer {
|
|
1312
|
-
/**
|
|
1313
|
-
* @internal
|
|
1314
|
-
*/
|
|
1315
|
-
const filterSensitiveLog: (obj: DataTransfer) => any;
|
|
1316
|
-
}
|
|
1317
1077
|
/**
|
|
1318
1078
|
* <p>Contains job logs. Whenever a Snow device is used to import data into or export data
|
|
1319
1079
|
* out of Amazon S3, you'll have the option of downloading a PDF job report. Job logs are
|
|
@@ -1349,12 +1109,6 @@ export interface JobLogs {
|
|
|
1349
1109
|
*/
|
|
1350
1110
|
JobFailureLogURI?: string;
|
|
1351
1111
|
}
|
|
1352
|
-
export declare namespace JobLogs {
|
|
1353
|
-
/**
|
|
1354
|
-
* @internal
|
|
1355
|
-
*/
|
|
1356
|
-
const filterSensitiveLog: (obj: JobLogs) => any;
|
|
1357
|
-
}
|
|
1358
1112
|
/**
|
|
1359
1113
|
* <p>The <code>Status</code> and <code>TrackingNumber</code> information for an inbound or
|
|
1360
1114
|
* outbound shipment.</p>
|
|
@@ -1372,12 +1126,6 @@ export interface Shipment {
|
|
|
1372
1126
|
*/
|
|
1373
1127
|
TrackingNumber?: string;
|
|
1374
1128
|
}
|
|
1375
|
-
export declare namespace Shipment {
|
|
1376
|
-
/**
|
|
1377
|
-
* @internal
|
|
1378
|
-
*/
|
|
1379
|
-
const filterSensitiveLog: (obj: Shipment) => any;
|
|
1380
|
-
}
|
|
1381
1129
|
/**
|
|
1382
1130
|
* <p>A job's shipping information, including inbound and outbound tracking numbers and
|
|
1383
1131
|
* shipping speed options.</p>
|
|
@@ -1420,12 +1168,6 @@ export interface ShippingDetails {
|
|
|
1420
1168
|
*/
|
|
1421
1169
|
OutboundShipment?: Shipment;
|
|
1422
1170
|
}
|
|
1423
|
-
export declare namespace ShippingDetails {
|
|
1424
|
-
/**
|
|
1425
|
-
* @internal
|
|
1426
|
-
*/
|
|
1427
|
-
const filterSensitiveLog: (obj: ShippingDetails) => any;
|
|
1428
|
-
}
|
|
1429
1171
|
/**
|
|
1430
1172
|
* <p>Contains information about a specific job including shipping information, job status,
|
|
1431
1173
|
* and other important metadata. This information is returned as a part of the response syntax of
|
|
@@ -1550,12 +1292,6 @@ export interface JobMetadata {
|
|
|
1550
1292
|
*/
|
|
1551
1293
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
1552
1294
|
}
|
|
1553
|
-
export declare namespace JobMetadata {
|
|
1554
|
-
/**
|
|
1555
|
-
* @internal
|
|
1556
|
-
*/
|
|
1557
|
-
const filterSensitiveLog: (obj: JobMetadata) => any;
|
|
1558
|
-
}
|
|
1559
1295
|
export interface DescribeJobResult {
|
|
1560
1296
|
/**
|
|
1561
1297
|
* <p>Information about a specific job, including shipping information, job status, and other
|
|
@@ -1568,12 +1304,6 @@ export interface DescribeJobResult {
|
|
|
1568
1304
|
*/
|
|
1569
1305
|
SubJobMetadata?: JobMetadata[];
|
|
1570
1306
|
}
|
|
1571
|
-
export declare namespace DescribeJobResult {
|
|
1572
|
-
/**
|
|
1573
|
-
* @internal
|
|
1574
|
-
*/
|
|
1575
|
-
const filterSensitiveLog: (obj: DescribeJobResult) => any;
|
|
1576
|
-
}
|
|
1577
1307
|
export interface DescribeReturnShippingLabelRequest {
|
|
1578
1308
|
/**
|
|
1579
1309
|
* <p>The automatically generated ID for a job, for example
|
|
@@ -1581,12 +1311,6 @@ export interface DescribeReturnShippingLabelRequest {
|
|
|
1581
1311
|
*/
|
|
1582
1312
|
JobId: string | undefined;
|
|
1583
1313
|
}
|
|
1584
|
-
export declare namespace DescribeReturnShippingLabelRequest {
|
|
1585
|
-
/**
|
|
1586
|
-
* @internal
|
|
1587
|
-
*/
|
|
1588
|
-
const filterSensitiveLog: (obj: DescribeReturnShippingLabelRequest) => any;
|
|
1589
|
-
}
|
|
1590
1314
|
export interface DescribeReturnShippingLabelResult {
|
|
1591
1315
|
/**
|
|
1592
1316
|
* <p>The status information of the task on a Snow device that is being returned to Amazon Web Services.</p>
|
|
@@ -1601,12 +1325,6 @@ export interface DescribeReturnShippingLabelResult {
|
|
|
1601
1325
|
*/
|
|
1602
1326
|
ReturnShippingLabelURI?: string;
|
|
1603
1327
|
}
|
|
1604
|
-
export declare namespace DescribeReturnShippingLabelResult {
|
|
1605
|
-
/**
|
|
1606
|
-
* @internal
|
|
1607
|
-
*/
|
|
1608
|
-
const filterSensitiveLog: (obj: DescribeReturnShippingLabelResult) => any;
|
|
1609
|
-
}
|
|
1610
1328
|
export interface GetJobManifestRequest {
|
|
1611
1329
|
/**
|
|
1612
1330
|
* <p>The ID for a job that you want to get the manifest file for, for example
|
|
@@ -1614,12 +1332,6 @@ export interface GetJobManifestRequest {
|
|
|
1614
1332
|
*/
|
|
1615
1333
|
JobId: string | undefined;
|
|
1616
1334
|
}
|
|
1617
|
-
export declare namespace GetJobManifestRequest {
|
|
1618
|
-
/**
|
|
1619
|
-
* @internal
|
|
1620
|
-
*/
|
|
1621
|
-
const filterSensitiveLog: (obj: GetJobManifestRequest) => any;
|
|
1622
|
-
}
|
|
1623
1335
|
export interface GetJobManifestResult {
|
|
1624
1336
|
/**
|
|
1625
1337
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the specified
|
|
@@ -1627,12 +1339,6 @@ export interface GetJobManifestResult {
|
|
|
1627
1339
|
*/
|
|
1628
1340
|
ManifestURI?: string;
|
|
1629
1341
|
}
|
|
1630
|
-
export declare namespace GetJobManifestResult {
|
|
1631
|
-
/**
|
|
1632
|
-
* @internal
|
|
1633
|
-
*/
|
|
1634
|
-
const filterSensitiveLog: (obj: GetJobManifestResult) => any;
|
|
1635
|
-
}
|
|
1636
1342
|
export interface GetJobUnlockCodeRequest {
|
|
1637
1343
|
/**
|
|
1638
1344
|
* <p>The ID for the job that you want to get the <code>UnlockCode</code> value for, for
|
|
@@ -1640,12 +1346,6 @@ export interface GetJobUnlockCodeRequest {
|
|
|
1640
1346
|
*/
|
|
1641
1347
|
JobId: string | undefined;
|
|
1642
1348
|
}
|
|
1643
|
-
export declare namespace GetJobUnlockCodeRequest {
|
|
1644
|
-
/**
|
|
1645
|
-
* @internal
|
|
1646
|
-
*/
|
|
1647
|
-
const filterSensitiveLog: (obj: GetJobUnlockCodeRequest) => any;
|
|
1648
|
-
}
|
|
1649
1349
|
export interface GetJobUnlockCodeResult {
|
|
1650
1350
|
/**
|
|
1651
1351
|
* <p>The <code>UnlockCode</code> value for the specified job. The <code>UnlockCode</code>
|
|
@@ -1653,20 +1353,8 @@ export interface GetJobUnlockCodeResult {
|
|
|
1653
1353
|
*/
|
|
1654
1354
|
UnlockCode?: string;
|
|
1655
1355
|
}
|
|
1656
|
-
export declare namespace GetJobUnlockCodeResult {
|
|
1657
|
-
/**
|
|
1658
|
-
* @internal
|
|
1659
|
-
*/
|
|
1660
|
-
const filterSensitiveLog: (obj: GetJobUnlockCodeResult) => any;
|
|
1661
|
-
}
|
|
1662
1356
|
export interface GetSnowballUsageRequest {
|
|
1663
1357
|
}
|
|
1664
|
-
export declare namespace GetSnowballUsageRequest {
|
|
1665
|
-
/**
|
|
1666
|
-
* @internal
|
|
1667
|
-
*/
|
|
1668
|
-
const filterSensitiveLog: (obj: GetSnowballUsageRequest) => any;
|
|
1669
|
-
}
|
|
1670
1358
|
export interface GetSnowballUsageResult {
|
|
1671
1359
|
/**
|
|
1672
1360
|
* <p>The service limit for number of Snow devices this account can have at once. The default
|
|
@@ -1678,12 +1366,6 @@ export interface GetSnowballUsageResult {
|
|
|
1678
1366
|
*/
|
|
1679
1367
|
SnowballsInUse?: number;
|
|
1680
1368
|
}
|
|
1681
|
-
export declare namespace GetSnowballUsageResult {
|
|
1682
|
-
/**
|
|
1683
|
-
* @internal
|
|
1684
|
-
*/
|
|
1685
|
-
const filterSensitiveLog: (obj: GetSnowballUsageResult) => any;
|
|
1686
|
-
}
|
|
1687
1369
|
export interface GetSoftwareUpdatesRequest {
|
|
1688
1370
|
/**
|
|
1689
1371
|
* <p>The ID for a job that you want to get the software update file for, for example
|
|
@@ -1691,12 +1373,6 @@ export interface GetSoftwareUpdatesRequest {
|
|
|
1691
1373
|
*/
|
|
1692
1374
|
JobId: string | undefined;
|
|
1693
1375
|
}
|
|
1694
|
-
export declare namespace GetSoftwareUpdatesRequest {
|
|
1695
|
-
/**
|
|
1696
|
-
* @internal
|
|
1697
|
-
*/
|
|
1698
|
-
const filterSensitiveLog: (obj: GetSoftwareUpdatesRequest) => any;
|
|
1699
|
-
}
|
|
1700
1376
|
export interface GetSoftwareUpdatesResult {
|
|
1701
1377
|
/**
|
|
1702
1378
|
* <p>The Amazon S3 presigned URL for the update file associated with the specified
|
|
@@ -1706,12 +1382,6 @@ export interface GetSoftwareUpdatesResult {
|
|
|
1706
1382
|
*/
|
|
1707
1383
|
UpdatesURI?: string;
|
|
1708
1384
|
}
|
|
1709
|
-
export declare namespace GetSoftwareUpdatesResult {
|
|
1710
|
-
/**
|
|
1711
|
-
* @internal
|
|
1712
|
-
*/
|
|
1713
|
-
const filterSensitiveLog: (obj: GetSoftwareUpdatesResult) => any;
|
|
1714
|
-
}
|
|
1715
1385
|
export interface ListClusterJobsRequest {
|
|
1716
1386
|
/**
|
|
1717
1387
|
* <p>The 39-character ID for the cluster that you want to list, for example
|
|
@@ -1729,12 +1399,6 @@ export interface ListClusterJobsRequest {
|
|
|
1729
1399
|
*/
|
|
1730
1400
|
NextToken?: string;
|
|
1731
1401
|
}
|
|
1732
|
-
export declare namespace ListClusterJobsRequest {
|
|
1733
|
-
/**
|
|
1734
|
-
* @internal
|
|
1735
|
-
*/
|
|
1736
|
-
const filterSensitiveLog: (obj: ListClusterJobsRequest) => any;
|
|
1737
|
-
}
|
|
1738
1402
|
/**
|
|
1739
1403
|
* <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
|
|
1740
1404
|
* that indicates whether the job is a job part, in the case of an export job.</p>
|
|
@@ -1775,12 +1439,6 @@ export interface JobListEntry {
|
|
|
1775
1439
|
*/
|
|
1776
1440
|
Description?: string;
|
|
1777
1441
|
}
|
|
1778
|
-
export declare namespace JobListEntry {
|
|
1779
|
-
/**
|
|
1780
|
-
* @internal
|
|
1781
|
-
*/
|
|
1782
|
-
const filterSensitiveLog: (obj: JobListEntry) => any;
|
|
1783
|
-
}
|
|
1784
1442
|
export interface ListClusterJobsResult {
|
|
1785
1443
|
/**
|
|
1786
1444
|
* <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
|
|
@@ -1794,12 +1452,6 @@ export interface ListClusterJobsResult {
|
|
|
1794
1452
|
*/
|
|
1795
1453
|
NextToken?: string;
|
|
1796
1454
|
}
|
|
1797
|
-
export declare namespace ListClusterJobsResult {
|
|
1798
|
-
/**
|
|
1799
|
-
* @internal
|
|
1800
|
-
*/
|
|
1801
|
-
const filterSensitiveLog: (obj: ListClusterJobsResult) => any;
|
|
1802
|
-
}
|
|
1803
1455
|
export interface ListClustersRequest {
|
|
1804
1456
|
/**
|
|
1805
1457
|
* <p>The number of <code>ClusterListEntry</code> objects to return.</p>
|
|
@@ -1812,12 +1464,6 @@ export interface ListClustersRequest {
|
|
|
1812
1464
|
*/
|
|
1813
1465
|
NextToken?: string;
|
|
1814
1466
|
}
|
|
1815
|
-
export declare namespace ListClustersRequest {
|
|
1816
|
-
/**
|
|
1817
|
-
* @internal
|
|
1818
|
-
*/
|
|
1819
|
-
const filterSensitiveLog: (obj: ListClustersRequest) => any;
|
|
1820
|
-
}
|
|
1821
1467
|
/**
|
|
1822
1468
|
* <p>Contains a cluster's state, a cluster's ID, and other important information.</p>
|
|
1823
1469
|
*/
|
|
@@ -1842,12 +1488,6 @@ export interface ClusterListEntry {
|
|
|
1842
1488
|
*/
|
|
1843
1489
|
Description?: string;
|
|
1844
1490
|
}
|
|
1845
|
-
export declare namespace ClusterListEntry {
|
|
1846
|
-
/**
|
|
1847
|
-
* @internal
|
|
1848
|
-
*/
|
|
1849
|
-
const filterSensitiveLog: (obj: ClusterListEntry) => any;
|
|
1850
|
-
}
|
|
1851
1491
|
export interface ListClustersResult {
|
|
1852
1492
|
/**
|
|
1853
1493
|
* <p>Each <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID,
|
|
@@ -1861,12 +1501,6 @@ export interface ListClustersResult {
|
|
|
1861
1501
|
*/
|
|
1862
1502
|
NextToken?: string;
|
|
1863
1503
|
}
|
|
1864
|
-
export declare namespace ListClustersResult {
|
|
1865
|
-
/**
|
|
1866
|
-
* @internal
|
|
1867
|
-
*/
|
|
1868
|
-
const filterSensitiveLog: (obj: ListClustersResult) => any;
|
|
1869
|
-
}
|
|
1870
1504
|
export interface ListCompatibleImagesRequest {
|
|
1871
1505
|
/**
|
|
1872
1506
|
* <p>The maximum number of results for the list of compatible images. Currently, a Snowball
|
|
@@ -1880,12 +1514,6 @@ export interface ListCompatibleImagesRequest {
|
|
|
1880
1514
|
*/
|
|
1881
1515
|
NextToken?: string;
|
|
1882
1516
|
}
|
|
1883
|
-
export declare namespace ListCompatibleImagesRequest {
|
|
1884
|
-
/**
|
|
1885
|
-
* @internal
|
|
1886
|
-
*/
|
|
1887
|
-
const filterSensitiveLog: (obj: ListCompatibleImagesRequest) => any;
|
|
1888
|
-
}
|
|
1889
1517
|
/**
|
|
1890
1518
|
* <p>A JSON-formatted object that describes a compatible Amazon Machine Image (AMI),
|
|
1891
1519
|
* including the ID and name for a Snow device AMI. This AMI is compatible with the device's
|
|
@@ -1902,12 +1530,6 @@ export interface CompatibleImage {
|
|
|
1902
1530
|
*/
|
|
1903
1531
|
Name?: string;
|
|
1904
1532
|
}
|
|
1905
|
-
export declare namespace CompatibleImage {
|
|
1906
|
-
/**
|
|
1907
|
-
* @internal
|
|
1908
|
-
*/
|
|
1909
|
-
const filterSensitiveLog: (obj: CompatibleImage) => any;
|
|
1910
|
-
}
|
|
1911
1533
|
export interface ListCompatibleImagesResult {
|
|
1912
1534
|
/**
|
|
1913
1535
|
* <p>A JSON-formatted object that describes a compatible AMI, including the ID and name for
|
|
@@ -1920,12 +1542,6 @@ export interface ListCompatibleImagesResult {
|
|
|
1920
1542
|
*/
|
|
1921
1543
|
NextToken?: string;
|
|
1922
1544
|
}
|
|
1923
|
-
export declare namespace ListCompatibleImagesResult {
|
|
1924
|
-
/**
|
|
1925
|
-
* @internal
|
|
1926
|
-
*/
|
|
1927
|
-
const filterSensitiveLog: (obj: ListCompatibleImagesResult) => any;
|
|
1928
|
-
}
|
|
1929
1545
|
export interface ListJobsRequest {
|
|
1930
1546
|
/**
|
|
1931
1547
|
* <p>The number of <code>JobListEntry</code> objects to return.</p>
|
|
@@ -1938,12 +1554,6 @@ export interface ListJobsRequest {
|
|
|
1938
1554
|
*/
|
|
1939
1555
|
NextToken?: string;
|
|
1940
1556
|
}
|
|
1941
|
-
export declare namespace ListJobsRequest {
|
|
1942
|
-
/**
|
|
1943
|
-
* @internal
|
|
1944
|
-
*/
|
|
1945
|
-
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
1946
|
-
}
|
|
1947
1557
|
export interface ListJobsResult {
|
|
1948
1558
|
/**
|
|
1949
1559
|
* <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
|
|
@@ -1957,12 +1567,6 @@ export interface ListJobsResult {
|
|
|
1957
1567
|
*/
|
|
1958
1568
|
NextToken?: string;
|
|
1959
1569
|
}
|
|
1960
|
-
export declare namespace ListJobsResult {
|
|
1961
|
-
/**
|
|
1962
|
-
* @internal
|
|
1963
|
-
*/
|
|
1964
|
-
const filterSensitiveLog: (obj: ListJobsResult) => any;
|
|
1965
|
-
}
|
|
1966
1570
|
export interface ListLongTermPricingRequest {
|
|
1967
1571
|
/**
|
|
1968
1572
|
* <p>The maximum number of <code>ListLongTermPricing</code> objects to return.</p>
|
|
@@ -1974,12 +1578,6 @@ export interface ListLongTermPricingRequest {
|
|
|
1974
1578
|
*/
|
|
1975
1579
|
NextToken?: string;
|
|
1976
1580
|
}
|
|
1977
|
-
export declare namespace ListLongTermPricingRequest {
|
|
1978
|
-
/**
|
|
1979
|
-
* @internal
|
|
1980
|
-
*/
|
|
1981
|
-
const filterSensitiveLog: (obj: ListLongTermPricingRequest) => any;
|
|
1982
|
-
}
|
|
1983
1581
|
/**
|
|
1984
1582
|
* <p>Each <code>LongTermPricingListEntry</code> object contains information about a long-term
|
|
1985
1583
|
* pricing type.</p>
|
|
@@ -2027,12 +1625,6 @@ export interface LongTermPricingListEntry {
|
|
|
2027
1625
|
*/
|
|
2028
1626
|
JobIds?: string[];
|
|
2029
1627
|
}
|
|
2030
|
-
export declare namespace LongTermPricingListEntry {
|
|
2031
|
-
/**
|
|
2032
|
-
* @internal
|
|
2033
|
-
*/
|
|
2034
|
-
const filterSensitiveLog: (obj: LongTermPricingListEntry) => any;
|
|
2035
|
-
}
|
|
2036
1628
|
export interface ListLongTermPricingResult {
|
|
2037
1629
|
/**
|
|
2038
1630
|
* <p>Each <code>LongTermPricingEntry</code> object contains a status, ID, and other information
|
|
@@ -2045,12 +1637,6 @@ export interface ListLongTermPricingResult {
|
|
|
2045
1637
|
*/
|
|
2046
1638
|
NextToken?: string;
|
|
2047
1639
|
}
|
|
2048
|
-
export declare namespace ListLongTermPricingResult {
|
|
2049
|
-
/**
|
|
2050
|
-
* @internal
|
|
2051
|
-
*/
|
|
2052
|
-
const filterSensitiveLog: (obj: ListLongTermPricingResult) => any;
|
|
2053
|
-
}
|
|
2054
1640
|
export interface UpdateClusterRequest {
|
|
2055
1641
|
/**
|
|
2056
1642
|
* <p>The cluster ID of the cluster that you want to update, for example
|
|
@@ -2096,20 +1682,8 @@ export interface UpdateClusterRequest {
|
|
|
2096
1682
|
*/
|
|
2097
1683
|
ForwardingAddressId?: string;
|
|
2098
1684
|
}
|
|
2099
|
-
export declare namespace UpdateClusterRequest {
|
|
2100
|
-
/**
|
|
2101
|
-
* @internal
|
|
2102
|
-
*/
|
|
2103
|
-
const filterSensitiveLog: (obj: UpdateClusterRequest) => any;
|
|
2104
|
-
}
|
|
2105
1685
|
export interface UpdateClusterResult {
|
|
2106
1686
|
}
|
|
2107
|
-
export declare namespace UpdateClusterResult {
|
|
2108
|
-
/**
|
|
2109
|
-
* @internal
|
|
2110
|
-
*/
|
|
2111
|
-
const filterSensitiveLog: (obj: UpdateClusterResult) => any;
|
|
2112
|
-
}
|
|
2113
1687
|
export interface UpdateJobRequest {
|
|
2114
1688
|
/**
|
|
2115
1689
|
* <p>The job ID of the job that you want to update, for example
|
|
@@ -2166,20 +1740,8 @@ export interface UpdateJobRequest {
|
|
|
2166
1740
|
*/
|
|
2167
1741
|
ForwardingAddressId?: string;
|
|
2168
1742
|
}
|
|
2169
|
-
export declare namespace UpdateJobRequest {
|
|
2170
|
-
/**
|
|
2171
|
-
* @internal
|
|
2172
|
-
*/
|
|
2173
|
-
const filterSensitiveLog: (obj: UpdateJobRequest) => any;
|
|
2174
|
-
}
|
|
2175
1743
|
export interface UpdateJobResult {
|
|
2176
1744
|
}
|
|
2177
|
-
export declare namespace UpdateJobResult {
|
|
2178
|
-
/**
|
|
2179
|
-
* @internal
|
|
2180
|
-
*/
|
|
2181
|
-
const filterSensitiveLog: (obj: UpdateJobResult) => any;
|
|
2182
|
-
}
|
|
2183
1745
|
export declare enum ShipmentState {
|
|
2184
1746
|
RECEIVED = "RECEIVED",
|
|
2185
1747
|
RETURNED = "RETURNED"
|
|
@@ -2197,20 +1759,8 @@ export interface UpdateJobShipmentStateRequest {
|
|
|
2197
1759
|
*/
|
|
2198
1760
|
ShipmentState: ShipmentState | string | undefined;
|
|
2199
1761
|
}
|
|
2200
|
-
export declare namespace UpdateJobShipmentStateRequest {
|
|
2201
|
-
/**
|
|
2202
|
-
* @internal
|
|
2203
|
-
*/
|
|
2204
|
-
const filterSensitiveLog: (obj: UpdateJobShipmentStateRequest) => any;
|
|
2205
|
-
}
|
|
2206
1762
|
export interface UpdateJobShipmentStateResult {
|
|
2207
1763
|
}
|
|
2208
|
-
export declare namespace UpdateJobShipmentStateResult {
|
|
2209
|
-
/**
|
|
2210
|
-
* @internal
|
|
2211
|
-
*/
|
|
2212
|
-
const filterSensitiveLog: (obj: UpdateJobShipmentStateResult) => any;
|
|
2213
|
-
}
|
|
2214
1764
|
export interface UpdateLongTermPricingRequest {
|
|
2215
1765
|
/**
|
|
2216
1766
|
* <p>The ID of the long-term pricing type for the device.</p>
|
|
@@ -2227,17 +1777,313 @@ export interface UpdateLongTermPricingRequest {
|
|
|
2227
1777
|
*/
|
|
2228
1778
|
IsLongTermPricingAutoRenew?: boolean;
|
|
2229
1779
|
}
|
|
2230
|
-
export declare namespace UpdateLongTermPricingRequest {
|
|
2231
|
-
/**
|
|
2232
|
-
* @internal
|
|
2233
|
-
*/
|
|
2234
|
-
const filterSensitiveLog: (obj: UpdateLongTermPricingRequest) => any;
|
|
2235
|
-
}
|
|
2236
1780
|
export interface UpdateLongTermPricingResult {
|
|
2237
1781
|
}
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
1782
|
+
/**
|
|
1783
|
+
* @internal
|
|
1784
|
+
*/
|
|
1785
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1786
|
+
/**
|
|
1787
|
+
* @internal
|
|
1788
|
+
*/
|
|
1789
|
+
export declare const CancelClusterRequestFilterSensitiveLog: (obj: CancelClusterRequest) => any;
|
|
1790
|
+
/**
|
|
1791
|
+
* @internal
|
|
1792
|
+
*/
|
|
1793
|
+
export declare const CancelClusterResultFilterSensitiveLog: (obj: CancelClusterResult) => any;
|
|
1794
|
+
/**
|
|
1795
|
+
* @internal
|
|
1796
|
+
*/
|
|
1797
|
+
export declare const CancelJobRequestFilterSensitiveLog: (obj: CancelJobRequest) => any;
|
|
1798
|
+
/**
|
|
1799
|
+
* @internal
|
|
1800
|
+
*/
|
|
1801
|
+
export declare const CancelJobResultFilterSensitiveLog: (obj: CancelJobResult) => any;
|
|
1802
|
+
/**
|
|
1803
|
+
* @internal
|
|
1804
|
+
*/
|
|
1805
|
+
export declare const CreateAddressRequestFilterSensitiveLog: (obj: CreateAddressRequest) => any;
|
|
1806
|
+
/**
|
|
1807
|
+
* @internal
|
|
1808
|
+
*/
|
|
1809
|
+
export declare const CreateAddressResultFilterSensitiveLog: (obj: CreateAddressResult) => any;
|
|
1810
|
+
/**
|
|
1811
|
+
* @internal
|
|
1812
|
+
*/
|
|
1813
|
+
export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
|
|
1814
|
+
/**
|
|
1815
|
+
* @internal
|
|
1816
|
+
*/
|
|
1817
|
+
export declare const NFSOnDeviceServiceConfigurationFilterSensitiveLog: (obj: NFSOnDeviceServiceConfiguration) => any;
|
|
1818
|
+
/**
|
|
1819
|
+
* @internal
|
|
1820
|
+
*/
|
|
1821
|
+
export declare const TGWOnDeviceServiceConfigurationFilterSensitiveLog: (obj: TGWOnDeviceServiceConfiguration) => any;
|
|
1822
|
+
/**
|
|
1823
|
+
* @internal
|
|
1824
|
+
*/
|
|
1825
|
+
export declare const OnDeviceServiceConfigurationFilterSensitiveLog: (obj: OnDeviceServiceConfiguration) => any;
|
|
1826
|
+
/**
|
|
1827
|
+
* @internal
|
|
1828
|
+
*/
|
|
1829
|
+
export declare const Ec2AmiResourceFilterSensitiveLog: (obj: Ec2AmiResource) => any;
|
|
1830
|
+
/**
|
|
1831
|
+
* @internal
|
|
1832
|
+
*/
|
|
1833
|
+
export declare const EventTriggerDefinitionFilterSensitiveLog: (obj: EventTriggerDefinition) => any;
|
|
1834
|
+
/**
|
|
1835
|
+
* @internal
|
|
1836
|
+
*/
|
|
1837
|
+
export declare const LambdaResourceFilterSensitiveLog: (obj: LambdaResource) => any;
|
|
1838
|
+
/**
|
|
1839
|
+
* @internal
|
|
1840
|
+
*/
|
|
1841
|
+
export declare const KeyRangeFilterSensitiveLog: (obj: KeyRange) => any;
|
|
1842
|
+
/**
|
|
1843
|
+
* @internal
|
|
1844
|
+
*/
|
|
1845
|
+
export declare const TargetOnDeviceServiceFilterSensitiveLog: (obj: TargetOnDeviceService) => any;
|
|
1846
|
+
/**
|
|
1847
|
+
* @internal
|
|
1848
|
+
*/
|
|
1849
|
+
export declare const S3ResourceFilterSensitiveLog: (obj: S3Resource) => any;
|
|
1850
|
+
/**
|
|
1851
|
+
* @internal
|
|
1852
|
+
*/
|
|
1853
|
+
export declare const JobResourceFilterSensitiveLog: (obj: JobResource) => any;
|
|
1854
|
+
/**
|
|
1855
|
+
* @internal
|
|
1856
|
+
*/
|
|
1857
|
+
export declare const INDTaxDocumentsFilterSensitiveLog: (obj: INDTaxDocuments) => any;
|
|
1858
|
+
/**
|
|
1859
|
+
* @internal
|
|
1860
|
+
*/
|
|
1861
|
+
export declare const TaxDocumentsFilterSensitiveLog: (obj: TaxDocuments) => any;
|
|
1862
|
+
/**
|
|
1863
|
+
* @internal
|
|
1864
|
+
*/
|
|
1865
|
+
export declare const CreateClusterRequestFilterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
1866
|
+
/**
|
|
1867
|
+
* @internal
|
|
1868
|
+
*/
|
|
1869
|
+
export declare const CreateClusterResultFilterSensitiveLog: (obj: CreateClusterResult) => any;
|
|
1870
|
+
/**
|
|
1871
|
+
* @internal
|
|
1872
|
+
*/
|
|
1873
|
+
export declare const WirelessConnectionFilterSensitiveLog: (obj: WirelessConnection) => any;
|
|
1874
|
+
/**
|
|
1875
|
+
* @internal
|
|
1876
|
+
*/
|
|
1877
|
+
export declare const SnowconeDeviceConfigurationFilterSensitiveLog: (obj: SnowconeDeviceConfiguration) => any;
|
|
1878
|
+
/**
|
|
1879
|
+
* @internal
|
|
1880
|
+
*/
|
|
1881
|
+
export declare const DeviceConfigurationFilterSensitiveLog: (obj: DeviceConfiguration) => any;
|
|
1882
|
+
/**
|
|
1883
|
+
* @internal
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const CreateJobRequestFilterSensitiveLog: (obj: CreateJobRequest) => any;
|
|
1886
|
+
/**
|
|
1887
|
+
* @internal
|
|
1888
|
+
*/
|
|
1889
|
+
export declare const CreateJobResultFilterSensitiveLog: (obj: CreateJobResult) => any;
|
|
1890
|
+
/**
|
|
1891
|
+
* @internal
|
|
1892
|
+
*/
|
|
1893
|
+
export declare const CreateLongTermPricingRequestFilterSensitiveLog: (obj: CreateLongTermPricingRequest) => any;
|
|
1894
|
+
/**
|
|
1895
|
+
* @internal
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const CreateLongTermPricingResultFilterSensitiveLog: (obj: CreateLongTermPricingResult) => any;
|
|
1898
|
+
/**
|
|
1899
|
+
* @internal
|
|
1900
|
+
*/
|
|
1901
|
+
export declare const CreateReturnShippingLabelRequestFilterSensitiveLog: (obj: CreateReturnShippingLabelRequest) => any;
|
|
1902
|
+
/**
|
|
1903
|
+
* @internal
|
|
1904
|
+
*/
|
|
1905
|
+
export declare const CreateReturnShippingLabelResultFilterSensitiveLog: (obj: CreateReturnShippingLabelResult) => any;
|
|
1906
|
+
/**
|
|
1907
|
+
* @internal
|
|
1908
|
+
*/
|
|
1909
|
+
export declare const DescribeAddressRequestFilterSensitiveLog: (obj: DescribeAddressRequest) => any;
|
|
1910
|
+
/**
|
|
1911
|
+
* @internal
|
|
1912
|
+
*/
|
|
1913
|
+
export declare const DescribeAddressResultFilterSensitiveLog: (obj: DescribeAddressResult) => any;
|
|
1914
|
+
/**
|
|
1915
|
+
* @internal
|
|
1916
|
+
*/
|
|
1917
|
+
export declare const DescribeAddressesRequestFilterSensitiveLog: (obj: DescribeAddressesRequest) => any;
|
|
1918
|
+
/**
|
|
1919
|
+
* @internal
|
|
1920
|
+
*/
|
|
1921
|
+
export declare const DescribeAddressesResultFilterSensitiveLog: (obj: DescribeAddressesResult) => any;
|
|
1922
|
+
/**
|
|
1923
|
+
* @internal
|
|
1924
|
+
*/
|
|
1925
|
+
export declare const DescribeClusterRequestFilterSensitiveLog: (obj: DescribeClusterRequest) => any;
|
|
1926
|
+
/**
|
|
1927
|
+
* @internal
|
|
1928
|
+
*/
|
|
1929
|
+
export declare const ClusterMetadataFilterSensitiveLog: (obj: ClusterMetadata) => any;
|
|
1930
|
+
/**
|
|
1931
|
+
* @internal
|
|
1932
|
+
*/
|
|
1933
|
+
export declare const DescribeClusterResultFilterSensitiveLog: (obj: DescribeClusterResult) => any;
|
|
1934
|
+
/**
|
|
1935
|
+
* @internal
|
|
1936
|
+
*/
|
|
1937
|
+
export declare const DescribeJobRequestFilterSensitiveLog: (obj: DescribeJobRequest) => any;
|
|
1938
|
+
/**
|
|
1939
|
+
* @internal
|
|
1940
|
+
*/
|
|
1941
|
+
export declare const DataTransferFilterSensitiveLog: (obj: DataTransfer) => any;
|
|
1942
|
+
/**
|
|
1943
|
+
* @internal
|
|
1944
|
+
*/
|
|
1945
|
+
export declare const JobLogsFilterSensitiveLog: (obj: JobLogs) => any;
|
|
1946
|
+
/**
|
|
1947
|
+
* @internal
|
|
1948
|
+
*/
|
|
1949
|
+
export declare const ShipmentFilterSensitiveLog: (obj: Shipment) => any;
|
|
1950
|
+
/**
|
|
1951
|
+
* @internal
|
|
1952
|
+
*/
|
|
1953
|
+
export declare const ShippingDetailsFilterSensitiveLog: (obj: ShippingDetails) => any;
|
|
1954
|
+
/**
|
|
1955
|
+
* @internal
|
|
1956
|
+
*/
|
|
1957
|
+
export declare const JobMetadataFilterSensitiveLog: (obj: JobMetadata) => any;
|
|
1958
|
+
/**
|
|
1959
|
+
* @internal
|
|
1960
|
+
*/
|
|
1961
|
+
export declare const DescribeJobResultFilterSensitiveLog: (obj: DescribeJobResult) => any;
|
|
1962
|
+
/**
|
|
1963
|
+
* @internal
|
|
1964
|
+
*/
|
|
1965
|
+
export declare const DescribeReturnShippingLabelRequestFilterSensitiveLog: (obj: DescribeReturnShippingLabelRequest) => any;
|
|
1966
|
+
/**
|
|
1967
|
+
* @internal
|
|
1968
|
+
*/
|
|
1969
|
+
export declare const DescribeReturnShippingLabelResultFilterSensitiveLog: (obj: DescribeReturnShippingLabelResult) => any;
|
|
1970
|
+
/**
|
|
1971
|
+
* @internal
|
|
1972
|
+
*/
|
|
1973
|
+
export declare const GetJobManifestRequestFilterSensitiveLog: (obj: GetJobManifestRequest) => any;
|
|
1974
|
+
/**
|
|
1975
|
+
* @internal
|
|
1976
|
+
*/
|
|
1977
|
+
export declare const GetJobManifestResultFilterSensitiveLog: (obj: GetJobManifestResult) => any;
|
|
1978
|
+
/**
|
|
1979
|
+
* @internal
|
|
1980
|
+
*/
|
|
1981
|
+
export declare const GetJobUnlockCodeRequestFilterSensitiveLog: (obj: GetJobUnlockCodeRequest) => any;
|
|
1982
|
+
/**
|
|
1983
|
+
* @internal
|
|
1984
|
+
*/
|
|
1985
|
+
export declare const GetJobUnlockCodeResultFilterSensitiveLog: (obj: GetJobUnlockCodeResult) => any;
|
|
1986
|
+
/**
|
|
1987
|
+
* @internal
|
|
1988
|
+
*/
|
|
1989
|
+
export declare const GetSnowballUsageRequestFilterSensitiveLog: (obj: GetSnowballUsageRequest) => any;
|
|
1990
|
+
/**
|
|
1991
|
+
* @internal
|
|
1992
|
+
*/
|
|
1993
|
+
export declare const GetSnowballUsageResultFilterSensitiveLog: (obj: GetSnowballUsageResult) => any;
|
|
1994
|
+
/**
|
|
1995
|
+
* @internal
|
|
1996
|
+
*/
|
|
1997
|
+
export declare const GetSoftwareUpdatesRequestFilterSensitiveLog: (obj: GetSoftwareUpdatesRequest) => any;
|
|
1998
|
+
/**
|
|
1999
|
+
* @internal
|
|
2000
|
+
*/
|
|
2001
|
+
export declare const GetSoftwareUpdatesResultFilterSensitiveLog: (obj: GetSoftwareUpdatesResult) => any;
|
|
2002
|
+
/**
|
|
2003
|
+
* @internal
|
|
2004
|
+
*/
|
|
2005
|
+
export declare const ListClusterJobsRequestFilterSensitiveLog: (obj: ListClusterJobsRequest) => any;
|
|
2006
|
+
/**
|
|
2007
|
+
* @internal
|
|
2008
|
+
*/
|
|
2009
|
+
export declare const JobListEntryFilterSensitiveLog: (obj: JobListEntry) => any;
|
|
2010
|
+
/**
|
|
2011
|
+
* @internal
|
|
2012
|
+
*/
|
|
2013
|
+
export declare const ListClusterJobsResultFilterSensitiveLog: (obj: ListClusterJobsResult) => any;
|
|
2014
|
+
/**
|
|
2015
|
+
* @internal
|
|
2016
|
+
*/
|
|
2017
|
+
export declare const ListClustersRequestFilterSensitiveLog: (obj: ListClustersRequest) => any;
|
|
2018
|
+
/**
|
|
2019
|
+
* @internal
|
|
2020
|
+
*/
|
|
2021
|
+
export declare const ClusterListEntryFilterSensitiveLog: (obj: ClusterListEntry) => any;
|
|
2022
|
+
/**
|
|
2023
|
+
* @internal
|
|
2024
|
+
*/
|
|
2025
|
+
export declare const ListClustersResultFilterSensitiveLog: (obj: ListClustersResult) => any;
|
|
2026
|
+
/**
|
|
2027
|
+
* @internal
|
|
2028
|
+
*/
|
|
2029
|
+
export declare const ListCompatibleImagesRequestFilterSensitiveLog: (obj: ListCompatibleImagesRequest) => any;
|
|
2030
|
+
/**
|
|
2031
|
+
* @internal
|
|
2032
|
+
*/
|
|
2033
|
+
export declare const CompatibleImageFilterSensitiveLog: (obj: CompatibleImage) => any;
|
|
2034
|
+
/**
|
|
2035
|
+
* @internal
|
|
2036
|
+
*/
|
|
2037
|
+
export declare const ListCompatibleImagesResultFilterSensitiveLog: (obj: ListCompatibleImagesResult) => any;
|
|
2038
|
+
/**
|
|
2039
|
+
* @internal
|
|
2040
|
+
*/
|
|
2041
|
+
export declare const ListJobsRequestFilterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
2042
|
+
/**
|
|
2043
|
+
* @internal
|
|
2044
|
+
*/
|
|
2045
|
+
export declare const ListJobsResultFilterSensitiveLog: (obj: ListJobsResult) => any;
|
|
2046
|
+
/**
|
|
2047
|
+
* @internal
|
|
2048
|
+
*/
|
|
2049
|
+
export declare const ListLongTermPricingRequestFilterSensitiveLog: (obj: ListLongTermPricingRequest) => any;
|
|
2050
|
+
/**
|
|
2051
|
+
* @internal
|
|
2052
|
+
*/
|
|
2053
|
+
export declare const LongTermPricingListEntryFilterSensitiveLog: (obj: LongTermPricingListEntry) => any;
|
|
2054
|
+
/**
|
|
2055
|
+
* @internal
|
|
2056
|
+
*/
|
|
2057
|
+
export declare const ListLongTermPricingResultFilterSensitiveLog: (obj: ListLongTermPricingResult) => any;
|
|
2058
|
+
/**
|
|
2059
|
+
* @internal
|
|
2060
|
+
*/
|
|
2061
|
+
export declare const UpdateClusterRequestFilterSensitiveLog: (obj: UpdateClusterRequest) => any;
|
|
2062
|
+
/**
|
|
2063
|
+
* @internal
|
|
2064
|
+
*/
|
|
2065
|
+
export declare const UpdateClusterResultFilterSensitiveLog: (obj: UpdateClusterResult) => any;
|
|
2066
|
+
/**
|
|
2067
|
+
* @internal
|
|
2068
|
+
*/
|
|
2069
|
+
export declare const UpdateJobRequestFilterSensitiveLog: (obj: UpdateJobRequest) => any;
|
|
2070
|
+
/**
|
|
2071
|
+
* @internal
|
|
2072
|
+
*/
|
|
2073
|
+
export declare const UpdateJobResultFilterSensitiveLog: (obj: UpdateJobResult) => any;
|
|
2074
|
+
/**
|
|
2075
|
+
* @internal
|
|
2076
|
+
*/
|
|
2077
|
+
export declare const UpdateJobShipmentStateRequestFilterSensitiveLog: (obj: UpdateJobShipmentStateRequest) => any;
|
|
2078
|
+
/**
|
|
2079
|
+
* @internal
|
|
2080
|
+
*/
|
|
2081
|
+
export declare const UpdateJobShipmentStateResultFilterSensitiveLog: (obj: UpdateJobShipmentStateResult) => any;
|
|
2082
|
+
/**
|
|
2083
|
+
* @internal
|
|
2084
|
+
*/
|
|
2085
|
+
export declare const UpdateLongTermPricingRequestFilterSensitiveLog: (obj: UpdateLongTermPricingRequest) => any;
|
|
2086
|
+
/**
|
|
2087
|
+
* @internal
|
|
2088
|
+
*/
|
|
2089
|
+
export declare const UpdateLongTermPricingResultFilterSensitiveLog: (obj: UpdateLongTermPricingResult) => any;
|