@aws-sdk/client-outposts 3.689.0 → 3.692.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 +261 -261
- package/dist-types/ts3.4/models/models_0.d.ts +261 -261
- package/package.json +35 -35
|
@@ -7,7 +7,7 @@ import { OutpostsServiceException as __BaseException } from "./OutpostsServiceEx
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -22,12 +22,12 @@ export interface Address {
|
|
|
22
22
|
* <p>The name of the contact.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
ContactName?: string;
|
|
25
|
+
ContactName?: string | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* <p>The phone number of the contact.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
ContactPhoneNumber?: string;
|
|
30
|
+
ContactPhoneNumber?: string | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>The first line of the address.</p>
|
|
33
33
|
* @public
|
|
@@ -37,12 +37,12 @@ export interface Address {
|
|
|
37
37
|
* <p>The second line of the address.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
AddressLine2?: string;
|
|
40
|
+
AddressLine2?: string | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* <p>The third line of the address.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
AddressLine3?: string;
|
|
45
|
+
AddressLine3?: string | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The city for the address.</p>
|
|
48
48
|
* @public
|
|
@@ -57,7 +57,7 @@ export interface Address {
|
|
|
57
57
|
* <p>The district or county for the address.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
DistrictOrCounty?: string;
|
|
60
|
+
DistrictOrCounty?: string | undefined;
|
|
61
61
|
/**
|
|
62
62
|
* <p>The postal code for the address.</p>
|
|
63
63
|
* @public
|
|
@@ -72,7 +72,7 @@ export interface Address {
|
|
|
72
72
|
* <p>The municipality for the address.</p>
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
|
-
Municipality?: string;
|
|
75
|
+
Municipality?: string | undefined;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* @public
|
|
@@ -95,7 +95,7 @@ export interface AssetLocation {
|
|
|
95
95
|
* <p> The position of an asset in a rack measured in rack units. </p>
|
|
96
96
|
* @public
|
|
97
97
|
*/
|
|
98
|
-
RackElevation?: number;
|
|
98
|
+
RackElevation?: number | undefined;
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
101
|
* @public
|
|
@@ -146,7 +146,7 @@ export interface ComputeAttributes {
|
|
|
146
146
|
* <p> The host ID of the Dedicated Host on the asset. </p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
HostId?: string;
|
|
149
|
+
HostId?: string | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* <p>The state.</p>
|
|
152
152
|
* <ul>
|
|
@@ -166,24 +166,24 @@ export interface ComputeAttributes {
|
|
|
166
166
|
* </ul>
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
State?: ComputeAssetState;
|
|
169
|
+
State?: ComputeAssetState | undefined;
|
|
170
170
|
/**
|
|
171
171
|
* <p>A list of the names of instance families that are currently associated with a given
|
|
172
172
|
* asset.</p>
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
InstanceFamilies?: string[];
|
|
175
|
+
InstanceFamilies?: string[] | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* <p>The instance type capacities configured for this asset. This can be changed through a
|
|
178
178
|
* capacity task.</p>
|
|
179
179
|
* @public
|
|
180
180
|
*/
|
|
181
|
-
InstanceTypeCapacities?: AssetInstanceTypeCapacity[];
|
|
181
|
+
InstanceTypeCapacities?: AssetInstanceTypeCapacity[] | undefined;
|
|
182
182
|
/**
|
|
183
183
|
* <p>The maximum number of vCPUs possible for the specified asset.</p>
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
|
-
MaxVcpus?: number;
|
|
186
|
+
MaxVcpus?: number | undefined;
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
189
|
* <p> Information about hardware assets. </p>
|
|
@@ -194,27 +194,27 @@ export interface AssetInfo {
|
|
|
194
194
|
* <p> The ID of the asset. </p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
AssetId?: string;
|
|
197
|
+
AssetId?: string | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* <p> The rack ID of the asset. </p>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
RackId?: string;
|
|
202
|
+
RackId?: string | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* <p> The type of the asset. </p>
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
AssetType?: AssetType;
|
|
207
|
+
AssetType?: AssetType | undefined;
|
|
208
208
|
/**
|
|
209
209
|
* <p> Information about compute hardware assets. </p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
ComputeAttributes?: ComputeAttributes;
|
|
212
|
+
ComputeAttributes?: ComputeAttributes | undefined;
|
|
213
213
|
/**
|
|
214
214
|
* <p> The position of an asset in a rack. </p>
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
AssetLocation?: AssetLocation;
|
|
217
|
+
AssetLocation?: AssetLocation | undefined;
|
|
218
218
|
}
|
|
219
219
|
/**
|
|
220
220
|
* @public
|
|
@@ -241,27 +241,27 @@ export interface AssetInstance {
|
|
|
241
241
|
* <p>The ID of the instance.</p>
|
|
242
242
|
* @public
|
|
243
243
|
*/
|
|
244
|
-
InstanceId?: string;
|
|
244
|
+
InstanceId?: string | undefined;
|
|
245
245
|
/**
|
|
246
246
|
* <p>The type of instance.</p>
|
|
247
247
|
* @public
|
|
248
248
|
*/
|
|
249
|
-
InstanceType?: string;
|
|
249
|
+
InstanceType?: string | undefined;
|
|
250
250
|
/**
|
|
251
251
|
* <p>The ID of the asset.</p>
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
AssetId?: string;
|
|
254
|
+
AssetId?: string | undefined;
|
|
255
255
|
/**
|
|
256
256
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
257
257
|
* @public
|
|
258
258
|
*/
|
|
259
|
-
AccountId?: string;
|
|
259
|
+
AccountId?: string | undefined;
|
|
260
260
|
/**
|
|
261
261
|
* <p>The Amazon Web Services service name of the instance.</p>
|
|
262
262
|
* @public
|
|
263
263
|
*/
|
|
264
|
-
AwsServiceName?: AWSServiceName;
|
|
264
|
+
AwsServiceName?: AWSServiceName | undefined;
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* @public
|
|
@@ -286,17 +286,17 @@ export interface BlockingInstance {
|
|
|
286
286
|
* <p>The ID of the blocking instance.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
InstanceId?: string;
|
|
289
|
+
InstanceId?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
AccountId?: string;
|
|
294
|
+
AccountId?: string | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>The Amazon Web Services service name that owns the specified blocking instance.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
AwsServiceName?: AWSServiceName;
|
|
299
|
+
AwsServiceName?: AWSServiceName | undefined;
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
302
|
* @public
|
|
@@ -337,17 +337,17 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
337
337
|
export declare class ConflictException extends __BaseException {
|
|
338
338
|
readonly name: "ConflictException";
|
|
339
339
|
readonly $fault: "client";
|
|
340
|
-
Message?: string;
|
|
340
|
+
Message?: string | undefined;
|
|
341
341
|
/**
|
|
342
342
|
* <p>The ID of the resource causing the conflict.</p>
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
|
-
ResourceId?: string;
|
|
345
|
+
ResourceId?: string | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* <p>The type of the resource causing the conflict.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
ResourceType?: ResourceType;
|
|
350
|
+
ResourceType?: ResourceType | undefined;
|
|
351
351
|
/**
|
|
352
352
|
* @internal
|
|
353
353
|
*/
|
|
@@ -360,7 +360,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
360
360
|
export declare class InternalServerException extends __BaseException {
|
|
361
361
|
readonly name: "InternalServerException";
|
|
362
362
|
readonly $fault: "server";
|
|
363
|
-
Message?: string;
|
|
363
|
+
Message?: string | undefined;
|
|
364
364
|
/**
|
|
365
365
|
* @internal
|
|
366
366
|
*/
|
|
@@ -373,7 +373,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
373
373
|
export declare class NotFoundException extends __BaseException {
|
|
374
374
|
readonly name: "NotFoundException";
|
|
375
375
|
readonly $fault: "client";
|
|
376
|
-
Message?: string;
|
|
376
|
+
Message?: string | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* @internal
|
|
379
379
|
*/
|
|
@@ -386,7 +386,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
386
386
|
export declare class ValidationException extends __BaseException {
|
|
387
387
|
readonly name: "ValidationException";
|
|
388
388
|
readonly $fault: "client";
|
|
389
|
-
Message?: string;
|
|
389
|
+
Message?: string | undefined;
|
|
390
390
|
/**
|
|
391
391
|
* @internal
|
|
392
392
|
*/
|
|
@@ -436,7 +436,7 @@ export interface CapacityTaskFailure {
|
|
|
436
436
|
* <p>The type of failure.</p>
|
|
437
437
|
* @public
|
|
438
438
|
*/
|
|
439
|
-
Type?: CapacityTaskFailureType;
|
|
439
|
+
Type?: CapacityTaskFailureType | undefined;
|
|
440
440
|
}
|
|
441
441
|
/**
|
|
442
442
|
* @public
|
|
@@ -464,37 +464,37 @@ export interface CapacityTaskSummary {
|
|
|
464
464
|
* <p>The ID of the specified capacity task.</p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
CapacityTaskId?: string;
|
|
467
|
+
CapacityTaskId?: string | undefined;
|
|
468
468
|
/**
|
|
469
469
|
* <p>The ID of the Outpost associated with the specified capacity task.</p>
|
|
470
470
|
* @public
|
|
471
471
|
*/
|
|
472
|
-
OutpostId?: string;
|
|
472
|
+
OutpostId?: string | undefined;
|
|
473
473
|
/**
|
|
474
474
|
* <p>The ID of the Amazon Web Services Outposts order of the host associated with the capacity task.</p>
|
|
475
475
|
* @public
|
|
476
476
|
*/
|
|
477
|
-
OrderId?: string;
|
|
477
|
+
OrderId?: string | undefined;
|
|
478
478
|
/**
|
|
479
479
|
* <p>The status of the capacity task.</p>
|
|
480
480
|
* @public
|
|
481
481
|
*/
|
|
482
|
-
CapacityTaskStatus?: CapacityTaskStatus;
|
|
482
|
+
CapacityTaskStatus?: CapacityTaskStatus | undefined;
|
|
483
483
|
/**
|
|
484
484
|
* <p>The date that the specified capacity task was created.</p>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
CreationDate?: Date;
|
|
487
|
+
CreationDate?: Date | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* <p>The date that the specified capacity task successfully ran.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
CompletionDate?: Date;
|
|
492
|
+
CompletionDate?: Date | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>The date that the specified capacity was last modified.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
LastModifiedDate?: Date;
|
|
497
|
+
LastModifiedDate?: Date | undefined;
|
|
498
498
|
}
|
|
499
499
|
/**
|
|
500
500
|
* <p> Information about EC2 capacity. </p>
|
|
@@ -505,17 +505,17 @@ export interface EC2Capacity {
|
|
|
505
505
|
* <p> The family of the EC2 capacity. </p>
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
Family?: string;
|
|
508
|
+
Family?: string | undefined;
|
|
509
509
|
/**
|
|
510
510
|
* <p> The maximum size of the EC2 capacity. </p>
|
|
511
511
|
* @public
|
|
512
512
|
*/
|
|
513
|
-
MaxSize?: string;
|
|
513
|
+
MaxSize?: string | undefined;
|
|
514
514
|
/**
|
|
515
515
|
* <p> The quantity of the EC2 capacity. </p>
|
|
516
516
|
* @public
|
|
517
517
|
*/
|
|
518
|
-
Quantity?: string;
|
|
518
|
+
Quantity?: string | undefined;
|
|
519
519
|
}
|
|
520
520
|
/**
|
|
521
521
|
* @public
|
|
@@ -550,37 +550,37 @@ export interface CatalogItem {
|
|
|
550
550
|
* <p> The ID of the catalog item. </p>
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
CatalogItemId?: string;
|
|
553
|
+
CatalogItemId?: string | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* <p> The status of a catalog item. </p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
ItemStatus?: CatalogItemStatus;
|
|
558
|
+
ItemStatus?: CatalogItemStatus | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p> Information about the EC2 capacity of an item. </p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
EC2Capacities?: EC2Capacity[];
|
|
563
|
+
EC2Capacities?: EC2Capacity[] | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* <p> Information about the power draw of an item. </p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
PowerKva?: number;
|
|
568
|
+
PowerKva?: number | undefined;
|
|
569
569
|
/**
|
|
570
570
|
* <p> The weight of the item in pounds. </p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
WeightLbs?: number;
|
|
573
|
+
WeightLbs?: number | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p> The uplink speed this catalog item requires for the connection to the Region. </p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
SupportedUplinkGbps?: number[];
|
|
578
|
+
SupportedUplinkGbps?: number[] | undefined;
|
|
579
579
|
/**
|
|
580
580
|
* <p> The supported storage options for the catalog item. </p>
|
|
581
581
|
* @public
|
|
582
582
|
*/
|
|
583
|
-
SupportedStorage?: SupportedStorageEnum[];
|
|
583
|
+
SupportedStorage?: SupportedStorageEnum[] | undefined;
|
|
584
584
|
}
|
|
585
585
|
/**
|
|
586
586
|
* @public
|
|
@@ -603,32 +603,32 @@ export interface ConnectionDetails {
|
|
|
603
603
|
* <p> The public key of the client. </p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
ClientPublicKey?: string;
|
|
606
|
+
ClientPublicKey?: string | undefined;
|
|
607
607
|
/**
|
|
608
608
|
* <p> The public key of the server. </p>
|
|
609
609
|
* @public
|
|
610
610
|
*/
|
|
611
|
-
ServerPublicKey?: string;
|
|
611
|
+
ServerPublicKey?: string | undefined;
|
|
612
612
|
/**
|
|
613
613
|
* <p> The endpoint for the server. </p>
|
|
614
614
|
* @public
|
|
615
615
|
*/
|
|
616
|
-
ServerEndpoint?: string;
|
|
616
|
+
ServerEndpoint?: string | undefined;
|
|
617
617
|
/**
|
|
618
618
|
* <p> The client tunnel address. </p>
|
|
619
619
|
* @public
|
|
620
620
|
*/
|
|
621
|
-
ClientTunnelAddress?: string;
|
|
621
|
+
ClientTunnelAddress?: string | undefined;
|
|
622
622
|
/**
|
|
623
623
|
* <p> The server tunnel address. </p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
ServerTunnelAddress?: string;
|
|
626
|
+
ServerTunnelAddress?: string | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p> The allowed IP addresses. </p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
AllowedIps?: string[];
|
|
631
|
+
AllowedIps?: string[] | undefined;
|
|
632
632
|
}
|
|
633
633
|
/**
|
|
634
634
|
* <p>Information about a line item request.</p>
|
|
@@ -639,12 +639,12 @@ export interface LineItemRequest {
|
|
|
639
639
|
* <p>The ID of the catalog item.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
CatalogItemId?: string;
|
|
642
|
+
CatalogItemId?: string | undefined;
|
|
643
643
|
/**
|
|
644
644
|
* <p>The quantity of a line item request.</p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
Quantity?: number;
|
|
647
|
+
Quantity?: number | undefined;
|
|
648
648
|
}
|
|
649
649
|
/**
|
|
650
650
|
* @public
|
|
@@ -694,7 +694,7 @@ export interface CreateOrderInput {
|
|
|
694
694
|
* <p>The payment terms.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
PaymentTerm?: PaymentTerm;
|
|
697
|
+
PaymentTerm?: PaymentTerm | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* <p> Information about a line item asset. </p>
|
|
@@ -705,12 +705,12 @@ export interface LineItemAssetInformation {
|
|
|
705
705
|
* <p> The ID of the asset. </p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
AssetId?: string;
|
|
708
|
+
AssetId?: string | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p> The MAC addresses of the asset. </p>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
MacAddressList?: string[];
|
|
713
|
+
MacAddressList?: string[] | undefined;
|
|
714
714
|
}
|
|
715
715
|
/**
|
|
716
716
|
* @public
|
|
@@ -736,12 +736,12 @@ export interface ShipmentInformation {
|
|
|
736
736
|
* <p> The tracking number of the shipment. </p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
ShipmentTrackingNumber?: string;
|
|
739
|
+
ShipmentTrackingNumber?: string | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p> The carrier of the shipment. </p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
ShipmentCarrier?: ShipmentCarrier;
|
|
744
|
+
ShipmentCarrier?: ShipmentCarrier | undefined;
|
|
745
745
|
}
|
|
746
746
|
/**
|
|
747
747
|
* @public
|
|
@@ -771,42 +771,42 @@ export interface LineItem {
|
|
|
771
771
|
* <p> The ID of the catalog item.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
CatalogItemId?: string;
|
|
774
|
+
CatalogItemId?: string | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>The ID of the line item.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
LineItemId?: string;
|
|
779
|
+
LineItemId?: string | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>The quantity of the line item.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
Quantity?: number;
|
|
784
|
+
Quantity?: number | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>The status of the line item.</p>
|
|
787
787
|
* @public
|
|
788
788
|
*/
|
|
789
|
-
Status?: LineItemStatus;
|
|
789
|
+
Status?: LineItemStatus | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* <p> Information about a line item shipment. </p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
ShipmentInformation?: ShipmentInformation;
|
|
794
|
+
ShipmentInformation?: ShipmentInformation | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p> Information about assets. </p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
|
-
AssetInformationList?: LineItemAssetInformation[];
|
|
799
|
+
AssetInformationList?: LineItemAssetInformation[] | undefined;
|
|
800
800
|
/**
|
|
801
801
|
* <p>The ID of the previous line item.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
PreviousLineItemId?: string;
|
|
804
|
+
PreviousLineItemId?: string | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <p>The ID of the previous order.</p>
|
|
807
807
|
* @public
|
|
808
808
|
*/
|
|
809
|
-
PreviousOrderId?: string;
|
|
809
|
+
PreviousOrderId?: string | undefined;
|
|
810
810
|
}
|
|
811
811
|
/**
|
|
812
812
|
* @public
|
|
@@ -850,12 +850,12 @@ export interface Order {
|
|
|
850
850
|
* <p> The ID of the Outpost in the order. </p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
OutpostId?: string;
|
|
853
|
+
OutpostId?: string | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>The ID of the order.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
OrderId?: string;
|
|
858
|
+
OrderId?: string | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>The status of the order.</p>
|
|
861
861
|
* <ul>
|
|
@@ -891,37 +891,37 @@ export interface Order {
|
|
|
891
891
|
* </note>
|
|
892
892
|
* @public
|
|
893
893
|
*/
|
|
894
|
-
Status?: OrderStatus;
|
|
894
|
+
Status?: OrderStatus | undefined;
|
|
895
895
|
/**
|
|
896
896
|
* <p>The line items for the order</p>
|
|
897
897
|
* @public
|
|
898
898
|
*/
|
|
899
|
-
LineItems?: LineItem[];
|
|
899
|
+
LineItems?: LineItem[] | undefined;
|
|
900
900
|
/**
|
|
901
901
|
* <p>The payment option for the order.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
PaymentOption?: PaymentOption;
|
|
904
|
+
PaymentOption?: PaymentOption | undefined;
|
|
905
905
|
/**
|
|
906
906
|
* <p>The submission date for the order.</p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
OrderSubmissionDate?: Date;
|
|
909
|
+
OrderSubmissionDate?: Date | undefined;
|
|
910
910
|
/**
|
|
911
911
|
* <p>The fulfillment date of the order.</p>
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
OrderFulfilledDate?: Date;
|
|
914
|
+
OrderFulfilledDate?: Date | undefined;
|
|
915
915
|
/**
|
|
916
916
|
* <p>The payment term.</p>
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
PaymentTerm?: PaymentTerm;
|
|
919
|
+
PaymentTerm?: PaymentTerm | undefined;
|
|
920
920
|
/**
|
|
921
921
|
* <p>The type of order.</p>
|
|
922
922
|
* @public
|
|
923
923
|
*/
|
|
924
|
-
OrderType?: OrderType;
|
|
924
|
+
OrderType?: OrderType | undefined;
|
|
925
925
|
}
|
|
926
926
|
/**
|
|
927
927
|
* @public
|
|
@@ -931,7 +931,7 @@ export interface CreateOrderOutput {
|
|
|
931
931
|
* <p>Information about this order.</p>
|
|
932
932
|
* @public
|
|
933
933
|
*/
|
|
934
|
-
Order?: Order;
|
|
934
|
+
Order?: Order | undefined;
|
|
935
935
|
}
|
|
936
936
|
/**
|
|
937
937
|
* <p>You have exceeded a service quota.</p>
|
|
@@ -940,7 +940,7 @@ export interface CreateOrderOutput {
|
|
|
940
940
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
941
941
|
readonly name: "ServiceQuotaExceededException";
|
|
942
942
|
readonly $fault: "client";
|
|
943
|
-
Message?: string;
|
|
943
|
+
Message?: string | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* @internal
|
|
946
946
|
*/
|
|
@@ -971,7 +971,7 @@ export interface CreateOutpostInput {
|
|
|
971
971
|
* <p>The description of the Outpost.</p>
|
|
972
972
|
* @public
|
|
973
973
|
*/
|
|
974
|
-
Description?: string;
|
|
974
|
+
Description?: string | undefined;
|
|
975
975
|
/**
|
|
976
976
|
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
977
977
|
* @public
|
|
@@ -981,22 +981,22 @@ export interface CreateOutpostInput {
|
|
|
981
981
|
* <p>The Availability Zone.</p>
|
|
982
982
|
* @public
|
|
983
983
|
*/
|
|
984
|
-
AvailabilityZone?: string;
|
|
984
|
+
AvailabilityZone?: string | undefined;
|
|
985
985
|
/**
|
|
986
986
|
* <p>The ID of the Availability Zone.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
AvailabilityZoneId?: string;
|
|
989
|
+
AvailabilityZoneId?: string | undefined;
|
|
990
990
|
/**
|
|
991
991
|
* <p>The tags to apply to the Outpost.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
Tags?: Record<string, string
|
|
994
|
+
Tags?: Record<string, string> | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p> The type of hardware for this Outpost. </p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
SupportedHardwareType?: SupportedHardwareType;
|
|
999
|
+
SupportedHardwareType?: SupportedHardwareType | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>Information about an Outpost.</p>
|
|
@@ -1007,62 +1007,62 @@ export interface Outpost {
|
|
|
1007
1007
|
* <p> The ID of the Outpost. </p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
OutpostId?: string;
|
|
1010
|
+
OutpostId?: string | undefined;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* <p>The Amazon Web Services account ID of the Outpost owner.</p>
|
|
1013
1013
|
* @public
|
|
1014
1014
|
*/
|
|
1015
|
-
OwnerId?: string;
|
|
1015
|
+
OwnerId?: string | undefined;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
OutpostArn?: string;
|
|
1020
|
+
OutpostArn?: string | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>The ID of the site.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
SiteId?: string;
|
|
1025
|
+
SiteId?: string | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>The name of the Outpost.</p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
Name?: string;
|
|
1030
|
+
Name?: string | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p>The description of the Outpost.</p>
|
|
1033
1033
|
* @public
|
|
1034
1034
|
*/
|
|
1035
|
-
Description?: string;
|
|
1035
|
+
Description?: string | undefined;
|
|
1036
1036
|
/**
|
|
1037
1037
|
* <p>The life cycle status.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
LifeCycleStatus?: string;
|
|
1040
|
+
LifeCycleStatus?: string | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>The Availability Zone.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
AvailabilityZone?: string;
|
|
1045
|
+
AvailabilityZone?: string | undefined;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* <p>The ID of the Availability Zone.</p>
|
|
1048
1048
|
* @public
|
|
1049
1049
|
*/
|
|
1050
|
-
AvailabilityZoneId?: string;
|
|
1050
|
+
AvailabilityZoneId?: string | undefined;
|
|
1051
1051
|
/**
|
|
1052
1052
|
* <p>The Outpost tags.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
Tags?: Record<string, string
|
|
1055
|
+
Tags?: Record<string, string> | undefined;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
SiteArn?: string;
|
|
1060
|
+
SiteArn?: string | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p> The hardware type. </p>
|
|
1063
1063
|
* @public
|
|
1064
1064
|
*/
|
|
1065
|
-
SupportedHardwareType?: SupportedHardwareType;
|
|
1065
|
+
SupportedHardwareType?: SupportedHardwareType | undefined;
|
|
1066
1066
|
}
|
|
1067
1067
|
/**
|
|
1068
1068
|
* @public
|
|
@@ -1072,7 +1072,7 @@ export interface CreateOutpostOutput {
|
|
|
1072
1072
|
* <p>Information about an Outpost.</p>
|
|
1073
1073
|
* @public
|
|
1074
1074
|
*/
|
|
1075
|
-
Outpost?: Outpost;
|
|
1075
|
+
Outpost?: Outpost | undefined;
|
|
1076
1076
|
}
|
|
1077
1077
|
/**
|
|
1078
1078
|
* @public
|
|
@@ -1223,37 +1223,37 @@ export interface RackPhysicalProperties {
|
|
|
1223
1223
|
* <p>The power draw available at the hardware placement position for the rack. </p>
|
|
1224
1224
|
* @public
|
|
1225
1225
|
*/
|
|
1226
|
-
PowerDrawKva?: PowerDrawKva;
|
|
1226
|
+
PowerDrawKva?: PowerDrawKva | undefined;
|
|
1227
1227
|
/**
|
|
1228
1228
|
* <p>The power option that you can provide for hardware.</p>
|
|
1229
1229
|
* @public
|
|
1230
1230
|
*/
|
|
1231
|
-
PowerPhase?: PowerPhase;
|
|
1231
|
+
PowerPhase?: PowerPhase | undefined;
|
|
1232
1232
|
/**
|
|
1233
1233
|
* <p>The power connector for the hardware. </p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
PowerConnector?: PowerConnector;
|
|
1236
|
+
PowerConnector?: PowerConnector | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>The position of the power feed.</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
PowerFeedDrop?: PowerFeedDrop;
|
|
1241
|
+
PowerFeedDrop?: PowerFeedDrop | undefined;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* <p>The uplink speed the rack supports for the connection to the Region. </p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
UplinkGbps?: UplinkGbps;
|
|
1246
|
+
UplinkGbps?: UplinkGbps | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>The number of uplinks each Outpost network device.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
UplinkCount?: UplinkCount;
|
|
1251
|
+
UplinkCount?: UplinkCount | undefined;
|
|
1252
1252
|
/**
|
|
1253
1253
|
* <p>The type of fiber used to attach the Outpost to the network. </p>
|
|
1254
1254
|
* @public
|
|
1255
1255
|
*/
|
|
1256
|
-
FiberOpticCableType?: FiberOpticCableType;
|
|
1256
|
+
FiberOpticCableType?: FiberOpticCableType | undefined;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* <p>The type of optical standard used to attach the Outpost to the network. This field is
|
|
1259
1259
|
* dependent on uplink speed, fiber type, and distance to the upstream device.
|
|
@@ -1263,13 +1263,13 @@ export interface RackPhysicalProperties {
|
|
|
1263
1263
|
* </p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
OpticalStandard?: OpticalStandard;
|
|
1266
|
+
OpticalStandard?: OpticalStandard | undefined;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over 2000 lbs
|
|
1269
1269
|
* (907 kg). </p>
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs;
|
|
1272
|
+
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | undefined;
|
|
1273
1273
|
}
|
|
1274
1274
|
/**
|
|
1275
1275
|
* @public
|
|
@@ -1284,31 +1284,31 @@ export interface CreateSiteInput {
|
|
|
1284
1284
|
* <p>The description of the site.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
Description?: string;
|
|
1287
|
+
Description?: string | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>Additional information that you provide about site access requirements, electrician
|
|
1290
1290
|
* scheduling, personal protective equipment, or regulation of equipment materials that could
|
|
1291
1291
|
* affect your installation process. </p>
|
|
1292
1292
|
* @public
|
|
1293
1293
|
*/
|
|
1294
|
-
Notes?: string;
|
|
1294
|
+
Notes?: string | undefined;
|
|
1295
1295
|
/**
|
|
1296
1296
|
* <p> The tags to apply to a site. </p>
|
|
1297
1297
|
* @public
|
|
1298
1298
|
*/
|
|
1299
|
-
Tags?: Record<string, string
|
|
1299
|
+
Tags?: Record<string, string> | undefined;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* <p> The location to install and power on the hardware. This address might be different from
|
|
1302
1302
|
* the shipping address. </p>
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
OperatingAddress?: Address;
|
|
1305
|
+
OperatingAddress?: Address | undefined;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* <p> The location to ship the hardware. This address might be different from the operating
|
|
1308
1308
|
* address. </p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
ShippingAddress?: Address;
|
|
1311
|
+
ShippingAddress?: Address | undefined;
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p> Information about the physical and logistical details for the rack at this site.
|
|
1314
1314
|
* For more information
|
|
@@ -1317,7 +1317,7 @@ export interface CreateSiteInput {
|
|
|
1317
1317
|
* </p>
|
|
1318
1318
|
* @public
|
|
1319
1319
|
*/
|
|
1320
|
-
RackPhysicalProperties?: RackPhysicalProperties;
|
|
1320
|
+
RackPhysicalProperties?: RackPhysicalProperties | undefined;
|
|
1321
1321
|
}
|
|
1322
1322
|
/**
|
|
1323
1323
|
* <p>Information about a site.</p>
|
|
@@ -1328,58 +1328,58 @@ export interface Site {
|
|
|
1328
1328
|
* <p>The ID of the site.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
SiteId?: string;
|
|
1331
|
+
SiteId?: string | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
AccountId?: string;
|
|
1336
|
+
AccountId?: string | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>The name of the site.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
Name?: string;
|
|
1341
|
+
Name?: string | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>The description of the site.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
Description?: string;
|
|
1346
|
+
Description?: string | undefined;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* <p>The site tags.</p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
Tags?: Record<string, string
|
|
1351
|
+
Tags?: Record<string, string> | undefined;
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
SiteArn?: string;
|
|
1356
|
+
SiteArn?: string | undefined;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* <p> Notes about a site. </p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
Notes?: string;
|
|
1361
|
+
Notes?: string | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p> The ISO-3166 two-letter country code where the hardware is installed and powered on.
|
|
1364
1364
|
* </p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
OperatingAddressCountryCode?: string;
|
|
1367
|
+
OperatingAddressCountryCode?: string | undefined;
|
|
1368
1368
|
/**
|
|
1369
1369
|
* <p> State or region where the hardware is installed and powered on. </p>
|
|
1370
1370
|
* @public
|
|
1371
1371
|
*/
|
|
1372
|
-
OperatingAddressStateOrRegion?: string;
|
|
1372
|
+
OperatingAddressStateOrRegion?: string | undefined;
|
|
1373
1373
|
/**
|
|
1374
1374
|
* <p> City where the hardware is installed and powered on. </p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
OperatingAddressCity?: string;
|
|
1377
|
+
OperatingAddressCity?: string | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p> Information about the physical and logistical details for a rack at the site. </p>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
RackPhysicalProperties?: RackPhysicalProperties;
|
|
1382
|
+
RackPhysicalProperties?: RackPhysicalProperties | undefined;
|
|
1383
1383
|
}
|
|
1384
1384
|
/**
|
|
1385
1385
|
* @public
|
|
@@ -1389,7 +1389,7 @@ export interface CreateSiteOutput {
|
|
|
1389
1389
|
* <p>Information about a site.</p>
|
|
1390
1390
|
* @public
|
|
1391
1391
|
*/
|
|
1392
|
-
Site?: Site;
|
|
1392
|
+
Site?: Site | undefined;
|
|
1393
1393
|
}
|
|
1394
1394
|
/**
|
|
1395
1395
|
* @public
|
|
@@ -1446,18 +1446,18 @@ export interface InstancesToExclude {
|
|
|
1446
1446
|
* <p>List of user-specified instances that must not be stopped.</p>
|
|
1447
1447
|
* @public
|
|
1448
1448
|
*/
|
|
1449
|
-
Instances?: string[];
|
|
1449
|
+
Instances?: string[] | undefined;
|
|
1450
1450
|
/**
|
|
1451
1451
|
* <p>IDs of the accounts that own each instance that must not be stopped.</p>
|
|
1452
1452
|
* @public
|
|
1453
1453
|
*/
|
|
1454
|
-
AccountIds?: string[];
|
|
1454
|
+
AccountIds?: string[] | undefined;
|
|
1455
1455
|
/**
|
|
1456
1456
|
* <p>Names of the services that own each instance that must not be stopped in order to free up
|
|
1457
1457
|
* the capacity needed to run the capacity task.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
Services?: AWSServiceName[];
|
|
1460
|
+
Services?: AWSServiceName[] | undefined;
|
|
1461
1461
|
}
|
|
1462
1462
|
/**
|
|
1463
1463
|
* <p>The instance type that you specify determines the combination of CPU, memory, storage, and
|
|
@@ -1496,33 +1496,33 @@ export interface GetCapacityTaskOutput {
|
|
|
1496
1496
|
* <p>ID of the capacity task.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
CapacityTaskId?: string;
|
|
1499
|
+
CapacityTaskId?: string | undefined;
|
|
1500
1500
|
/**
|
|
1501
1501
|
* <p>ID of the Outpost associated with the specified capacity task.</p>
|
|
1502
1502
|
* @public
|
|
1503
1503
|
*/
|
|
1504
|
-
OutpostId?: string;
|
|
1504
|
+
OutpostId?: string | undefined;
|
|
1505
1505
|
/**
|
|
1506
1506
|
* <p>ID of the Amazon Web Services Outposts order associated with the specified capacity task.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
OrderId?: string;
|
|
1509
|
+
OrderId?: string | undefined;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* <p>List of instance pools requested in the capacity task.</p>
|
|
1512
1512
|
* @public
|
|
1513
1513
|
*/
|
|
1514
|
-
RequestedInstancePools?: InstanceTypeCapacity[];
|
|
1514
|
+
RequestedInstancePools?: InstanceTypeCapacity[] | undefined;
|
|
1515
1515
|
/**
|
|
1516
1516
|
* <p>Instances that the user specified they cannot stop in order to free up the capacity needed
|
|
1517
1517
|
* to run the capacity task.</p>
|
|
1518
1518
|
* @public
|
|
1519
1519
|
*/
|
|
1520
|
-
InstancesToExclude?: InstancesToExclude;
|
|
1520
|
+
InstancesToExclude?: InstancesToExclude | undefined;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* <p>Performs a dry run to determine if you are above or below instance capacity.</p>
|
|
1523
1523
|
* @public
|
|
1524
1524
|
*/
|
|
1525
|
-
DryRun?: boolean;
|
|
1525
|
+
DryRun?: boolean | undefined;
|
|
1526
1526
|
/**
|
|
1527
1527
|
* <p>Status of the capacity task.</p>
|
|
1528
1528
|
* <p>A capacity task can have one of the following statuses:</p>
|
|
@@ -1546,27 +1546,27 @@ export interface GetCapacityTaskOutput {
|
|
|
1546
1546
|
* </ul>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
CapacityTaskStatus?: CapacityTaskStatus;
|
|
1549
|
+
CapacityTaskStatus?: CapacityTaskStatus | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* <p>Reason why the capacity task failed.</p>
|
|
1552
1552
|
* @public
|
|
1553
1553
|
*/
|
|
1554
|
-
Failed?: CapacityTaskFailure;
|
|
1554
|
+
Failed?: CapacityTaskFailure | undefined;
|
|
1555
1555
|
/**
|
|
1556
1556
|
* <p>The date the capacity task was created.</p>
|
|
1557
1557
|
* @public
|
|
1558
1558
|
*/
|
|
1559
|
-
CreationDate?: Date;
|
|
1559
|
+
CreationDate?: Date | undefined;
|
|
1560
1560
|
/**
|
|
1561
1561
|
* <p>The date the capacity task ran successfully.</p>
|
|
1562
1562
|
* @public
|
|
1563
1563
|
*/
|
|
1564
|
-
CompletionDate?: Date;
|
|
1564
|
+
CompletionDate?: Date | undefined;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* <p>The date the capacity task was last modified.</p>
|
|
1567
1567
|
* @public
|
|
1568
1568
|
*/
|
|
1569
|
-
LastModifiedDate?: Date;
|
|
1569
|
+
LastModifiedDate?: Date | undefined;
|
|
1570
1570
|
/**
|
|
1571
1571
|
* <p>User-specified option in case an instance is blocking the capacity task from running.
|
|
1572
1572
|
* Shows one of the following options:</p>
|
|
@@ -1583,7 +1583,7 @@ export interface GetCapacityTaskOutput {
|
|
|
1583
1583
|
* </ul>
|
|
1584
1584
|
* @public
|
|
1585
1585
|
*/
|
|
1586
|
-
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances;
|
|
1586
|
+
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances | undefined;
|
|
1587
1587
|
}
|
|
1588
1588
|
/**
|
|
1589
1589
|
* @public
|
|
@@ -1603,7 +1603,7 @@ export interface GetCatalogItemOutput {
|
|
|
1603
1603
|
* <p>Information about this catalog item.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
CatalogItem?: CatalogItem;
|
|
1606
|
+
CatalogItem?: CatalogItem | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* @public
|
|
@@ -1623,12 +1623,12 @@ export interface GetConnectionResponse {
|
|
|
1623
1623
|
* <p> The ID of the connection. </p>
|
|
1624
1624
|
* @public
|
|
1625
1625
|
*/
|
|
1626
|
-
ConnectionId?: string;
|
|
1626
|
+
ConnectionId?: string | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p> Information about the connection. </p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
ConnectionDetails?: ConnectionDetails;
|
|
1631
|
+
ConnectionDetails?: ConnectionDetails | undefined;
|
|
1632
1632
|
}
|
|
1633
1633
|
/**
|
|
1634
1634
|
* @public
|
|
@@ -1648,7 +1648,7 @@ export interface GetOrderOutput {
|
|
|
1648
1648
|
* <p>Information about an order.</p>
|
|
1649
1649
|
* @public
|
|
1650
1650
|
*/
|
|
1651
|
-
Order?: Order;
|
|
1651
|
+
Order?: Order | undefined;
|
|
1652
1652
|
}
|
|
1653
1653
|
/**
|
|
1654
1654
|
* @public
|
|
@@ -1668,7 +1668,7 @@ export interface GetOutpostOutput {
|
|
|
1668
1668
|
* <p>Information about an Outpost.</p>
|
|
1669
1669
|
* @public
|
|
1670
1670
|
*/
|
|
1671
|
-
Outpost?: Outpost;
|
|
1671
|
+
Outpost?: Outpost | undefined;
|
|
1672
1672
|
}
|
|
1673
1673
|
/**
|
|
1674
1674
|
* @public
|
|
@@ -1683,12 +1683,12 @@ export interface GetOutpostInstanceTypesInput {
|
|
|
1683
1683
|
* <p>The pagination token.</p>
|
|
1684
1684
|
* @public
|
|
1685
1685
|
*/
|
|
1686
|
-
NextToken?: string;
|
|
1686
|
+
NextToken?: string | undefined;
|
|
1687
1687
|
/**
|
|
1688
1688
|
* <p>The maximum page size.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
MaxResults?: number;
|
|
1691
|
+
MaxResults?: number | undefined;
|
|
1692
1692
|
}
|
|
1693
1693
|
/**
|
|
1694
1694
|
* <p>Information about an instance type.</p>
|
|
@@ -1699,12 +1699,12 @@ export interface InstanceTypeItem {
|
|
|
1699
1699
|
* <p>The instance type.</p>
|
|
1700
1700
|
* @public
|
|
1701
1701
|
*/
|
|
1702
|
-
InstanceType?: string;
|
|
1702
|
+
InstanceType?: string | undefined;
|
|
1703
1703
|
/**
|
|
1704
1704
|
* <p>The number of default VCPUs in an instance type.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
VCPUs?: number;
|
|
1707
|
+
VCPUs?: number | undefined;
|
|
1708
1708
|
}
|
|
1709
1709
|
/**
|
|
1710
1710
|
* @public
|
|
@@ -1714,22 +1714,22 @@ export interface GetOutpostInstanceTypesOutput {
|
|
|
1714
1714
|
* <p>Information about the instance types.</p>
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
InstanceTypes?: InstanceTypeItem[];
|
|
1717
|
+
InstanceTypes?: InstanceTypeItem[] | undefined;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* <p>The pagination token.</p>
|
|
1720
1720
|
* @public
|
|
1721
1721
|
*/
|
|
1722
|
-
NextToken?: string;
|
|
1722
|
+
NextToken?: string | undefined;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* <p> The ID of the Outpost. </p>
|
|
1725
1725
|
* @public
|
|
1726
1726
|
*/
|
|
1727
|
-
OutpostId?: string;
|
|
1727
|
+
OutpostId?: string | undefined;
|
|
1728
1728
|
/**
|
|
1729
1729
|
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
OutpostArn?: string;
|
|
1732
|
+
OutpostArn?: string | undefined;
|
|
1733
1733
|
}
|
|
1734
1734
|
/**
|
|
1735
1735
|
* @public
|
|
@@ -1744,17 +1744,17 @@ export interface GetOutpostSupportedInstanceTypesInput {
|
|
|
1744
1744
|
* <p>The ID for the Amazon Web Services Outposts order.</p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
OrderId?: string;
|
|
1747
|
+
OrderId?: string | undefined;
|
|
1748
1748
|
/**
|
|
1749
1749
|
* <p>The maximum page size.</p>
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
MaxResults?: number;
|
|
1752
|
+
MaxResults?: number | undefined;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* <p>The pagination token.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
NextToken?: string;
|
|
1757
|
+
NextToken?: string | undefined;
|
|
1758
1758
|
}
|
|
1759
1759
|
/**
|
|
1760
1760
|
* @public
|
|
@@ -1764,12 +1764,12 @@ export interface GetOutpostSupportedInstanceTypesOutput {
|
|
|
1764
1764
|
* <p>Information about the instance types.</p>
|
|
1765
1765
|
* @public
|
|
1766
1766
|
*/
|
|
1767
|
-
InstanceTypes?: InstanceTypeItem[];
|
|
1767
|
+
InstanceTypes?: InstanceTypeItem[] | undefined;
|
|
1768
1768
|
/**
|
|
1769
1769
|
* <p>The pagination token.</p>
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
NextToken?: string;
|
|
1772
|
+
NextToken?: string | undefined;
|
|
1773
1773
|
}
|
|
1774
1774
|
/**
|
|
1775
1775
|
* @public
|
|
@@ -1789,7 +1789,7 @@ export interface GetSiteOutput {
|
|
|
1789
1789
|
* <p>Information about a site.</p>
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
Site?: Site;
|
|
1792
|
+
Site?: Site | undefined;
|
|
1793
1793
|
}
|
|
1794
1794
|
/**
|
|
1795
1795
|
* @public
|
|
@@ -1814,17 +1814,17 @@ export interface GetSiteAddressOutput {
|
|
|
1814
1814
|
* <p>The ID of the site.</p>
|
|
1815
1815
|
* @public
|
|
1816
1816
|
*/
|
|
1817
|
-
SiteId?: string;
|
|
1817
|
+
SiteId?: string | undefined;
|
|
1818
1818
|
/**
|
|
1819
1819
|
* <p>The type of the address you receive. </p>
|
|
1820
1820
|
* @public
|
|
1821
1821
|
*/
|
|
1822
|
-
AddressType?: AddressType;
|
|
1822
|
+
AddressType?: AddressType | undefined;
|
|
1823
1823
|
/**
|
|
1824
1824
|
* <p> Information about the address. </p>
|
|
1825
1825
|
* @public
|
|
1826
1826
|
*/
|
|
1827
|
-
Address?: Address;
|
|
1827
|
+
Address?: Address | undefined;
|
|
1828
1828
|
}
|
|
1829
1829
|
/**
|
|
1830
1830
|
* @public
|
|
@@ -1839,32 +1839,32 @@ export interface ListAssetInstancesInput {
|
|
|
1839
1839
|
* <p>Filters the results by asset ID.</p>
|
|
1840
1840
|
* @public
|
|
1841
1841
|
*/
|
|
1842
|
-
AssetIdFilter?: string[];
|
|
1842
|
+
AssetIdFilter?: string[] | undefined;
|
|
1843
1843
|
/**
|
|
1844
1844
|
* <p>Filters the results by instance ID.</p>
|
|
1845
1845
|
* @public
|
|
1846
1846
|
*/
|
|
1847
|
-
InstanceTypeFilter?: string[];
|
|
1847
|
+
InstanceTypeFilter?: string[] | undefined;
|
|
1848
1848
|
/**
|
|
1849
1849
|
* <p>Filters the results by account ID.</p>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
AccountIdFilter?: string[];
|
|
1852
|
+
AccountIdFilter?: string[] | undefined;
|
|
1853
1853
|
/**
|
|
1854
1854
|
* <p>Filters the results by Amazon Web Services service.</p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
AwsServiceFilter?: AWSServiceName[];
|
|
1857
|
+
AwsServiceFilter?: AWSServiceName[] | undefined;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* <p>The maximum page size.</p>
|
|
1860
1860
|
* @public
|
|
1861
1861
|
*/
|
|
1862
|
-
MaxResults?: number;
|
|
1862
|
+
MaxResults?: number | undefined;
|
|
1863
1863
|
/**
|
|
1864
1864
|
* <p>The pagination token.</p>
|
|
1865
1865
|
* @public
|
|
1866
1866
|
*/
|
|
1867
|
-
NextToken?: string;
|
|
1867
|
+
NextToken?: string | undefined;
|
|
1868
1868
|
}
|
|
1869
1869
|
/**
|
|
1870
1870
|
* @public
|
|
@@ -1875,12 +1875,12 @@ export interface ListAssetInstancesOutput {
|
|
|
1875
1875
|
* instances.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
AssetInstances?: AssetInstance[];
|
|
1878
|
+
AssetInstances?: AssetInstance[] | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p>The pagination token.</p>
|
|
1881
1881
|
* @public
|
|
1882
1882
|
*/
|
|
1883
|
-
NextToken?: string;
|
|
1883
|
+
NextToken?: string | undefined;
|
|
1884
1884
|
}
|
|
1885
1885
|
/**
|
|
1886
1886
|
* @public
|
|
@@ -1895,22 +1895,22 @@ export interface ListAssetsInput {
|
|
|
1895
1895
|
* <p>Filters the results by the host ID of a Dedicated Host.</p>
|
|
1896
1896
|
* @public
|
|
1897
1897
|
*/
|
|
1898
|
-
HostIdFilter?: string[];
|
|
1898
|
+
HostIdFilter?: string[] | undefined;
|
|
1899
1899
|
/**
|
|
1900
1900
|
* <p>The maximum page size.</p>
|
|
1901
1901
|
* @public
|
|
1902
1902
|
*/
|
|
1903
|
-
MaxResults?: number;
|
|
1903
|
+
MaxResults?: number | undefined;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* <p>The pagination token.</p>
|
|
1906
1906
|
* @public
|
|
1907
1907
|
*/
|
|
1908
|
-
NextToken?: string;
|
|
1908
|
+
NextToken?: string | undefined;
|
|
1909
1909
|
/**
|
|
1910
1910
|
* <p>Filters the results by state.</p>
|
|
1911
1911
|
* @public
|
|
1912
1912
|
*/
|
|
1913
|
-
StatusFilter?: AssetState[];
|
|
1913
|
+
StatusFilter?: AssetState[] | undefined;
|
|
1914
1914
|
}
|
|
1915
1915
|
/**
|
|
1916
1916
|
* @public
|
|
@@ -1920,12 +1920,12 @@ export interface ListAssetsOutput {
|
|
|
1920
1920
|
* <p>Information about the hardware assets.</p>
|
|
1921
1921
|
* @public
|
|
1922
1922
|
*/
|
|
1923
|
-
Assets?: AssetInfo[];
|
|
1923
|
+
Assets?: AssetInfo[] | undefined;
|
|
1924
1924
|
/**
|
|
1925
1925
|
* <p>The pagination token.</p>
|
|
1926
1926
|
* @public
|
|
1927
1927
|
*/
|
|
1928
|
-
NextToken?: string;
|
|
1928
|
+
NextToken?: string | undefined;
|
|
1929
1929
|
}
|
|
1930
1930
|
/**
|
|
1931
1931
|
* @public
|
|
@@ -1945,12 +1945,12 @@ export interface ListBlockingInstancesForCapacityTaskInput {
|
|
|
1945
1945
|
* <p>The maximum page size.</p>
|
|
1946
1946
|
* @public
|
|
1947
1947
|
*/
|
|
1948
|
-
MaxResults?: number;
|
|
1948
|
+
MaxResults?: number | undefined;
|
|
1949
1949
|
/**
|
|
1950
1950
|
* <p>The pagination token.</p>
|
|
1951
1951
|
* @public
|
|
1952
1952
|
*/
|
|
1953
|
-
NextToken?: string;
|
|
1953
|
+
NextToken?: string | undefined;
|
|
1954
1954
|
}
|
|
1955
1955
|
/**
|
|
1956
1956
|
* @public
|
|
@@ -1961,12 +1961,12 @@ export interface ListBlockingInstancesForCapacityTaskOutput {
|
|
|
1961
1961
|
* instances can free up the capacity needed to run the capacity task.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
BlockingInstances?: BlockingInstance[];
|
|
1964
|
+
BlockingInstances?: BlockingInstance[] | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>The pagination token.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
NextToken?: string;
|
|
1969
|
+
NextToken?: string | undefined;
|
|
1970
1970
|
}
|
|
1971
1971
|
/**
|
|
1972
1972
|
* @public
|
|
@@ -1976,23 +1976,23 @@ export interface ListCapacityTasksInput {
|
|
|
1976
1976
|
* <p>Filters the results by an Outpost ID or an Outpost ARN.</p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
OutpostIdentifierFilter?: string;
|
|
1979
|
+
OutpostIdentifierFilter?: string | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>The maximum page size.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
MaxResults?: number;
|
|
1984
|
+
MaxResults?: number | undefined;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* <p>The pagination token.</p>
|
|
1987
1987
|
* @public
|
|
1988
1988
|
*/
|
|
1989
|
-
NextToken?: string;
|
|
1989
|
+
NextToken?: string | undefined;
|
|
1990
1990
|
/**
|
|
1991
1991
|
* <p>A list of statuses. For example, <code>REQUESTED</code> or
|
|
1992
1992
|
* <code>WAITING_FOR_EVACUATION</code>.</p>
|
|
1993
1993
|
* @public
|
|
1994
1994
|
*/
|
|
1995
|
-
CapacityTaskStatusFilter?: CapacityTaskStatus[];
|
|
1995
|
+
CapacityTaskStatusFilter?: CapacityTaskStatus[] | undefined;
|
|
1996
1996
|
}
|
|
1997
1997
|
/**
|
|
1998
1998
|
* @public
|
|
@@ -2002,12 +2002,12 @@ export interface ListCapacityTasksOutput {
|
|
|
2002
2002
|
* <p>Lists all the capacity tasks.</p>
|
|
2003
2003
|
* @public
|
|
2004
2004
|
*/
|
|
2005
|
-
CapacityTasks?: CapacityTaskSummary[];
|
|
2005
|
+
CapacityTasks?: CapacityTaskSummary[] | undefined;
|
|
2006
2006
|
/**
|
|
2007
2007
|
* <p>The pagination token.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
NextToken?: string;
|
|
2010
|
+
NextToken?: string | undefined;
|
|
2011
2011
|
}
|
|
2012
2012
|
/**
|
|
2013
2013
|
* @public
|
|
@@ -2017,27 +2017,27 @@ export interface ListCatalogItemsInput {
|
|
|
2017
2017
|
* <p>The pagination token.</p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
NextToken?: string;
|
|
2020
|
+
NextToken?: string | undefined;
|
|
2021
2021
|
/**
|
|
2022
2022
|
* <p>The maximum page size.</p>
|
|
2023
2023
|
* @public
|
|
2024
2024
|
*/
|
|
2025
|
-
MaxResults?: number;
|
|
2025
|
+
MaxResults?: number | undefined;
|
|
2026
2026
|
/**
|
|
2027
2027
|
* <p>Filters the results by item class.</p>
|
|
2028
2028
|
* @public
|
|
2029
2029
|
*/
|
|
2030
|
-
ItemClassFilter?: CatalogItemClass[];
|
|
2030
|
+
ItemClassFilter?: CatalogItemClass[] | undefined;
|
|
2031
2031
|
/**
|
|
2032
2032
|
* <p>Filters the results by storage option.</p>
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
SupportedStorageFilter?: SupportedStorageEnum[];
|
|
2035
|
+
SupportedStorageFilter?: SupportedStorageEnum[] | undefined;
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>Filters the results by EC2 family (for example, M5).</p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
EC2FamilyFilter?: string[];
|
|
2040
|
+
EC2FamilyFilter?: string[] | undefined;
|
|
2041
2041
|
}
|
|
2042
2042
|
/**
|
|
2043
2043
|
* @public
|
|
@@ -2047,12 +2047,12 @@ export interface ListCatalogItemsOutput {
|
|
|
2047
2047
|
* <p>Information about the catalog items.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
CatalogItems?: CatalogItem[];
|
|
2050
|
+
CatalogItems?: CatalogItem[] | undefined;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* <p>The pagination token.</p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
NextToken?: string;
|
|
2055
|
+
NextToken?: string | undefined;
|
|
2056
2056
|
}
|
|
2057
2057
|
/**
|
|
2058
2058
|
* @public
|
|
@@ -2062,17 +2062,17 @@ export interface ListOrdersInput {
|
|
|
2062
2062
|
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
OutpostIdentifierFilter?: string;
|
|
2065
|
+
OutpostIdentifierFilter?: string | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>The pagination token.</p>
|
|
2068
2068
|
* @public
|
|
2069
2069
|
*/
|
|
2070
|
-
NextToken?: string;
|
|
2070
|
+
NextToken?: string | undefined;
|
|
2071
2071
|
/**
|
|
2072
2072
|
* <p>The maximum page size.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
MaxResults?: number;
|
|
2075
|
+
MaxResults?: number | undefined;
|
|
2076
2076
|
}
|
|
2077
2077
|
/**
|
|
2078
2078
|
* <p> A summary of line items in your order. </p>
|
|
@@ -2083,17 +2083,17 @@ export interface OrderSummary {
|
|
|
2083
2083
|
* <p> The ID of the Outpost. </p>
|
|
2084
2084
|
* @public
|
|
2085
2085
|
*/
|
|
2086
|
-
OutpostId?: string;
|
|
2086
|
+
OutpostId?: string | undefined;
|
|
2087
2087
|
/**
|
|
2088
2088
|
* <p> The ID of the order. </p>
|
|
2089
2089
|
* @public
|
|
2090
2090
|
*/
|
|
2091
|
-
OrderId?: string;
|
|
2091
|
+
OrderId?: string | undefined;
|
|
2092
2092
|
/**
|
|
2093
2093
|
* <p>The type of order.</p>
|
|
2094
2094
|
* @public
|
|
2095
2095
|
*/
|
|
2096
|
-
OrderType?: OrderType;
|
|
2096
|
+
OrderType?: OrderType | undefined;
|
|
2097
2097
|
/**
|
|
2098
2098
|
* <p>The status of the order.</p>
|
|
2099
2099
|
* <ul>
|
|
@@ -2125,22 +2125,22 @@ export interface OrderSummary {
|
|
|
2125
2125
|
* </note>
|
|
2126
2126
|
* @public
|
|
2127
2127
|
*/
|
|
2128
|
-
Status?: OrderStatus;
|
|
2128
|
+
Status?: OrderStatus | undefined;
|
|
2129
2129
|
/**
|
|
2130
2130
|
* <p> The status of all line items in the order. </p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
LineItemCountsByStatus?: Partial<Record<LineItemStatus, number
|
|
2133
|
+
LineItemCountsByStatus?: Partial<Record<LineItemStatus, number>> | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p> The submission date for the order. </p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
OrderSubmissionDate?: Date;
|
|
2138
|
+
OrderSubmissionDate?: Date | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p> The fulfilment date for the order. </p>
|
|
2141
2141
|
* @public
|
|
2142
2142
|
*/
|
|
2143
|
-
OrderFulfilledDate?: Date;
|
|
2143
|
+
OrderFulfilledDate?: Date | undefined;
|
|
2144
2144
|
}
|
|
2145
2145
|
/**
|
|
2146
2146
|
* @public
|
|
@@ -2150,12 +2150,12 @@ export interface ListOrdersOutput {
|
|
|
2150
2150
|
* <p> Information about the orders. </p>
|
|
2151
2151
|
* @public
|
|
2152
2152
|
*/
|
|
2153
|
-
Orders?: OrderSummary[];
|
|
2153
|
+
Orders?: OrderSummary[] | undefined;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* <p>The pagination token.</p>
|
|
2156
2156
|
* @public
|
|
2157
2157
|
*/
|
|
2158
|
-
NextToken?: string;
|
|
2158
|
+
NextToken?: string | undefined;
|
|
2159
2159
|
}
|
|
2160
2160
|
/**
|
|
2161
2161
|
* @public
|
|
@@ -2165,27 +2165,27 @@ export interface ListOutpostsInput {
|
|
|
2165
2165
|
* <p>The pagination token.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
NextToken?: string;
|
|
2168
|
+
NextToken?: string | undefined;
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>The maximum page size.</p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
MaxResults?: number;
|
|
2173
|
+
MaxResults?: number | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>Filters the results by the lifecycle status.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
LifeCycleStatusFilter?: string[];
|
|
2178
|
+
LifeCycleStatusFilter?: string[] | undefined;
|
|
2179
2179
|
/**
|
|
2180
2180
|
* <p>Filters the results by Availability Zone (for example, <code>us-east-1a</code>).</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
AvailabilityZoneFilter?: string[];
|
|
2183
|
+
AvailabilityZoneFilter?: string[] | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>Filters the results by AZ ID (for example, <code>use1-az1</code>).</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
AvailabilityZoneIdFilter?: string[];
|
|
2188
|
+
AvailabilityZoneIdFilter?: string[] | undefined;
|
|
2189
2189
|
}
|
|
2190
2190
|
/**
|
|
2191
2191
|
* @public
|
|
@@ -2195,12 +2195,12 @@ export interface ListOutpostsOutput {
|
|
|
2195
2195
|
* <p>Information about the Outposts.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
Outposts?: Outpost[];
|
|
2198
|
+
Outposts?: Outpost[] | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>The pagination token.</p>
|
|
2201
2201
|
* @public
|
|
2202
2202
|
*/
|
|
2203
|
-
NextToken?: string;
|
|
2203
|
+
NextToken?: string | undefined;
|
|
2204
2204
|
}
|
|
2205
2205
|
/**
|
|
2206
2206
|
* @public
|
|
@@ -2210,27 +2210,27 @@ export interface ListSitesInput {
|
|
|
2210
2210
|
* <p>The pagination token.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
NextToken?: string;
|
|
2213
|
+
NextToken?: string | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* <p>The maximum page size.</p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
MaxResults?: number;
|
|
2218
|
+
MaxResults?: number | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p>Filters the results by country code.</p>
|
|
2221
2221
|
* @public
|
|
2222
2222
|
*/
|
|
2223
|
-
OperatingAddressCountryCodeFilter?: string[];
|
|
2223
|
+
OperatingAddressCountryCodeFilter?: string[] | undefined;
|
|
2224
2224
|
/**
|
|
2225
2225
|
* <p>Filters the results by state or region.</p>
|
|
2226
2226
|
* @public
|
|
2227
2227
|
*/
|
|
2228
|
-
OperatingAddressStateOrRegionFilter?: string[];
|
|
2228
|
+
OperatingAddressStateOrRegionFilter?: string[] | undefined;
|
|
2229
2229
|
/**
|
|
2230
2230
|
* <p>Filters the results by city.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
OperatingAddressCityFilter?: string[];
|
|
2233
|
+
OperatingAddressCityFilter?: string[] | undefined;
|
|
2234
2234
|
}
|
|
2235
2235
|
/**
|
|
2236
2236
|
* @public
|
|
@@ -2240,12 +2240,12 @@ export interface ListSitesOutput {
|
|
|
2240
2240
|
* <p>Information about the sites.</p>
|
|
2241
2241
|
* @public
|
|
2242
2242
|
*/
|
|
2243
|
-
Sites?: Site[];
|
|
2243
|
+
Sites?: Site[] | undefined;
|
|
2244
2244
|
/**
|
|
2245
2245
|
* <p>The pagination token.</p>
|
|
2246
2246
|
* @public
|
|
2247
2247
|
*/
|
|
2248
|
-
NextToken?: string;
|
|
2248
|
+
NextToken?: string | undefined;
|
|
2249
2249
|
}
|
|
2250
2250
|
/**
|
|
2251
2251
|
* @public
|
|
@@ -2265,7 +2265,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2265
2265
|
* <p>The resource tags.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
Tags?: Record<string, string
|
|
2268
|
+
Tags?: Record<string, string> | undefined;
|
|
2269
2269
|
}
|
|
2270
2270
|
/**
|
|
2271
2271
|
* @public
|
|
@@ -2280,7 +2280,7 @@ export interface StartCapacityTaskInput {
|
|
|
2280
2280
|
* <p>The ID of the Amazon Web Services Outposts order associated with the specified capacity task.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
OrderId?: string;
|
|
2283
|
+
OrderId?: string | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The instance pools specified in the capacity task.</p>
|
|
2286
2286
|
* @public
|
|
@@ -2291,14 +2291,14 @@ export interface StartCapacityTaskInput {
|
|
|
2291
2291
|
* capacity needed to run the capacity task.</p>
|
|
2292
2292
|
* @public
|
|
2293
2293
|
*/
|
|
2294
|
-
InstancesToExclude?: InstancesToExclude;
|
|
2294
|
+
InstancesToExclude?: InstancesToExclude | undefined;
|
|
2295
2295
|
/**
|
|
2296
2296
|
* <p>You can request a dry run to determine if the instance type and instance size changes is
|
|
2297
2297
|
* above or below available instance capacity. Requesting a dry run does not make any changes to
|
|
2298
2298
|
* your plan.</p>
|
|
2299
2299
|
* @public
|
|
2300
2300
|
*/
|
|
2301
|
-
DryRun?: boolean;
|
|
2301
|
+
DryRun?: boolean | undefined;
|
|
2302
2302
|
/**
|
|
2303
2303
|
* <p>Specify one of the following options in case an instance is blocking the capacity task
|
|
2304
2304
|
* from running.</p>
|
|
@@ -2315,7 +2315,7 @@ export interface StartCapacityTaskInput {
|
|
|
2315
2315
|
* </ul>
|
|
2316
2316
|
* @public
|
|
2317
2317
|
*/
|
|
2318
|
-
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances;
|
|
2318
|
+
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances | undefined;
|
|
2319
2319
|
}
|
|
2320
2320
|
/**
|
|
2321
2321
|
* @public
|
|
@@ -2325,59 +2325,59 @@ export interface StartCapacityTaskOutput {
|
|
|
2325
2325
|
* <p>ID of the capacity task that you want to start.</p>
|
|
2326
2326
|
* @public
|
|
2327
2327
|
*/
|
|
2328
|
-
CapacityTaskId?: string;
|
|
2328
|
+
CapacityTaskId?: string | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* <p>ID of the Outpost associated with the capacity task.</p>
|
|
2331
2331
|
* @public
|
|
2332
2332
|
*/
|
|
2333
|
-
OutpostId?: string;
|
|
2333
|
+
OutpostId?: string | undefined;
|
|
2334
2334
|
/**
|
|
2335
2335
|
* <p>ID of the Amazon Web Services Outposts order of the host associated with the capacity task.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
OrderId?: string;
|
|
2338
|
+
OrderId?: string | undefined;
|
|
2339
2339
|
/**
|
|
2340
2340
|
* <p>List of the instance pools requested in the specified capacity task.</p>
|
|
2341
2341
|
* @public
|
|
2342
2342
|
*/
|
|
2343
|
-
RequestedInstancePools?: InstanceTypeCapacity[];
|
|
2343
|
+
RequestedInstancePools?: InstanceTypeCapacity[] | undefined;
|
|
2344
2344
|
/**
|
|
2345
2345
|
* <p>User-specified instances that must not be stopped in order to free up the capacity needed
|
|
2346
2346
|
* to run the capacity task.</p>
|
|
2347
2347
|
* @public
|
|
2348
2348
|
*/
|
|
2349
|
-
InstancesToExclude?: InstancesToExclude;
|
|
2349
|
+
InstancesToExclude?: InstancesToExclude | undefined;
|
|
2350
2350
|
/**
|
|
2351
2351
|
* <p>Results of the dry run showing if the specified capacity task is above or below the
|
|
2352
2352
|
* available instance capacity.</p>
|
|
2353
2353
|
* @public
|
|
2354
2354
|
*/
|
|
2355
|
-
DryRun?: boolean;
|
|
2355
|
+
DryRun?: boolean | undefined;
|
|
2356
2356
|
/**
|
|
2357
2357
|
* <p>Status of the specified capacity task.</p>
|
|
2358
2358
|
* @public
|
|
2359
2359
|
*/
|
|
2360
|
-
CapacityTaskStatus?: CapacityTaskStatus;
|
|
2360
|
+
CapacityTaskStatus?: CapacityTaskStatus | undefined;
|
|
2361
2361
|
/**
|
|
2362
2362
|
* <p>Reason that the specified capacity task failed.</p>
|
|
2363
2363
|
* @public
|
|
2364
2364
|
*/
|
|
2365
|
-
Failed?: CapacityTaskFailure;
|
|
2365
|
+
Failed?: CapacityTaskFailure | undefined;
|
|
2366
2366
|
/**
|
|
2367
2367
|
* <p>Date that the specified capacity task was created.</p>
|
|
2368
2368
|
* @public
|
|
2369
2369
|
*/
|
|
2370
|
-
CreationDate?: Date;
|
|
2370
|
+
CreationDate?: Date | undefined;
|
|
2371
2371
|
/**
|
|
2372
2372
|
* <p>Date that the specified capacity task ran successfully.</p>
|
|
2373
2373
|
* @public
|
|
2374
2374
|
*/
|
|
2375
|
-
CompletionDate?: Date;
|
|
2375
|
+
CompletionDate?: Date | undefined;
|
|
2376
2376
|
/**
|
|
2377
2377
|
* <p>Date that the specified capacity task was last modified.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
LastModifiedDate?: Date;
|
|
2380
|
+
LastModifiedDate?: Date | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>User-specified option in case an instance is blocking the capacity task from
|
|
2383
2383
|
* running.</p>
|
|
@@ -2394,7 +2394,7 @@ export interface StartCapacityTaskOutput {
|
|
|
2394
2394
|
* </ul>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances;
|
|
2397
|
+
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances | undefined;
|
|
2398
2398
|
}
|
|
2399
2399
|
/**
|
|
2400
2400
|
* @public
|
|
@@ -2404,7 +2404,7 @@ export interface StartConnectionRequest {
|
|
|
2404
2404
|
* <p> The serial number of the dongle. </p>
|
|
2405
2405
|
* @public
|
|
2406
2406
|
*/
|
|
2407
|
-
DeviceSerialNumber?: string;
|
|
2407
|
+
DeviceSerialNumber?: string | undefined;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* <p> The ID of the Outpost server. </p>
|
|
2410
2410
|
* @public
|
|
@@ -2429,12 +2429,12 @@ export interface StartConnectionResponse {
|
|
|
2429
2429
|
* <p> The ID of the connection. </p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
ConnectionId?: string;
|
|
2432
|
+
ConnectionId?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p> The underlay IP address. </p>
|
|
2435
2435
|
* @public
|
|
2436
2436
|
*/
|
|
2437
|
-
UnderlayIpAddress?: string;
|
|
2437
|
+
UnderlayIpAddress?: string | undefined;
|
|
2438
2438
|
}
|
|
2439
2439
|
/**
|
|
2440
2440
|
* @public
|
|
@@ -2489,17 +2489,17 @@ export interface UpdateOutpostInput {
|
|
|
2489
2489
|
* <p>The name of the Outpost.</p>
|
|
2490
2490
|
* @public
|
|
2491
2491
|
*/
|
|
2492
|
-
Name?: string;
|
|
2492
|
+
Name?: string | undefined;
|
|
2493
2493
|
/**
|
|
2494
2494
|
* <p>The description of the Outpost.</p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
Description?: string;
|
|
2497
|
+
Description?: string | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p> The type of hardware for this Outpost. </p>
|
|
2500
2500
|
* @public
|
|
2501
2501
|
*/
|
|
2502
|
-
SupportedHardwareType?: SupportedHardwareType;
|
|
2502
|
+
SupportedHardwareType?: SupportedHardwareType | undefined;
|
|
2503
2503
|
}
|
|
2504
2504
|
/**
|
|
2505
2505
|
* @public
|
|
@@ -2509,7 +2509,7 @@ export interface UpdateOutpostOutput {
|
|
|
2509
2509
|
* <p>Information about an Outpost.</p>
|
|
2510
2510
|
* @public
|
|
2511
2511
|
*/
|
|
2512
|
-
Outpost?: Outpost;
|
|
2512
|
+
Outpost?: Outpost | undefined;
|
|
2513
2513
|
}
|
|
2514
2514
|
/**
|
|
2515
2515
|
* @public
|
|
@@ -2524,17 +2524,17 @@ export interface UpdateSiteInput {
|
|
|
2524
2524
|
* <p>The name of the site.</p>
|
|
2525
2525
|
* @public
|
|
2526
2526
|
*/
|
|
2527
|
-
Name?: string;
|
|
2527
|
+
Name?: string | undefined;
|
|
2528
2528
|
/**
|
|
2529
2529
|
* <p>The description of the site.</p>
|
|
2530
2530
|
* @public
|
|
2531
2531
|
*/
|
|
2532
|
-
Description?: string;
|
|
2532
|
+
Description?: string | undefined;
|
|
2533
2533
|
/**
|
|
2534
2534
|
* <p>Notes about a site.</p>
|
|
2535
2535
|
* @public
|
|
2536
2536
|
*/
|
|
2537
|
-
Notes?: string;
|
|
2537
|
+
Notes?: string | undefined;
|
|
2538
2538
|
}
|
|
2539
2539
|
/**
|
|
2540
2540
|
* @public
|
|
@@ -2544,7 +2544,7 @@ export interface UpdateSiteOutput {
|
|
|
2544
2544
|
* <p>Information about a site.</p>
|
|
2545
2545
|
* @public
|
|
2546
2546
|
*/
|
|
2547
|
-
Site?: Site;
|
|
2547
|
+
Site?: Site | undefined;
|
|
2548
2548
|
}
|
|
2549
2549
|
/**
|
|
2550
2550
|
* @public
|
|
@@ -2574,12 +2574,12 @@ export interface UpdateSiteAddressOutput {
|
|
|
2574
2574
|
* <p> The type of the address. </p>
|
|
2575
2575
|
* @public
|
|
2576
2576
|
*/
|
|
2577
|
-
AddressType?: AddressType;
|
|
2577
|
+
AddressType?: AddressType | undefined;
|
|
2578
2578
|
/**
|
|
2579
2579
|
* <p> Information about an address. </p>
|
|
2580
2580
|
* @public
|
|
2581
2581
|
*/
|
|
2582
|
-
Address?: Address;
|
|
2582
|
+
Address?: Address | undefined;
|
|
2583
2583
|
}
|
|
2584
2584
|
/**
|
|
2585
2585
|
* @public
|
|
@@ -2594,7 +2594,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2594
2594
|
* <p>The power draw, in kVA, available at the hardware placement position for the rack.</p>
|
|
2595
2595
|
* @public
|
|
2596
2596
|
*/
|
|
2597
|
-
PowerDrawKva?: PowerDrawKva;
|
|
2597
|
+
PowerDrawKva?: PowerDrawKva | undefined;
|
|
2598
2598
|
/**
|
|
2599
2599
|
* <p>The power option that you can provide for hardware. </p>
|
|
2600
2600
|
* <ul>
|
|
@@ -2607,7 +2607,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2607
2607
|
* </ul>
|
|
2608
2608
|
* @public
|
|
2609
2609
|
*/
|
|
2610
|
-
PowerPhase?: PowerPhase;
|
|
2610
|
+
PowerPhase?: PowerPhase | undefined;
|
|
2611
2611
|
/**
|
|
2612
2612
|
* <p>The power connector that Amazon Web Services should plan to provide for connections to the hardware.
|
|
2613
2613
|
* Note the correlation between <code>PowerPhase</code> and <code>PowerConnector</code>. </p>
|
|
@@ -2644,17 +2644,17 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2644
2644
|
* </ul>
|
|
2645
2645
|
* @public
|
|
2646
2646
|
*/
|
|
2647
|
-
PowerConnector?: PowerConnector;
|
|
2647
|
+
PowerConnector?: PowerConnector | undefined;
|
|
2648
2648
|
/**
|
|
2649
2649
|
* <p>Indicates whether the power feed comes above or below the rack. </p>
|
|
2650
2650
|
* @public
|
|
2651
2651
|
*/
|
|
2652
|
-
PowerFeedDrop?: PowerFeedDrop;
|
|
2652
|
+
PowerFeedDrop?: PowerFeedDrop | undefined;
|
|
2653
2653
|
/**
|
|
2654
2654
|
* <p>The uplink speed the rack should support for the connection to the Region. </p>
|
|
2655
2655
|
* @public
|
|
2656
2656
|
*/
|
|
2657
|
-
UplinkGbps?: UplinkGbps;
|
|
2657
|
+
UplinkGbps?: UplinkGbps | undefined;
|
|
2658
2658
|
/**
|
|
2659
2659
|
* <p>Racks come with two Outpost network devices. Depending on the supported uplink speed at
|
|
2660
2660
|
* the site, the Outpost network devices provide a variable number of uplinks. Specify the number
|
|
@@ -2673,12 +2673,12 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2673
2673
|
* </ul>
|
|
2674
2674
|
* @public
|
|
2675
2675
|
*/
|
|
2676
|
-
UplinkCount?: UplinkCount;
|
|
2676
|
+
UplinkCount?: UplinkCount | undefined;
|
|
2677
2677
|
/**
|
|
2678
2678
|
* <p>The type of fiber that you will use to attach the Outpost to your network. </p>
|
|
2679
2679
|
* @public
|
|
2680
2680
|
*/
|
|
2681
|
-
FiberOpticCableType?: FiberOpticCableType;
|
|
2681
|
+
FiberOpticCableType?: FiberOpticCableType | undefined;
|
|
2682
2682
|
/**
|
|
2683
2683
|
* <p>The type of optical standard that you will use to attach the Outpost to your network. This
|
|
2684
2684
|
* field is dependent on uplink speed, fiber type, and distance to the upstream device.
|
|
@@ -2742,13 +2742,13 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2742
2742
|
* </ul>
|
|
2743
2743
|
* @public
|
|
2744
2744
|
*/
|
|
2745
|
-
OpticalStandard?: OpticalStandard;
|
|
2745
|
+
OpticalStandard?: OpticalStandard | undefined;
|
|
2746
2746
|
/**
|
|
2747
2747
|
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over 2000lbs.
|
|
2748
2748
|
* </p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs;
|
|
2751
|
+
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | undefined;
|
|
2752
2752
|
}
|
|
2753
2753
|
/**
|
|
2754
2754
|
* @public
|
|
@@ -2758,5 +2758,5 @@ export interface UpdateSiteRackPhysicalPropertiesOutput {
|
|
|
2758
2758
|
* <p>Information about a site.</p>
|
|
2759
2759
|
* @public
|
|
2760
2760
|
*/
|
|
2761
|
-
Site?: Site;
|
|
2761
|
+
Site?: Site | undefined;
|
|
2762
2762
|
}
|