cdk-docker-image-deployment 0.0.31 → 0.0.33
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +13 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.examples.json +5 -0
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +1536 -0
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.paginators.json +50 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +359 -293
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +39 -38
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +8 -1
- package/node_modules/aws-sdk/apis/workmail-2017-10-01.min.json +309 -72
- package/node_modules/aws-sdk/apis/workmail-2017-10-01.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connectcases.d.ts +1466 -0
- package/node_modules/aws-sdk/clients/connectcases.js +18 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +9 -1
- package/node_modules/aws-sdk/clients/ecs.d.ts +4 -4
- package/node_modules/aws-sdk/clients/glue.d.ts +154 -0
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +5 -0
- package/node_modules/aws-sdk/clients/outposts.d.ts +89 -78
- package/node_modules/aws-sdk/clients/s3control.d.ts +2 -2
- package/node_modules/aws-sdk/clients/workmail.d.ts +436 -103
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +47 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +13 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +62 -62
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -12,11 +12,11 @@ declare class Outposts extends Service {
|
|
|
12
12
|
constructor(options?: Outposts.Types.ClientConfiguration)
|
|
13
13
|
config: Config & Outposts.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Cancels the specified order for an Outpost.
|
|
16
16
|
*/
|
|
17
17
|
cancelOrder(params: Outposts.Types.CancelOrderInput, callback?: (err: AWSError, data: Outposts.Types.CancelOrderOutput) => void): Request<Outposts.Types.CancelOrderOutput, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Cancels the specified order for an Outpost.
|
|
20
20
|
*/
|
|
21
21
|
cancelOrder(callback?: (err: AWSError, data: Outposts.Types.CancelOrderOutput) => void): Request<Outposts.Types.CancelOrderOutput, AWSError>;
|
|
22
22
|
/**
|
|
@@ -28,11 +28,11 @@ declare class Outposts extends Service {
|
|
|
28
28
|
*/
|
|
29
29
|
createOrder(callback?: (err: AWSError, data: Outposts.Types.CreateOrderOutput) => void): Request<Outposts.Types.CreateOrderOutput, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Creates an Outpost. You can specify
|
|
31
|
+
* Creates an Outpost. You can specify either an Availability one or an AZ ID.
|
|
32
32
|
*/
|
|
33
33
|
createOutpost(params: Outposts.Types.CreateOutpostInput, callback?: (err: AWSError, data: Outposts.Types.CreateOutpostOutput) => void): Request<Outposts.Types.CreateOutpostOutput, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Creates an Outpost. You can specify
|
|
35
|
+
* Creates an Outpost. You can specify either an Availability one or an AZ ID.
|
|
36
36
|
*/
|
|
37
37
|
createOutpost(callback?: (err: AWSError, data: Outposts.Types.CreateOutpostOutput) => void): Request<Outposts.Types.CreateOutpostOutput, AWSError>;
|
|
38
38
|
/**
|
|
@@ -44,43 +44,43 @@ declare class Outposts extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
createSite(callback?: (err: AWSError, data: Outposts.Types.CreateSiteOutput) => void): Request<Outposts.Types.CreateSiteOutput, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Deletes the Outpost.
|
|
47
|
+
* Deletes the specified Outpost.
|
|
48
48
|
*/
|
|
49
49
|
deleteOutpost(params: Outposts.Types.DeleteOutpostInput, callback?: (err: AWSError, data: Outposts.Types.DeleteOutpostOutput) => void): Request<Outposts.Types.DeleteOutpostOutput, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Deletes the Outpost.
|
|
51
|
+
* Deletes the specified Outpost.
|
|
52
52
|
*/
|
|
53
53
|
deleteOutpost(callback?: (err: AWSError, data: Outposts.Types.DeleteOutpostOutput) => void): Request<Outposts.Types.DeleteOutpostOutput, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Deletes the site.
|
|
55
|
+
* Deletes the specified site.
|
|
56
56
|
*/
|
|
57
57
|
deleteSite(params: Outposts.Types.DeleteSiteInput, callback?: (err: AWSError, data: Outposts.Types.DeleteSiteOutput) => void): Request<Outposts.Types.DeleteSiteOutput, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Deletes the site.
|
|
59
|
+
* Deletes the specified site.
|
|
60
60
|
*/
|
|
61
61
|
deleteSite(callback?: (err: AWSError, data: Outposts.Types.DeleteSiteOutput) => void): Request<Outposts.Types.DeleteSiteOutput, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Gets information about
|
|
63
|
+
* Gets information about the specified catalog item.
|
|
64
64
|
*/
|
|
65
65
|
getCatalogItem(params: Outposts.Types.GetCatalogItemInput, callback?: (err: AWSError, data: Outposts.Types.GetCatalogItemOutput) => void): Request<Outposts.Types.GetCatalogItemOutput, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Gets information about
|
|
67
|
+
* Gets information about the specified catalog item.
|
|
68
68
|
*/
|
|
69
69
|
getCatalogItem(callback?: (err: AWSError, data: Outposts.Types.GetCatalogItemOutput) => void): Request<Outposts.Types.GetCatalogItemOutput, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Amazon Web Services uses this action to install Outpost servers. Gets information about
|
|
71
|
+
* Amazon Web Services uses this action to install Outpost servers. Gets information about the specified connection. Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For more information, see Amazon Web Services managed policies for Amazon Web Services Outposts and Logging Amazon Web Services Outposts API calls with Amazon Web Services CloudTrail in the Amazon Web Services Outposts User Guide.
|
|
72
72
|
*/
|
|
73
73
|
getConnection(params: Outposts.Types.GetConnectionRequest, callback?: (err: AWSError, data: Outposts.Types.GetConnectionResponse) => void): Request<Outposts.Types.GetConnectionResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Amazon Web Services uses this action to install Outpost servers. Gets information about
|
|
75
|
+
* Amazon Web Services uses this action to install Outpost servers. Gets information about the specified connection. Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For more information, see Amazon Web Services managed policies for Amazon Web Services Outposts and Logging Amazon Web Services Outposts API calls with Amazon Web Services CloudTrail in the Amazon Web Services Outposts User Guide.
|
|
76
76
|
*/
|
|
77
77
|
getConnection(callback?: (err: AWSError, data: Outposts.Types.GetConnectionResponse) => void): Request<Outposts.Types.GetConnectionResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* Gets
|
|
79
|
+
* Gets information about the specified order.
|
|
80
80
|
*/
|
|
81
81
|
getOrder(params: Outposts.Types.GetOrderInput, callback?: (err: AWSError, data: Outposts.Types.GetOrderOutput) => void): Request<Outposts.Types.GetOrderOutput, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
* Gets
|
|
83
|
+
* Gets information about the specified order.
|
|
84
84
|
*/
|
|
85
85
|
getOrder(callback?: (err: AWSError, data: Outposts.Types.GetOrderOutput) => void): Request<Outposts.Types.GetOrderOutput, AWSError>;
|
|
86
86
|
/**
|
|
@@ -100,59 +100,59 @@ declare class Outposts extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
getOutpostInstanceTypes(callback?: (err: AWSError, data: Outposts.Types.GetOutpostInstanceTypesOutput) => void): Request<Outposts.Types.GetOutpostInstanceTypesOutput, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* Gets information about the specified Outpost site.
|
|
104
104
|
*/
|
|
105
105
|
getSite(params: Outposts.Types.GetSiteInput, callback?: (err: AWSError, data: Outposts.Types.GetSiteOutput) => void): Request<Outposts.Types.GetSiteOutput, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* Gets information about the specified Outpost site.
|
|
108
108
|
*/
|
|
109
109
|
getSite(callback?: (err: AWSError, data: Outposts.Types.GetSiteOutput) => void): Request<Outposts.Types.GetSiteOutput, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Gets the site address.
|
|
111
|
+
* Gets the site address of the specified site.
|
|
112
112
|
*/
|
|
113
113
|
getSiteAddress(params: Outposts.Types.GetSiteAddressInput, callback?: (err: AWSError, data: Outposts.Types.GetSiteAddressOutput) => void): Request<Outposts.Types.GetSiteAddressOutput, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Gets the site address.
|
|
115
|
+
* Gets the site address of the specified site.
|
|
116
116
|
*/
|
|
117
117
|
getSiteAddress(callback?: (err: AWSError, data: Outposts.Types.GetSiteAddressOutput) => void): Request<Outposts.Types.GetSiteAddressOutput, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* Lists the hardware assets for the specified Outpost. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
120
120
|
*/
|
|
121
121
|
listAssets(params: Outposts.Types.ListAssetsInput, callback?: (err: AWSError, data: Outposts.Types.ListAssetsOutput) => void): Request<Outposts.Types.ListAssetsOutput, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* Lists the hardware assets for the specified Outpost. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
124
124
|
*/
|
|
125
125
|
listAssets(callback?: (err: AWSError, data: Outposts.Types.ListAssetsOutput) => void): Request<Outposts.Types.ListAssetsOutput, AWSError>;
|
|
126
126
|
/**
|
|
127
|
-
* Lists the items in the catalog.
|
|
127
|
+
* Lists the items in the catalog. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
128
128
|
*/
|
|
129
129
|
listCatalogItems(params: Outposts.Types.ListCatalogItemsInput, callback?: (err: AWSError, data: Outposts.Types.ListCatalogItemsOutput) => void): Request<Outposts.Types.ListCatalogItemsOutput, AWSError>;
|
|
130
130
|
/**
|
|
131
|
-
* Lists the items in the catalog.
|
|
131
|
+
* Lists the items in the catalog. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
132
132
|
*/
|
|
133
133
|
listCatalogItems(callback?: (err: AWSError, data: Outposts.Types.ListCatalogItemsOutput) => void): Request<Outposts.Types.ListCatalogItemsOutput, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
* Lists the Outpost orders for your Amazon Web Services account.
|
|
135
|
+
* Lists the Outpost orders for your Amazon Web Services account.
|
|
136
136
|
*/
|
|
137
137
|
listOrders(params: Outposts.Types.ListOrdersInput, callback?: (err: AWSError, data: Outposts.Types.ListOrdersOutput) => void): Request<Outposts.Types.ListOrdersOutput, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
* Lists the Outpost orders for your Amazon Web Services account.
|
|
139
|
+
* Lists the Outpost orders for your Amazon Web Services account.
|
|
140
140
|
*/
|
|
141
141
|
listOrders(callback?: (err: AWSError, data: Outposts.Types.ListOrdersOutput) => void): Request<Outposts.Types.ListOrdersOutput, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
* Lists the Outposts for your Amazon Web Services account.
|
|
143
|
+
* Lists the Outposts for your Amazon Web Services account. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
144
144
|
*/
|
|
145
145
|
listOutposts(params: Outposts.Types.ListOutpostsInput, callback?: (err: AWSError, data: Outposts.Types.ListOutpostsOutput) => void): Request<Outposts.Types.ListOutpostsOutput, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
* Lists the Outposts for your Amazon Web Services account.
|
|
147
|
+
* Lists the Outposts for your Amazon Web Services account. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
148
148
|
*/
|
|
149
149
|
listOutposts(callback?: (err: AWSError, data: Outposts.Types.ListOutpostsOutput) => void): Request<Outposts.Types.ListOutpostsOutput, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
* Lists the Outpost sites for your Amazon Web Services account.
|
|
151
|
+
* Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific results. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
152
152
|
*/
|
|
153
153
|
listSites(params: Outposts.Types.ListSitesInput, callback?: (err: AWSError, data: Outposts.Types.ListSitesOutput) => void): Request<Outposts.Types.ListSitesOutput, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
* Lists the Outpost sites for your Amazon Web Services account.
|
|
155
|
+
* Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific results. Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
|
|
156
156
|
*/
|
|
157
157
|
listSites(callback?: (err: AWSError, data: Outposts.Types.ListSitesOutput) => void): Request<Outposts.Types.ListSitesOutput, AWSError>;
|
|
158
158
|
/**
|
|
@@ -196,19 +196,19 @@ declare class Outposts extends Service {
|
|
|
196
196
|
*/
|
|
197
197
|
updateOutpost(callback?: (err: AWSError, data: Outposts.Types.UpdateOutpostOutput) => void): Request<Outposts.Types.UpdateOutpostOutput, AWSError>;
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* Updates the specified site.
|
|
200
200
|
*/
|
|
201
201
|
updateSite(params: Outposts.Types.UpdateSiteInput, callback?: (err: AWSError, data: Outposts.Types.UpdateSiteOutput) => void): Request<Outposts.Types.UpdateSiteOutput, AWSError>;
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* Updates the specified site.
|
|
204
204
|
*/
|
|
205
205
|
updateSite(callback?: (err: AWSError, data: Outposts.Types.UpdateSiteOutput) => void): Request<Outposts.Types.UpdateSiteOutput, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
*
|
|
207
|
+
* Updates the address of the specified site. You can't update a site address if there is an order in progress. You must wait for the order to complete or cancel the order. You can update the operating address before you place an order at the site, or after all Outposts that belong to the site have been deactivated.
|
|
208
208
|
*/
|
|
209
209
|
updateSiteAddress(params: Outposts.Types.UpdateSiteAddressInput, callback?: (err: AWSError, data: Outposts.Types.UpdateSiteAddressOutput) => void): Request<Outposts.Types.UpdateSiteAddressOutput, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
*
|
|
211
|
+
* Updates the address of the specified site. You can't update a site address if there is an order in progress. You must wait for the order to complete or cancel the order. You can update the operating address before you place an order at the site, or after all Outposts that belong to the site have been deactivated.
|
|
212
212
|
*/
|
|
213
213
|
updateSiteAddress(callback?: (err: AWSError, data: Outposts.Types.UpdateSiteAddressOutput) => void): Request<Outposts.Types.UpdateSiteAddressOutput, AWSError>;
|
|
214
214
|
/**
|
|
@@ -303,6 +303,7 @@ declare namespace Outposts {
|
|
|
303
303
|
*/
|
|
304
304
|
RackElevation?: RackElevation;
|
|
305
305
|
}
|
|
306
|
+
export type AssetState = "ACTIVE"|"RETIRING"|string;
|
|
306
307
|
export type AssetType = "COMPUTE"|string;
|
|
307
308
|
export type AvailabilityZone = string;
|
|
308
309
|
export type AvailabilityZoneId = string;
|
|
@@ -312,7 +313,7 @@ declare namespace Outposts {
|
|
|
312
313
|
export type CIDRList = CIDR[];
|
|
313
314
|
export interface CancelOrderInput {
|
|
314
315
|
/**
|
|
315
|
-
* The ID of the order
|
|
316
|
+
* The ID of the order.
|
|
316
317
|
*/
|
|
317
318
|
OrderId: OrderId;
|
|
318
319
|
}
|
|
@@ -356,11 +357,16 @@ declare namespace Outposts {
|
|
|
356
357
|
export type CatalogItemWeightLbs = number;
|
|
357
358
|
export type City = string;
|
|
358
359
|
export type CityList = City[];
|
|
360
|
+
export type ComputeAssetState = "ACTIVE"|"ISOLATED"|"RETIRING"|string;
|
|
359
361
|
export interface ComputeAttributes {
|
|
360
362
|
/**
|
|
361
|
-
* The host ID of
|
|
363
|
+
* The host ID of the Dedicated Host on the asset.
|
|
362
364
|
*/
|
|
363
365
|
HostId?: HostId;
|
|
366
|
+
/**
|
|
367
|
+
* The state. ACTIVE - The asset is available and can provide capacity for new compute resources. ISOLATED - The asset is undergoing maintenance and can't provide capacity for new compute resources. Existing compute resources on the asset are not affected. RETIRING - The underlying hardware for the asset is degraded. Capacity for new compute resources is reduced. Amazon Web Services sends notifications for resources that must be stopped before the asset can be replaced.
|
|
368
|
+
*/
|
|
369
|
+
State?: ComputeAssetState;
|
|
364
370
|
}
|
|
365
371
|
export interface ConnectionDetails {
|
|
366
372
|
/**
|
|
@@ -403,11 +409,11 @@ declare namespace Outposts {
|
|
|
403
409
|
*/
|
|
404
410
|
LineItems: LineItemRequestListDefinition;
|
|
405
411
|
/**
|
|
406
|
-
* The payment option
|
|
412
|
+
* The payment option.
|
|
407
413
|
*/
|
|
408
414
|
PaymentOption: PaymentOption;
|
|
409
415
|
/**
|
|
410
|
-
* The payment terms
|
|
416
|
+
* The payment terms.
|
|
411
417
|
*/
|
|
412
418
|
PaymentTerm?: PaymentTerm;
|
|
413
419
|
}
|
|
@@ -421,7 +427,7 @@ declare namespace Outposts {
|
|
|
421
427
|
Name: OutpostName;
|
|
422
428
|
Description?: OutpostDescription;
|
|
423
429
|
/**
|
|
424
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
430
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
425
431
|
*/
|
|
426
432
|
SiteId: SiteId;
|
|
427
433
|
AvailabilityZone?: AvailabilityZone;
|
|
@@ -467,7 +473,7 @@ declare namespace Outposts {
|
|
|
467
473
|
}
|
|
468
474
|
export interface DeleteOutpostInput {
|
|
469
475
|
/**
|
|
470
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
476
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
471
477
|
*/
|
|
472
478
|
OutpostId: OutpostId;
|
|
473
479
|
}
|
|
@@ -475,7 +481,7 @@ declare namespace Outposts {
|
|
|
475
481
|
}
|
|
476
482
|
export interface DeleteSiteInput {
|
|
477
483
|
/**
|
|
478
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
484
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
479
485
|
*/
|
|
480
486
|
SiteId: SiteId;
|
|
481
487
|
}
|
|
@@ -515,17 +521,17 @@ declare namespace Outposts {
|
|
|
515
521
|
}
|
|
516
522
|
export interface GetConnectionRequest {
|
|
517
523
|
/**
|
|
518
|
-
* The ID of the connection
|
|
524
|
+
* The ID of the connection.
|
|
519
525
|
*/
|
|
520
526
|
ConnectionId: ConnectionId;
|
|
521
527
|
}
|
|
522
528
|
export interface GetConnectionResponse {
|
|
523
529
|
/**
|
|
524
|
-
* The ID of the connection
|
|
530
|
+
* The ID of the connection.
|
|
525
531
|
*/
|
|
526
532
|
ConnectionId?: ConnectionId;
|
|
527
533
|
/**
|
|
528
|
-
* Information about
|
|
534
|
+
* Information about the connection.
|
|
529
535
|
*/
|
|
530
536
|
ConnectionDetails?: ConnectionDetails;
|
|
531
537
|
}
|
|
@@ -540,13 +546,13 @@ declare namespace Outposts {
|
|
|
540
546
|
}
|
|
541
547
|
export interface GetOutpostInput {
|
|
542
548
|
/**
|
|
543
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
549
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
544
550
|
*/
|
|
545
551
|
OutpostId: OutpostId;
|
|
546
552
|
}
|
|
547
553
|
export interface GetOutpostInstanceTypesInput {
|
|
548
554
|
/**
|
|
549
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
555
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
550
556
|
*/
|
|
551
557
|
OutpostId: OutpostId;
|
|
552
558
|
NextToken?: Token;
|
|
@@ -556,7 +562,7 @@ declare namespace Outposts {
|
|
|
556
562
|
InstanceTypes?: InstanceTypeListDefinition;
|
|
557
563
|
NextToken?: Token;
|
|
558
564
|
/**
|
|
559
|
-
* The ID of the Outpost.
|
|
565
|
+
* The ID of the Outpost.
|
|
560
566
|
*/
|
|
561
567
|
OutpostId?: OutpostId;
|
|
562
568
|
OutpostArn?: OutpostArn;
|
|
@@ -566,18 +572,18 @@ declare namespace Outposts {
|
|
|
566
572
|
}
|
|
567
573
|
export interface GetSiteAddressInput {
|
|
568
574
|
/**
|
|
569
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
575
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
570
576
|
*/
|
|
571
577
|
SiteId: SiteId;
|
|
572
578
|
/**
|
|
573
|
-
*
|
|
579
|
+
* The type of the address you request.
|
|
574
580
|
*/
|
|
575
581
|
AddressType: AddressType;
|
|
576
582
|
}
|
|
577
583
|
export interface GetSiteAddressOutput {
|
|
578
584
|
SiteId?: SiteId;
|
|
579
585
|
/**
|
|
580
|
-
*
|
|
586
|
+
* The type of the address you receive.
|
|
581
587
|
*/
|
|
582
588
|
AddressType?: AddressType;
|
|
583
589
|
/**
|
|
@@ -587,7 +593,7 @@ declare namespace Outposts {
|
|
|
587
593
|
}
|
|
588
594
|
export interface GetSiteInput {
|
|
589
595
|
/**
|
|
590
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
596
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
591
597
|
*/
|
|
592
598
|
SiteId: SiteId;
|
|
593
599
|
}
|
|
@@ -636,7 +642,7 @@ declare namespace Outposts {
|
|
|
636
642
|
*/
|
|
637
643
|
AssetId?: AssetId;
|
|
638
644
|
/**
|
|
639
|
-
* MAC addresses of the asset.
|
|
645
|
+
* The MAC addresses of the asset.
|
|
640
646
|
*/
|
|
641
647
|
MacAddressList?: MacAddressList;
|
|
642
648
|
}
|
|
@@ -663,15 +669,19 @@ declare namespace Outposts {
|
|
|
663
669
|
*/
|
|
664
670
|
OutpostIdentifier: OutpostIdentifier;
|
|
665
671
|
/**
|
|
666
|
-
*
|
|
672
|
+
* Filters the results by the host ID of a Dedicated Host.
|
|
667
673
|
*/
|
|
668
674
|
HostIdFilter?: HostIdList;
|
|
669
675
|
MaxResults?: MaxResults1000;
|
|
670
676
|
NextToken?: Token;
|
|
677
|
+
/**
|
|
678
|
+
* Filters the results by state.
|
|
679
|
+
*/
|
|
680
|
+
StatusFilter?: StatusList;
|
|
671
681
|
}
|
|
672
682
|
export interface ListAssetsOutput {
|
|
673
683
|
/**
|
|
674
|
-
*
|
|
684
|
+
* Information about the hardware assets.
|
|
675
685
|
*/
|
|
676
686
|
Assets?: AssetListDefinition;
|
|
677
687
|
NextToken?: Token;
|
|
@@ -680,15 +690,15 @@ declare namespace Outposts {
|
|
|
680
690
|
NextToken?: Token;
|
|
681
691
|
MaxResults?: MaxResults1000;
|
|
682
692
|
/**
|
|
683
|
-
*
|
|
693
|
+
* Filters the results by item class.
|
|
684
694
|
*/
|
|
685
695
|
ItemClassFilter?: CatalogItemClassList;
|
|
686
696
|
/**
|
|
687
|
-
*
|
|
697
|
+
* Filters the results by storage option.
|
|
688
698
|
*/
|
|
689
699
|
SupportedStorageFilter?: SupportedStorageList;
|
|
690
700
|
/**
|
|
691
|
-
*
|
|
701
|
+
* Filters the results by EC2 family (for example, M5).
|
|
692
702
|
*/
|
|
693
703
|
EC2FamilyFilter?: EC2FamilyList;
|
|
694
704
|
}
|
|
@@ -718,15 +728,15 @@ declare namespace Outposts {
|
|
|
718
728
|
NextToken?: Token;
|
|
719
729
|
MaxResults?: MaxResults1000;
|
|
720
730
|
/**
|
|
721
|
-
*
|
|
731
|
+
* Filters the results by the lifecycle status.
|
|
722
732
|
*/
|
|
723
733
|
LifeCycleStatusFilter?: LifeCycleStatusList;
|
|
724
734
|
/**
|
|
725
|
-
*
|
|
735
|
+
* Filters the results by Availability Zone (for example, us-east-1a).
|
|
726
736
|
*/
|
|
727
737
|
AvailabilityZoneFilter?: AvailabilityZoneList;
|
|
728
738
|
/**
|
|
729
|
-
*
|
|
739
|
+
* Filters the results by AZ ID (for example, use1-az1).
|
|
730
740
|
*/
|
|
731
741
|
AvailabilityZoneIdFilter?: AvailabilityZoneIdList;
|
|
732
742
|
}
|
|
@@ -738,15 +748,15 @@ declare namespace Outposts {
|
|
|
738
748
|
NextToken?: Token;
|
|
739
749
|
MaxResults?: MaxResults1000;
|
|
740
750
|
/**
|
|
741
|
-
*
|
|
751
|
+
* Filters the results by country code.
|
|
742
752
|
*/
|
|
743
753
|
OperatingAddressCountryCodeFilter?: CountryCodeList;
|
|
744
754
|
/**
|
|
745
|
-
*
|
|
755
|
+
* Filters the results by state or region.
|
|
746
756
|
*/
|
|
747
757
|
OperatingAddressStateOrRegionFilter?: StateOrRegionList;
|
|
748
758
|
/**
|
|
749
|
-
*
|
|
759
|
+
* Filters the results by city.
|
|
750
760
|
*/
|
|
751
761
|
OperatingAddressCityFilter?: CityList;
|
|
752
762
|
}
|
|
@@ -784,7 +794,7 @@ declare namespace Outposts {
|
|
|
784
794
|
*/
|
|
785
795
|
OrderId?: OrderId;
|
|
786
796
|
/**
|
|
787
|
-
* The status of the order. PREPARING - Order is received and being prepared. IN_PROGRESS - Order is either being built, shipped, or installed. To get more details, see the
|
|
797
|
+
* The status of the order. PREPARING - Order is received and being prepared. IN_PROGRESS - Order is either being built, shipped, or installed. To get more details, see the line item status. COMPLETED - Order is complete. CANCELLED - Order is cancelled. ERROR - Customer should contact support. The following status are deprecated: RECEIVED, PENDING, PROCESSING, INSTALLING, and FULFILLED.
|
|
788
798
|
*/
|
|
789
799
|
Status?: OrderStatus;
|
|
790
800
|
/**
|
|
@@ -828,11 +838,11 @@ declare namespace Outposts {
|
|
|
828
838
|
*/
|
|
829
839
|
LineItemCountsByStatus?: LineItemStatusCounts;
|
|
830
840
|
/**
|
|
831
|
-
*
|
|
841
|
+
* The submission date for the order.
|
|
832
842
|
*/
|
|
833
843
|
OrderSubmissionDate?: ISO8601Timestamp;
|
|
834
844
|
/**
|
|
835
|
-
*
|
|
845
|
+
* The fulfilment date for the order.
|
|
836
846
|
*/
|
|
837
847
|
OrderFulfilledDate?: ISO8601Timestamp;
|
|
838
848
|
}
|
|
@@ -869,7 +879,7 @@ declare namespace Outposts {
|
|
|
869
879
|
export type OutpostName = string;
|
|
870
880
|
export type OwnerId = string;
|
|
871
881
|
export type PaymentOption = "ALL_UPFRONT"|"NO_UPFRONT"|"PARTIAL_UPFRONT"|string;
|
|
872
|
-
export type PaymentTerm = "THREE_YEARS"|string;
|
|
882
|
+
export type PaymentTerm = "THREE_YEARS"|"ONE_YEAR"|string;
|
|
873
883
|
export type PostalCode = string;
|
|
874
884
|
export type PowerConnector = "L6_30P"|"IEC309"|"AH530P7W"|"AH532P6W"|string;
|
|
875
885
|
export type PowerDrawKva = "POWER_5_KVA"|"POWER_10_KVA"|"POWER_15_KVA"|string;
|
|
@@ -995,6 +1005,7 @@ declare namespace Outposts {
|
|
|
995
1005
|
}
|
|
996
1006
|
export type StateOrRegion = string;
|
|
997
1007
|
export type StateOrRegionList = StateOrRegion[];
|
|
1008
|
+
export type StatusList = AssetState[];
|
|
998
1009
|
export type SupportedHardwareType = "RACK"|"SERVER"|string;
|
|
999
1010
|
export type SupportedStorageEnum = "EBS"|"S3"|string;
|
|
1000
1011
|
export type SupportedStorageList = SupportedStorageEnum[];
|
|
@@ -1033,7 +1044,7 @@ declare namespace Outposts {
|
|
|
1033
1044
|
}
|
|
1034
1045
|
export interface UpdateOutpostInput {
|
|
1035
1046
|
/**
|
|
1036
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1047
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1037
1048
|
*/
|
|
1038
1049
|
OutpostId: OutpostId;
|
|
1039
1050
|
Name?: OutpostName;
|
|
@@ -1048,7 +1059,7 @@ declare namespace Outposts {
|
|
|
1048
1059
|
}
|
|
1049
1060
|
export interface UpdateSiteAddressInput {
|
|
1050
1061
|
/**
|
|
1051
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1062
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1052
1063
|
*/
|
|
1053
1064
|
SiteId: SiteId;
|
|
1054
1065
|
/**
|
|
@@ -1072,13 +1083,13 @@ declare namespace Outposts {
|
|
|
1072
1083
|
}
|
|
1073
1084
|
export interface UpdateSiteInput {
|
|
1074
1085
|
/**
|
|
1075
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1086
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1076
1087
|
*/
|
|
1077
1088
|
SiteId: SiteId;
|
|
1078
1089
|
Name?: SiteName;
|
|
1079
1090
|
Description?: SiteDescription;
|
|
1080
1091
|
/**
|
|
1081
|
-
*
|
|
1092
|
+
* Notes about a site.
|
|
1082
1093
|
*/
|
|
1083
1094
|
Notes?: SiteNotes;
|
|
1084
1095
|
}
|
|
@@ -1087,27 +1098,27 @@ declare namespace Outposts {
|
|
|
1087
1098
|
}
|
|
1088
1099
|
export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
1089
1100
|
/**
|
|
1090
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1101
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1091
1102
|
*/
|
|
1092
1103
|
SiteId: SiteId;
|
|
1093
1104
|
/**
|
|
1094
|
-
*
|
|
1105
|
+
* The power draw, in kVA, available at the hardware placement position for the rack.
|
|
1095
1106
|
*/
|
|
1096
1107
|
PowerDrawKva?: PowerDrawKva;
|
|
1097
1108
|
/**
|
|
1098
|
-
*
|
|
1109
|
+
* The power option that you can provide for hardware. Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
|
|
1099
1110
|
*/
|
|
1100
1111
|
PowerPhase?: PowerPhase;
|
|
1101
1112
|
/**
|
|
1102
|
-
*
|
|
1113
|
+
* The power connector that Amazon Web Services should plan to provide for connections to the hardware. Note the correlation between PowerPhase and PowerConnector. Single-phase AC feed L6-30P – (common in US); 30A; single phase IEC309 (blue) – P+N+E, 6hr; 32 A; single phase Three-phase AC feed AH530P7W (red) – 3P+N+E, 7hr; 30A; three phase AH532P6W (red) – 3P+N+E, 6hr; 32A; three phase
|
|
1103
1114
|
*/
|
|
1104
1115
|
PowerConnector?: PowerConnector;
|
|
1105
1116
|
/**
|
|
1106
|
-
*
|
|
1117
|
+
* Indicates whether the power feed comes above or below the rack.
|
|
1107
1118
|
*/
|
|
1108
1119
|
PowerFeedDrop?: PowerFeedDrop;
|
|
1109
1120
|
/**
|
|
1110
|
-
*
|
|
1121
|
+
* The uplink speed the rack should support for the connection to the Region.
|
|
1111
1122
|
*/
|
|
1112
1123
|
UplinkGbps?: UplinkGbps;
|
|
1113
1124
|
/**
|
|
@@ -1115,15 +1126,15 @@ declare namespace Outposts {
|
|
|
1115
1126
|
*/
|
|
1116
1127
|
UplinkCount?: UplinkCount;
|
|
1117
1128
|
/**
|
|
1118
|
-
*
|
|
1129
|
+
* The type of fiber that you will use to attach the Outpost to your network.
|
|
1119
1130
|
*/
|
|
1120
1131
|
FiberOpticCableType?: FiberOpticCableType;
|
|
1121
1132
|
/**
|
|
1122
|
-
*
|
|
1133
|
+
* The type of optical standard that you will use to attach the Outpost to your network. This field is dependent on uplink speed, fiber type, and distance to the upstream device. For more information about networking requirements for racks, see Network in the Amazon Web Services Outposts User Guide. OPTIC_10GBASE_SR: 10GBASE-SR OPTIC_10GBASE_IR: 10GBASE-IR OPTIC_10GBASE_LR: 10GBASE-LR OPTIC_40GBASE_SR: 40GBASE-SR OPTIC_40GBASE_ESR: 40GBASE-ESR OPTIC_40GBASE_IR4_LR4L: 40GBASE-IR (LR4L) OPTIC_40GBASE_LR4: 40GBASE-LR4 OPTIC_100GBASE_SR4: 100GBASE-SR4 OPTIC_100GBASE_CWDM4: 100GBASE-CWDM4 OPTIC_100GBASE_LR4: 100GBASE-LR4 OPTIC_100G_PSM4_MSA: 100G PSM4 MSA OPTIC_1000BASE_LX: 1000Base-LX OPTIC_1000BASE_SX : 1000Base-SX
|
|
1123
1134
|
*/
|
|
1124
1135
|
OpticalStandard?: OpticalStandard;
|
|
1125
1136
|
/**
|
|
1126
|
-
*
|
|
1137
|
+
* The maximum rack weight that this site can support. NO_LIMIT is over 2000lbs.
|
|
1127
1138
|
*/
|
|
1128
1139
|
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs;
|
|
1129
1140
|
}
|
|
@@ -2049,7 +2049,7 @@ declare namespace S3Control {
|
|
|
2049
2049
|
export type ObjectLambdaAccessPointArn = string;
|
|
2050
2050
|
export type ObjectLambdaAccessPointList = ObjectLambdaAccessPoint[];
|
|
2051
2051
|
export type ObjectLambdaAccessPointName = string;
|
|
2052
|
-
export type ObjectLambdaAllowedFeature = "GetObject-Range"|"GetObject-PartNumber"|string;
|
|
2052
|
+
export type ObjectLambdaAllowedFeature = "GetObject-Range"|"GetObject-PartNumber"|"HeadObject-Range"|"HeadObject-PartNumber"|string;
|
|
2053
2053
|
export type ObjectLambdaAllowedFeaturesList = ObjectLambdaAllowedFeature[];
|
|
2054
2054
|
export interface ObjectLambdaConfiguration {
|
|
2055
2055
|
/**
|
|
@@ -2087,7 +2087,7 @@ declare namespace S3Control {
|
|
|
2087
2087
|
*/
|
|
2088
2088
|
ContentTransformation: ObjectLambdaContentTransformation;
|
|
2089
2089
|
}
|
|
2090
|
-
export type ObjectLambdaTransformationConfigurationAction = "GetObject"|string;
|
|
2090
|
+
export type ObjectLambdaTransformationConfigurationAction = "GetObject"|"HeadObject"|"ListObjects"|"ListObjectsV2"|string;
|
|
2091
2091
|
export type ObjectLambdaTransformationConfigurationActionsList = ObjectLambdaTransformationConfigurationAction[];
|
|
2092
2092
|
export type ObjectLambdaTransformationConfigurationsList = ObjectLambdaTransformationConfiguration[];
|
|
2093
2093
|
export type ObjectLockEnabledForBucket = boolean;
|