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.
Files changed (36) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +13 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +1536 -0
  9. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.paginators.json +50 -0
  10. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
  11. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +359 -293
  12. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  13. package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +39 -38
  14. package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +8 -1
  15. package/node_modules/aws-sdk/apis/workmail-2017-10-01.min.json +309 -72
  16. package/node_modules/aws-sdk/apis/workmail-2017-10-01.paginators.json +5 -0
  17. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  18. package/node_modules/aws-sdk/clients/all.js +2 -1
  19. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  20. package/node_modules/aws-sdk/clients/connectcases.d.ts +1466 -0
  21. package/node_modules/aws-sdk/clients/connectcases.js +18 -0
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +9 -1
  23. package/node_modules/aws-sdk/clients/ecs.d.ts +4 -4
  24. package/node_modules/aws-sdk/clients/glue.d.ts +154 -0
  25. package/node_modules/aws-sdk/clients/networkfirewall.d.ts +5 -0
  26. package/node_modules/aws-sdk/clients/outposts.d.ts +89 -78
  27. package/node_modules/aws-sdk/clients/s3control.d.ts +2 -2
  28. package/node_modules/aws-sdk/clients/workmail.d.ts +436 -103
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +47 -10
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +13 -3
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +62 -62
  33. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  34. package/node_modules/aws-sdk/lib/core.js +1 -1
  35. package/node_modules/aws-sdk/package.json +1 -1
  36. 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
- * Cancels an order for an Outpost.
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
- * Cancels an order for an Outpost.
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 AvailabilityZone or AvailabilityZoneId.
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 AvailabilityZone or AvailabilityZoneId.
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 a catalog item.
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 a catalog item.
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 a 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.
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 a 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.
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 an order.
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 an order.
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
- * Gets information about the specified Outpost site.
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
- * Gets information about the specified Outpost site.
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
- * Lists the hardware assets in an Outpost. If you are using Dedicated Hosts on Amazon Web Services Outposts, you can filter your request by host ID to return a list of hardware assets that allocate resources for Dedicated Hosts.
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
- * Lists the hardware assets in an Outpost. If you are using Dedicated Hosts on Amazon Web Services Outposts, you can filter your request by host ID to return a list of hardware assets that allocate resources for Dedicated Hosts.
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. Add filters to your request to return a more specific list of results. Use filters to match an item class, storage option, or EC2 family. If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.
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. Add filters to your request to return a more specific list of results. Use filters to match an item class, storage option, or EC2 family. If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.
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. You can filter your request by Outpost to return a more specific list of results.
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. You can filter your request by Outpost to return a more specific list of results.
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. Add filters to your request to return a more specific list of results. Use filters to match an Outpost lifecycle status, Availability Zone (us-east-1a), and AZ ID (use1-az1). If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.
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. Add filters to your request to return a more specific list of results. Use filters to match an Outpost lifecycle status, Availability Zone (us-east-1a), and AZ ID (use1-az1). If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.
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. Add operating address filters to your request to return a more specific list of results. Use filters to match site city, country code, or state/region of the operating address. If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.
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. Add operating address filters to your request to return a more specific list of results. Use filters to match site city, country code, or state/region of the operating address. If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.
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
- * Updates the site.
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
- * Updates the site.
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
- * Updates the site address. To update a site address with 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.
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
- * Updates the site address. To update a site address with 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.
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 to cancel.
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 any Dedicated Hosts on the asset.
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 for the order.
412
+ * The payment option.
407
413
  */
408
414
  PaymentOption: PaymentOption;
409
415
  /**
410
- * The payment terms for the order.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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 you request.
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 you receive.
530
+ * The ID of the connection.
525
531
  */
526
532
  ConnectionId?: ConnectionId;
527
533
  /**
528
- * Information about a connection.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
575
+ * The ID or the Amazon Resource Name (ARN) of the site.
570
576
  */
571
577
  SiteId: SiteId;
572
578
  /**
573
- * The type of the address you request.
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
- * The type of the address you receive.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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
- * A filter for the host ID of Dedicated Hosts on the Outpost. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
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
- * Information about hardware assets.
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
- * A filter for the class of items in the catalog. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
693
+ * Filters the results by item class.
684
694
  */
685
695
  ItemClassFilter?: CatalogItemClassList;
686
696
  /**
687
- * A filter for the storage options of items in the catalog. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
697
+ * Filters the results by storage option.
688
698
  */
689
699
  SupportedStorageFilter?: SupportedStorageList;
690
700
  /**
691
- * A filter for EC2 family options for items in the catalog. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
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
- * A filter for the lifecycle status of the Outpost. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
731
+ * Filters the results by the lifecycle status.
722
732
  */
723
733
  LifeCycleStatusFilter?: LifeCycleStatusList;
724
734
  /**
725
- * A filter for the Availability Zone (us-east-1a) of the Outpost. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
735
+ * Filters the results by Availability Zone (for example, us-east-1a).
726
736
  */
727
737
  AvailabilityZoneFilter?: AvailabilityZoneList;
728
738
  /**
729
- * A filter for the AZ IDs (use1-az1) of the Outpost. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
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
- * A filter for the country code of the Outpost site. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
751
+ * Filters the results by country code.
742
752
  */
743
753
  OperatingAddressCountryCodeFilter?: CountryCodeList;
744
754
  /**
745
- * A filter for the state/region of the Outpost site. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
755
+ * Filters the results by state or region.
746
756
  */
747
757
  OperatingAddressStateOrRegionFilter?: StateOrRegionList;
748
758
  /**
749
- * A filter for the city of the Outpost site. Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.
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 LineItem 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.
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
- * Submission date for the order.
841
+ * The submission date for the order.
832
842
  */
833
843
  OrderSubmissionDate?: ISO8601Timestamp;
834
844
  /**
835
- * Fulfilment date for the order.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
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
- * Notes about a site.
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. In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and sites throughout the Outposts Query API. To address backwards compatibility, the parameter names OutpostID or SiteID remain in use. Despite the parameter name, you can make the request with an ARN.
1101
+ * The ID or the Amazon Resource Name (ARN) of the site.
1091
1102
  */
1092
1103
  SiteId: SiteId;
1093
1104
  /**
1094
- * Specify in kVA the power draw available at the hardware placement position for the rack.
1105
+ * The power draw, in kVA, available at the hardware placement position for the rack.
1095
1106
  */
1096
1107
  PowerDrawKva?: PowerDrawKva;
1097
1108
  /**
1098
- * Specify 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
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
- * Specify 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
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
- * Specify whether the power feed comes above or below the rack.
1117
+ * Indicates whether the power feed comes above or below the rack.
1107
1118
  */
1108
1119
  PowerFeedDrop?: PowerFeedDrop;
1109
1120
  /**
1110
- * Specify the uplink speed the rack should support for the connection to the Region.
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
- * Specify the type of fiber that you will use to attach the Outpost to your network.
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
- * Specify 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
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
- * Specify the maximum rack weight that this site can support. NO_LIMIT is over 2000lbs.
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;