aws-sdk 2.990.0 → 2.994.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +27 -1
  2. package/README.md +1 -1
  3. package/apis/appsync-2017-07-25.min.json +97 -77
  4. package/apis/comprehend-2017-11-27.min.json +205 -123
  5. package/apis/comprehend-2017-11-27.paginators.json +10 -0
  6. package/apis/dms-2016-01-01.min.json +3 -0
  7. package/apis/ec2-2016-11-15.min.json +125 -54
  8. package/apis/ec2-2016-11-15.paginators.json +6 -0
  9. package/apis/ecr-2015-09-21.min.json +66 -14
  10. package/apis/es-2015-01-01.min.json +14 -4
  11. package/apis/imagebuilder-2019-12-02.min.json +116 -82
  12. package/apis/iot-2015-05-28.min.json +80 -44
  13. package/apis/license-manager-2018-08-01.min.json +184 -71
  14. package/apis/mediaconvert-2017-08-29.min.json +194 -83
  15. package/apis/mediapackage-vod-2018-11-07.min.json +3 -0
  16. package/apis/mediatailor-2018-04-23.min.json +198 -149
  17. package/apis/models.lex.v2-2020-08-07.min.json +179 -22
  18. package/apis/models.lex.v2-2020-08-07.paginators.json +5 -0
  19. package/apis/opensearch-2021-01-01.min.json +14 -4
  20. package/apis/ssm-2014-11-06.min.json +105 -100
  21. package/apis/ssm-2014-11-06.waiters2.json +5 -0
  22. package/apis/wafv2-2019-07-29.min.json +114 -97
  23. package/clients/appsync.d.ts +35 -13
  24. package/clients/comprehend.d.ts +165 -1
  25. package/clients/dms.d.ts +14 -10
  26. package/clients/ec2.d.ts +147 -61
  27. package/clients/ecr.d.ts +76 -4
  28. package/clients/es.d.ts +18 -3
  29. package/clients/iam.d.ts +85 -85
  30. package/clients/imagebuilder.d.ts +73 -25
  31. package/clients/iot.d.ts +55 -5
  32. package/clients/lexmodelsv2.d.ts +188 -0
  33. package/clients/licensemanager.d.ts +211 -42
  34. package/clients/mediaconvert.d.ts +154 -17
  35. package/clients/mediapackagevod.d.ts +4 -0
  36. package/clients/mediatailor.d.ts +47 -1
  37. package/clients/opensearch.d.ts +22 -1
  38. package/clients/ssm.d.ts +40 -19
  39. package/clients/wafv2.d.ts +18 -0
  40. package/dist/aws-sdk-core-react-native.js +4 -4
  41. package/dist/aws-sdk-react-native.js +24 -24
  42. package/dist/aws-sdk.js +608 -341
  43. package/dist/aws-sdk.min.js +72 -72
  44. package/lib/config.js +1 -1
  45. package/lib/core.js +1 -1
  46. package/lib/event_listeners.js +1 -1
  47. package/lib/http_request.d.ts +1 -1
  48. package/lib/signers/v4.js +1 -1
  49. package/package.json +1 -1
package/clients/ec2.d.ts CHANGED
@@ -237,19 +237,19 @@ declare class EC2 extends Service {
237
237
  */
238
238
  attachVolume(callback?: (err: AWSError, data: EC2.Types.VolumeAttachment) => void): Request<EC2.Types.VolumeAttachment, AWSError>;
239
239
  /**
240
- * Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
240
+ * Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
241
241
  */
242
242
  attachVpnGateway(params: EC2.Types.AttachVpnGatewayRequest, callback?: (err: AWSError, data: EC2.Types.AttachVpnGatewayResult) => void): Request<EC2.Types.AttachVpnGatewayResult, AWSError>;
243
243
  /**
244
- * Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
244
+ * Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
245
245
  */
246
246
  attachVpnGateway(callback?: (err: AWSError, data: EC2.Types.AttachVpnGatewayResult) => void): Request<EC2.Types.AttachVpnGatewayResult, AWSError>;
247
247
  /**
248
- * Adds an ingress authorization rule to a Client VPN endpoint. Ingress authorization rules act as firewall rules that grant access to networks. You must configure ingress authorization rules to enable clients to access resources in AWS or on-premises networks.
248
+ * Adds an ingress authorization rule to a Client VPN endpoint. Ingress authorization rules act as firewall rules that grant access to networks. You must configure ingress authorization rules to enable clients to access resources in Amazon Web Services or on-premises networks.
249
249
  */
250
250
  authorizeClientVpnIngress(params: EC2.Types.AuthorizeClientVpnIngressRequest, callback?: (err: AWSError, data: EC2.Types.AuthorizeClientVpnIngressResult) => void): Request<EC2.Types.AuthorizeClientVpnIngressResult, AWSError>;
251
251
  /**
252
- * Adds an ingress authorization rule to a Client VPN endpoint. Ingress authorization rules act as firewall rules that grant access to networks. You must configure ingress authorization rules to enable clients to access resources in AWS or on-premises networks.
252
+ * Adds an ingress authorization rule to a Client VPN endpoint. Ingress authorization rules act as firewall rules that grant access to networks. You must configure ingress authorization rules to enable clients to access resources in Amazon Web Services or on-premises networks.
253
253
  */
254
254
  authorizeClientVpnIngress(callback?: (err: AWSError, data: EC2.Types.AuthorizeClientVpnIngressResult) => void): Request<EC2.Types.AuthorizeClientVpnIngressResult, AWSError>;
255
255
  /**
@@ -405,11 +405,11 @@ declare class EC2 extends Service {
405
405
  */
406
406
  createClientVpnRoute(callback?: (err: AWSError, data: EC2.Types.CreateClientVpnRouteResult) => void): Request<EC2.Types.CreateClientVpnRouteResult, AWSError>;
407
407
  /**
408
- * Provides information to AWS about your VPN customer gateway device. The customer gateway is the appliance at your end of the VPN connection. (The device on the AWS side of the VPN connection is the virtual private gateway.) You must provide the internet-routable IP address of the customer gateway's external interface. The IP address must be static and can be behind a device performing network address translation (NAT). For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range). Amazon EC2 supports all 4-byte ASN numbers in the range of 1 - 2147483647, with the exception of the following: 7224 - reserved in the us-east-1 Region 9059 - reserved in the eu-west-1 Region 17943 - reserved in the ap-southeast-1 Region 10124 - reserved in the ap-northeast-1 Region For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide. To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. Identical requests return information about the existing customer gateway and do not create new customer gateways.
408
+ * Provides information to Amazon Web Services about your VPN customer gateway device. The customer gateway is the appliance at your end of the VPN connection. (The device on the Amazon Web Services side of the VPN connection is the virtual private gateway.) You must provide the internet-routable IP address of the customer gateway's external interface. The IP address must be static and can be behind a device performing network address translation (NAT). For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range). Amazon EC2 supports all 4-byte ASN numbers in the range of 1 - 2147483647, with the exception of the following: 7224 - reserved in the us-east-1 Region 9059 - reserved in the eu-west-1 Region 17943 - reserved in the ap-southeast-1 Region 10124 - reserved in the ap-northeast-1 Region For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide. To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. Identical requests return information about the existing customer gateway and do not create new customer gateways.
409
409
  */
410
410
  createCustomerGateway(params: EC2.Types.CreateCustomerGatewayRequest, callback?: (err: AWSError, data: EC2.Types.CreateCustomerGatewayResult) => void): Request<EC2.Types.CreateCustomerGatewayResult, AWSError>;
411
411
  /**
412
- * Provides information to AWS about your VPN customer gateway device. The customer gateway is the appliance at your end of the VPN connection. (The device on the AWS side of the VPN connection is the virtual private gateway.) You must provide the internet-routable IP address of the customer gateway's external interface. The IP address must be static and can be behind a device performing network address translation (NAT). For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range). Amazon EC2 supports all 4-byte ASN numbers in the range of 1 - 2147483647, with the exception of the following: 7224 - reserved in the us-east-1 Region 9059 - reserved in the eu-west-1 Region 17943 - reserved in the ap-southeast-1 Region 10124 - reserved in the ap-northeast-1 Region For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide. To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. Identical requests return information about the existing customer gateway and do not create new customer gateways.
412
+ * Provides information to Amazon Web Services about your VPN customer gateway device. The customer gateway is the appliance at your end of the VPN connection. (The device on the Amazon Web Services side of the VPN connection is the virtual private gateway.) You must provide the internet-routable IP address of the customer gateway's external interface. The IP address must be static and can be behind a device performing network address translation (NAT). For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range). Amazon EC2 supports all 4-byte ASN numbers in the range of 1 - 2147483647, with the exception of the following: 7224 - reserved in the us-east-1 Region 9059 - reserved in the eu-west-1 Region 17943 - reserved in the ap-southeast-1 Region 10124 - reserved in the ap-northeast-1 Region For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide. To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. Identical requests return information about the existing customer gateway and do not create new customer gateways.
413
413
  */
414
414
  createCustomerGateway(callback?: (err: AWSError, data: EC2.Types.CreateCustomerGatewayResult) => void): Request<EC2.Types.CreateCustomerGatewayResult, AWSError>;
415
415
  /**
@@ -861,27 +861,27 @@ declare class EC2 extends Service {
861
861
  */
862
862
  createVpcPeeringConnection(callback?: (err: AWSError, data: EC2.Types.CreateVpcPeeringConnectionResult) => void): Request<EC2.Types.CreateVpcPeeringConnectionResult, AWSError>;
863
863
  /**
864
- * Creates a VPN connection between an existing virtual private gateway or transit gateway and a customer gateway. The supported connection type is ipsec.1. The response includes information that you need to give to your network administrator to configure your customer gateway. We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway device. If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
864
+ * Creates a VPN connection between an existing virtual private gateway or transit gateway and a customer gateway. The supported connection type is ipsec.1. The response includes information that you need to give to your network administrator to configure your customer gateway. We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway device. If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
865
865
  */
866
866
  createVpnConnection(params: EC2.Types.CreateVpnConnectionRequest, callback?: (err: AWSError, data: EC2.Types.CreateVpnConnectionResult) => void): Request<EC2.Types.CreateVpnConnectionResult, AWSError>;
867
867
  /**
868
- * Creates a VPN connection between an existing virtual private gateway or transit gateway and a customer gateway. The supported connection type is ipsec.1. The response includes information that you need to give to your network administrator to configure your customer gateway. We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway device. If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
868
+ * Creates a VPN connection between an existing virtual private gateway or transit gateway and a customer gateway. The supported connection type is ipsec.1. The response includes information that you need to give to your network administrator to configure your customer gateway. We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway device. If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
869
869
  */
870
870
  createVpnConnection(callback?: (err: AWSError, data: EC2.Types.CreateVpnConnectionResult) => void): Request<EC2.Types.CreateVpnConnectionResult, AWSError>;
871
871
  /**
872
- * Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
872
+ * Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
873
873
  */
874
874
  createVpnConnectionRoute(params: EC2.Types.CreateVpnConnectionRouteRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
875
875
  /**
876
- * Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
876
+ * Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
877
877
  */
878
878
  createVpnConnectionRoute(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
879
879
  /**
880
- * Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
880
+ * Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
881
881
  */
882
882
  createVpnGateway(params: EC2.Types.CreateVpnGatewayRequest, callback?: (err: AWSError, data: EC2.Types.CreateVpnGatewayResult) => void): Request<EC2.Types.CreateVpnGatewayResult, AWSError>;
883
883
  /**
884
- * Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
884
+ * Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
885
885
  */
886
886
  createVpnGateway(callback?: (err: AWSError, data: EC2.Types.CreateVpnGatewayResult) => void): Request<EC2.Types.CreateVpnGatewayResult, AWSError>;
887
887
  /**
@@ -1309,11 +1309,11 @@ declare class EC2 extends Service {
1309
1309
  */
1310
1310
  deleteVpcPeeringConnection(callback?: (err: AWSError, data: EC2.Types.DeleteVpcPeeringConnectionResult) => void): Request<EC2.Types.DeleteVpcPeeringConnectionResult, AWSError>;
1311
1311
  /**
1312
- * Deletes the specified VPN connection. If you're deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway device using the new configuration information returned with the new VPN connection ID. For certificate-based authentication, delete all AWS Certificate Manager (ACM) private certificates used for the AWS-side tunnel endpoints for the VPN connection before deleting the VPN connection.
1312
+ * Deletes the specified VPN connection. If you're deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway device using the new configuration information returned with the new VPN connection ID. For certificate-based authentication, delete all Certificate Manager (ACM) private certificates used for the Amazon Web Services-side tunnel endpoints for the VPN connection before deleting the VPN connection.
1313
1313
  */
1314
1314
  deleteVpnConnection(params: EC2.Types.DeleteVpnConnectionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
1315
1315
  /**
1316
- * Deletes the specified VPN connection. If you're deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway device using the new configuration information returned with the new VPN connection ID. For certificate-based authentication, delete all AWS Certificate Manager (ACM) private certificates used for the AWS-side tunnel endpoints for the VPN connection before deleting the VPN connection.
1316
+ * Deletes the specified VPN connection. If you're deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway device using the new configuration information returned with the new VPN connection ID. For certificate-based authentication, delete all Certificate Manager (ACM) private certificates used for the Amazon Web Services-side tunnel endpoints for the VPN connection before deleting the VPN connection.
1317
1317
  */
1318
1318
  deleteVpnConnection(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
1319
1319
  /**
@@ -1509,11 +1509,11 @@ declare class EC2 extends Service {
1509
1509
  */
1510
1510
  describeConversionTasks(callback?: (err: AWSError, data: EC2.Types.DescribeConversionTasksResult) => void): Request<EC2.Types.DescribeConversionTasksResult, AWSError>;
1511
1511
  /**
1512
- * Describes one or more of your VPN customer gateways. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
1512
+ * Describes one or more of your VPN customer gateways. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
1513
1513
  */
1514
1514
  describeCustomerGateways(params: EC2.Types.DescribeCustomerGatewaysRequest, callback?: (err: AWSError, data: EC2.Types.DescribeCustomerGatewaysResult) => void): Request<EC2.Types.DescribeCustomerGatewaysResult, AWSError>;
1515
1515
  /**
1516
- * Describes one or more of your VPN customer gateways. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
1516
+ * Describes one or more of your VPN customer gateways. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
1517
1517
  */
1518
1518
  describeCustomerGateways(callback?: (err: AWSError, data: EC2.Types.DescribeCustomerGatewaysResult) => void): Request<EC2.Types.DescribeCustomerGatewaysResult, AWSError>;
1519
1519
  /**
@@ -2357,19 +2357,19 @@ declare class EC2 extends Service {
2357
2357
  */
2358
2358
  describeVpcs(callback?: (err: AWSError, data: EC2.Types.DescribeVpcsResult) => void): Request<EC2.Types.DescribeVpcsResult, AWSError>;
2359
2359
  /**
2360
- * Describes one or more of your VPN connections. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
2360
+ * Describes one or more of your VPN connections. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
2361
2361
  */
2362
2362
  describeVpnConnections(params: EC2.Types.DescribeVpnConnectionsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeVpnConnectionsResult) => void): Request<EC2.Types.DescribeVpnConnectionsResult, AWSError>;
2363
2363
  /**
2364
- * Describes one or more of your VPN connections. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
2364
+ * Describes one or more of your VPN connections. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
2365
2365
  */
2366
2366
  describeVpnConnections(callback?: (err: AWSError, data: EC2.Types.DescribeVpnConnectionsResult) => void): Request<EC2.Types.DescribeVpnConnectionsResult, AWSError>;
2367
2367
  /**
2368
- * Describes one or more of your virtual private gateways. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
2368
+ * Describes one or more of your virtual private gateways. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
2369
2369
  */
2370
2370
  describeVpnGateways(params: EC2.Types.DescribeVpnGatewaysRequest, callback?: (err: AWSError, data: EC2.Types.DescribeVpnGatewaysResult) => void): Request<EC2.Types.DescribeVpnGatewaysResult, AWSError>;
2371
2371
  /**
2372
- * Describes one or more of your virtual private gateways. For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide.
2372
+ * Describes one or more of your virtual private gateways. For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
2373
2373
  */
2374
2374
  describeVpnGateways(callback?: (err: AWSError, data: EC2.Types.DescribeVpnGatewaysResult) => void): Request<EC2.Types.DescribeVpnGatewaysResult, AWSError>;
2375
2375
  /**
@@ -2860,6 +2860,22 @@ declare class EC2 extends Service {
2860
2860
  * Gets information about the route table propagations for the specified transit gateway route table.
2861
2861
  */
2862
2862
  getTransitGatewayRouteTablePropagations(callback?: (err: AWSError, data: EC2.Types.GetTransitGatewayRouteTablePropagationsResult) => void): Request<EC2.Types.GetTransitGatewayRouteTablePropagationsResult, AWSError>;
2863
+ /**
2864
+ * Download an AWS-provided sample configuration file to be used with the customer gateway device specified for your Site-to-Site VPN connection.
2865
+ */
2866
+ getVpnConnectionDeviceSampleConfiguration(params: EC2.Types.GetVpnConnectionDeviceSampleConfigurationRequest, callback?: (err: AWSError, data: EC2.Types.GetVpnConnectionDeviceSampleConfigurationResult) => void): Request<EC2.Types.GetVpnConnectionDeviceSampleConfigurationResult, AWSError>;
2867
+ /**
2868
+ * Download an AWS-provided sample configuration file to be used with the customer gateway device specified for your Site-to-Site VPN connection.
2869
+ */
2870
+ getVpnConnectionDeviceSampleConfiguration(callback?: (err: AWSError, data: EC2.Types.GetVpnConnectionDeviceSampleConfigurationResult) => void): Request<EC2.Types.GetVpnConnectionDeviceSampleConfigurationResult, AWSError>;
2871
+ /**
2872
+ * Obtain a list of customer gateway devices for which sample configuration files can be provided. The request has no additional parameters. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.
2873
+ */
2874
+ getVpnConnectionDeviceTypes(params: EC2.Types.GetVpnConnectionDeviceTypesRequest, callback?: (err: AWSError, data: EC2.Types.GetVpnConnectionDeviceTypesResult) => void): Request<EC2.Types.GetVpnConnectionDeviceTypesResult, AWSError>;
2875
+ /**
2876
+ * Obtain a list of customer gateway devices for which sample configuration files can be provided. The request has no additional parameters. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.
2877
+ */
2878
+ getVpnConnectionDeviceTypes(callback?: (err: AWSError, data: EC2.Types.GetVpnConnectionDeviceTypesResult) => void): Request<EC2.Types.GetVpnConnectionDeviceTypesResult, AWSError>;
2863
2879
  /**
2864
2880
  * Uploads a client certificate revocation list to the specified Client VPN endpoint. Uploading a client certificate revocation list overwrites the existing client certificate revocation list. Uploading a client certificate revocation list resets existing client connections.
2865
2881
  */
@@ -3245,19 +3261,19 @@ declare class EC2 extends Service {
3245
3261
  */
3246
3262
  modifyVpcTenancy(callback?: (err: AWSError, data: EC2.Types.ModifyVpcTenancyResult) => void): Request<EC2.Types.ModifyVpcTenancyResult, AWSError>;
3247
3263
  /**
3248
- * Modifies the customer gateway or the target gateway of an AWS Site-to-Site VPN connection. To modify the target gateway, the following migration options are available: An existing virtual private gateway to a new virtual private gateway An existing virtual private gateway to a transit gateway An existing transit gateway to a new transit gateway An existing transit gateway to a virtual private gateway Before you perform the migration to the new gateway, you must configure the new gateway. Use CreateVpnGateway to create a virtual private gateway, or CreateTransitGateway to create a transit gateway. This step is required when you migrate from a virtual private gateway with static routes to a transit gateway. You must delete the static routes before you migrate to the new gateway. Keep a copy of the static route before you delete it. You will need to add back these routes to the transit gateway after the VPN connection migration is complete. After you migrate to the new gateway, you might need to modify your VPC route table. Use CreateRoute and DeleteRoute to make the changes described in VPN Gateway Target Modification Required VPC Route Table Updates in the AWS Site-to-Site VPN User Guide. When the new gateway is a transit gateway, modify the transit gateway route table to allow traffic between the VPC and the AWS Site-to-Site VPN connection. Use CreateTransitGatewayRoute to add the routes. If you deleted VPN static routes, you must add the static routes to the transit gateway route table. After you perform this operation, the AWS VPN endpoint's IP addresses on the AWS side and the tunnel options remain intact. Your AWS Site-to-Site VPN connection will be temporarily unavailable for a brief period while we provision the new endpoints.
3264
+ * Modifies the customer gateway or the target gateway of an Amazon Web Services Site-to-Site VPN connection. To modify the target gateway, the following migration options are available: An existing virtual private gateway to a new virtual private gateway An existing virtual private gateway to a transit gateway An existing transit gateway to a new transit gateway An existing transit gateway to a virtual private gateway Before you perform the migration to the new gateway, you must configure the new gateway. Use CreateVpnGateway to create a virtual private gateway, or CreateTransitGateway to create a transit gateway. This step is required when you migrate from a virtual private gateway with static routes to a transit gateway. You must delete the static routes before you migrate to the new gateway. Keep a copy of the static route before you delete it. You will need to add back these routes to the transit gateway after the VPN connection migration is complete. After you migrate to the new gateway, you might need to modify your VPC route table. Use CreateRoute and DeleteRoute to make the changes described in Update VPC route tables in the Amazon Web Services Site-to-Site VPN User Guide. When the new gateway is a transit gateway, modify the transit gateway route table to allow traffic between the VPC and the Amazon Web Services Site-to-Site VPN connection. Use CreateTransitGatewayRoute to add the routes. If you deleted VPN static routes, you must add the static routes to the transit gateway route table. After you perform this operation, the VPN endpoint's IP addresses on the Amazon Web Services side and the tunnel options remain intact. Your Amazon Web Services Site-to-Site VPN connection will be temporarily unavailable for a brief period while we provision the new endpoints.
3249
3265
  */
3250
3266
  modifyVpnConnection(params: EC2.Types.ModifyVpnConnectionRequest, callback?: (err: AWSError, data: EC2.Types.ModifyVpnConnectionResult) => void): Request<EC2.Types.ModifyVpnConnectionResult, AWSError>;
3251
3267
  /**
3252
- * Modifies the customer gateway or the target gateway of an AWS Site-to-Site VPN connection. To modify the target gateway, the following migration options are available: An existing virtual private gateway to a new virtual private gateway An existing virtual private gateway to a transit gateway An existing transit gateway to a new transit gateway An existing transit gateway to a virtual private gateway Before you perform the migration to the new gateway, you must configure the new gateway. Use CreateVpnGateway to create a virtual private gateway, or CreateTransitGateway to create a transit gateway. This step is required when you migrate from a virtual private gateway with static routes to a transit gateway. You must delete the static routes before you migrate to the new gateway. Keep a copy of the static route before you delete it. You will need to add back these routes to the transit gateway after the VPN connection migration is complete. After you migrate to the new gateway, you might need to modify your VPC route table. Use CreateRoute and DeleteRoute to make the changes described in VPN Gateway Target Modification Required VPC Route Table Updates in the AWS Site-to-Site VPN User Guide. When the new gateway is a transit gateway, modify the transit gateway route table to allow traffic between the VPC and the AWS Site-to-Site VPN connection. Use CreateTransitGatewayRoute to add the routes. If you deleted VPN static routes, you must add the static routes to the transit gateway route table. After you perform this operation, the AWS VPN endpoint's IP addresses on the AWS side and the tunnel options remain intact. Your AWS Site-to-Site VPN connection will be temporarily unavailable for a brief period while we provision the new endpoints.
3268
+ * Modifies the customer gateway or the target gateway of an Amazon Web Services Site-to-Site VPN connection. To modify the target gateway, the following migration options are available: An existing virtual private gateway to a new virtual private gateway An existing virtual private gateway to a transit gateway An existing transit gateway to a new transit gateway An existing transit gateway to a virtual private gateway Before you perform the migration to the new gateway, you must configure the new gateway. Use CreateVpnGateway to create a virtual private gateway, or CreateTransitGateway to create a transit gateway. This step is required when you migrate from a virtual private gateway with static routes to a transit gateway. You must delete the static routes before you migrate to the new gateway. Keep a copy of the static route before you delete it. You will need to add back these routes to the transit gateway after the VPN connection migration is complete. After you migrate to the new gateway, you might need to modify your VPC route table. Use CreateRoute and DeleteRoute to make the changes described in Update VPC route tables in the Amazon Web Services Site-to-Site VPN User Guide. When the new gateway is a transit gateway, modify the transit gateway route table to allow traffic between the VPC and the Amazon Web Services Site-to-Site VPN connection. Use CreateTransitGatewayRoute to add the routes. If you deleted VPN static routes, you must add the static routes to the transit gateway route table. After you perform this operation, the VPN endpoint's IP addresses on the Amazon Web Services side and the tunnel options remain intact. Your Amazon Web Services Site-to-Site VPN connection will be temporarily unavailable for a brief period while we provision the new endpoints.
3253
3269
  */
3254
3270
  modifyVpnConnection(callback?: (err: AWSError, data: EC2.Types.ModifyVpnConnectionResult) => void): Request<EC2.Types.ModifyVpnConnectionResult, AWSError>;
3255
3271
  /**
3256
- * Modifies the connection options for your Site-to-Site VPN connection. When you modify the VPN connection options, the VPN endpoint IP addresses on the AWS side do not change, and the tunnel options do not change. Your VPN connection will be temporarily unavailable for a brief period while the VPN connection is updated.
3272
+ * Modifies the connection options for your Site-to-Site VPN connection. When you modify the VPN connection options, the VPN endpoint IP addresses on the Amazon Web Services side do not change, and the tunnel options do not change. Your VPN connection will be temporarily unavailable for a brief period while the VPN connection is updated.
3257
3273
  */
3258
3274
  modifyVpnConnectionOptions(params: EC2.Types.ModifyVpnConnectionOptionsRequest, callback?: (err: AWSError, data: EC2.Types.ModifyVpnConnectionOptionsResult) => void): Request<EC2.Types.ModifyVpnConnectionOptionsResult, AWSError>;
3259
3275
  /**
3260
- * Modifies the connection options for your Site-to-Site VPN connection. When you modify the VPN connection options, the VPN endpoint IP addresses on the AWS side do not change, and the tunnel options do not change. Your VPN connection will be temporarily unavailable for a brief period while the VPN connection is updated.
3276
+ * Modifies the connection options for your Site-to-Site VPN connection. When you modify the VPN connection options, the VPN endpoint IP addresses on the Amazon Web Services side do not change, and the tunnel options do not change. Your VPN connection will be temporarily unavailable for a brief period while the VPN connection is updated.
3261
3277
  */
3262
3278
  modifyVpnConnectionOptions(callback?: (err: AWSError, data: EC2.Types.ModifyVpnConnectionOptionsResult) => void): Request<EC2.Types.ModifyVpnConnectionOptionsResult, AWSError>;
3263
3279
  /**
@@ -3269,11 +3285,11 @@ declare class EC2 extends Service {
3269
3285
  */
3270
3286
  modifyVpnTunnelCertificate(callback?: (err: AWSError, data: EC2.Types.ModifyVpnTunnelCertificateResult) => void): Request<EC2.Types.ModifyVpnTunnelCertificateResult, AWSError>;
3271
3287
  /**
3272
- * Modifies the options for a VPN tunnel in an AWS Site-to-Site VPN connection. You can modify multiple options for a tunnel in a single request, but you can only modify one tunnel at a time. For more information, see Site-to-Site VPN Tunnel Options for Your Site-to-Site VPN Connection in the AWS Site-to-Site VPN User Guide.
3288
+ * Modifies the options for a VPN tunnel in an Amazon Web Services Site-to-Site VPN connection. You can modify multiple options for a tunnel in a single request, but you can only modify one tunnel at a time. For more information, see Site-to-Site VPN tunnel options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide.
3273
3289
  */
3274
3290
  modifyVpnTunnelOptions(params: EC2.Types.ModifyVpnTunnelOptionsRequest, callback?: (err: AWSError, data: EC2.Types.ModifyVpnTunnelOptionsResult) => void): Request<EC2.Types.ModifyVpnTunnelOptionsResult, AWSError>;
3275
3291
  /**
3276
- * Modifies the options for a VPN tunnel in an AWS Site-to-Site VPN connection. You can modify multiple options for a tunnel in a single request, but you can only modify one tunnel at a time. For more information, see Site-to-Site VPN Tunnel Options for Your Site-to-Site VPN Connection in the AWS Site-to-Site VPN User Guide.
3292
+ * Modifies the options for a VPN tunnel in an Amazon Web Services Site-to-Site VPN connection. You can modify multiple options for a tunnel in a single request, but you can only modify one tunnel at a time. For more information, see Site-to-Site VPN tunnel options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide.
3277
3293
  */
3278
3294
  modifyVpnTunnelOptions(callback?: (err: AWSError, data: EC2.Types.ModifyVpnTunnelOptionsResult) => void): Request<EC2.Types.ModifyVpnTunnelOptionsResult, AWSError>;
3279
3295
  /**
@@ -4693,7 +4709,7 @@ declare namespace EC2 {
4693
4709
  */
4694
4710
  SubnetId: SubnetId;
4695
4711
  /**
4696
- * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
4712
+ * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
4697
4713
  */
4698
4714
  ClientToken?: String;
4699
4715
  /**
@@ -5189,7 +5205,7 @@ declare namespace EC2 {
5189
5205
  */
5190
5206
  Description?: String;
5191
5207
  /**
5192
- * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
5208
+ * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
5193
5209
  */
5194
5210
  ClientToken?: String;
5195
5211
  /**
@@ -5875,7 +5891,7 @@ declare namespace EC2 {
5875
5891
  }
5876
5892
  export interface CertificateAuthenticationRequest {
5877
5893
  /**
5878
- * The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in AWS Certificate Manager (ACM).
5894
+ * The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in Certificate Manager (ACM).
5879
5895
  */
5880
5896
  ClientRootCertificateChainArn?: String;
5881
5897
  }
@@ -5956,7 +5972,7 @@ declare namespace EC2 {
5956
5972
  */
5957
5973
  Enabled?: Boolean;
5958
5974
  /**
5959
- * The Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.
5975
+ * The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.
5960
5976
  */
5961
5977
  LambdaFunctionArn?: String;
5962
5978
  }
@@ -5966,7 +5982,7 @@ declare namespace EC2 {
5966
5982
  */
5967
5983
  Enabled?: Boolean;
5968
5984
  /**
5969
- * The Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.
5985
+ * The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.
5970
5986
  */
5971
5987
  LambdaFunctionArn?: String;
5972
5988
  /**
@@ -6147,7 +6163,7 @@ declare namespace EC2 {
6147
6163
  */
6148
6164
  DnsServers?: ValueStringList;
6149
6165
  /**
6150
- * Indicates whether split-tunnel is enabled in the AWS Client VPN endpoint. For information about split-tunnel VPN endpoints, see Split-Tunnel AWS Client VPN Endpoint in the AWS Client VPN Administrator Guide.
6166
+ * Indicates whether split-tunnel is enabled in the Client VPN endpoint. For information about split-tunnel VPN endpoints, see Split-Tunnel Client VPN endpoint in the Client VPN Administrator Guide.
6151
6167
  */
6152
6168
  SplitTunnel?: Boolean;
6153
6169
  /**
@@ -6682,7 +6698,7 @@ declare namespace EC2 {
6682
6698
  */
6683
6699
  ClientCidrBlock: String;
6684
6700
  /**
6685
- * The ARN of the server certificate. For more information, see the AWS Certificate Manager User Guide.
6701
+ * The ARN of the server certificate. For more information, see the Certificate Manager User Guide.
6686
6702
  */
6687
6703
  ServerCertificateArn: String;
6688
6704
  /**
@@ -6710,7 +6726,7 @@ declare namespace EC2 {
6710
6726
  */
6711
6727
  Description?: String;
6712
6728
  /**
6713
- * Indicates whether split-tunnel is enabled on the AWS Client VPN endpoint. By default, split-tunnel on a VPN endpoint is disabled. For information about split-tunnel VPN endpoints, see Split-Tunnel AWS Client VPN Endpoint in the AWS Client VPN Administrator Guide.
6729
+ * Indicates whether split-tunnel is enabled on the Client VPN endpoint. By default, split-tunnel on a VPN endpoint is disabled. For information about split-tunnel VPN endpoints, see Split-tunnel Client VPN endpoint in the Client VPN Administrator Guide.
6714
6730
  */
6715
6731
  SplitTunnel?: Boolean;
6716
6732
  /**
@@ -6718,7 +6734,7 @@ declare namespace EC2 {
6718
6734
  */
6719
6735
  DryRun?: Boolean;
6720
6736
  /**
6721
- * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
6737
+ * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
6722
6738
  */
6723
6739
  ClientToken?: String;
6724
6740
  /**
@@ -6762,7 +6778,7 @@ declare namespace EC2 {
6762
6778
  */
6763
6779
  ClientVpnEndpointId: ClientVpnEndpointId;
6764
6780
  /**
6765
- * The IPv4 address range, in CIDR notation, of the route destination. For example: To add a route for Internet access, enter 0.0.0.0/0 To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range To add a route for an on-premises network, enter the AWS Site-to-Site VPN connection's IPv4 CIDR range To add a route for the local network, enter the client CIDR range
6781
+ * The IPv4 address range, in CIDR notation, of the route destination. For example: To add a route for Internet access, enter 0.0.0.0/0 To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's IPv4 CIDR range To add a route for the local network, enter the client CIDR range
6766
6782
  */
6767
6783
  DestinationCidrBlock: String;
6768
6784
  /**
@@ -6774,7 +6790,7 @@ declare namespace EC2 {
6774
6790
  */
6775
6791
  Description?: String;
6776
6792
  /**
6777
- * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
6793
+ * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
6778
6794
  */
6779
6795
  ClientToken?: String;
6780
6796
  /**
@@ -15957,6 +15973,7 @@ declare namespace EC2 {
15957
15973
  TotalFpgaMemoryInMiB?: totalFpgaMemory;
15958
15974
  }
15959
15975
  export type FreeTierEligibleFlag = boolean;
15976
+ export type GVCDMaxResults = number;
15960
15977
  export type GatewayType = "ipsec.1"|string;
15961
15978
  export interface GetAssociatedEnclaveCertificateIamRolesRequest {
15962
15979
  /**
@@ -16622,6 +16639,54 @@ declare namespace EC2 {
16622
16639
  */
16623
16640
  NextToken?: String;
16624
16641
  }
16642
+ export interface GetVpnConnectionDeviceSampleConfigurationRequest {
16643
+ /**
16644
+ * The VpnConnectionId specifies the Site-to-Site VPN connection used for the sample configuration.
16645
+ */
16646
+ VpnConnectionId: VpnConnectionId;
16647
+ /**
16648
+ * Device identifier provided by the GetVpnConnectionDeviceTypes API.
16649
+ */
16650
+ VpnConnectionDeviceTypeId: VpnConnectionDeviceTypeId;
16651
+ /**
16652
+ * The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one of the following versions: ikev1 or ikev2.
16653
+ */
16654
+ InternetKeyExchangeVersion?: String;
16655
+ /**
16656
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
16657
+ */
16658
+ DryRun?: Boolean;
16659
+ }
16660
+ export interface GetVpnConnectionDeviceSampleConfigurationResult {
16661
+ /**
16662
+ * Sample configuration file for the specified customer gateway device.
16663
+ */
16664
+ VpnConnectionDeviceSampleConfiguration?: VpnConnectionDeviceSampleConfiguration;
16665
+ }
16666
+ export interface GetVpnConnectionDeviceTypesRequest {
16667
+ /**
16668
+ * The maximum number of results returned by GetVpnConnectionDeviceTypes in paginated output. When this parameter is used, GetVpnConnectionDeviceTypes only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another GetVpnConnectionDeviceTypes request with the returned NextToken value. This value can be between 200 and 1000. If this parameter is not used, then GetVpnConnectionDeviceTypes returns all results.
16669
+ */
16670
+ MaxResults?: GVCDMaxResults;
16671
+ /**
16672
+ * The NextToken value returned from a previous paginated GetVpnConnectionDeviceTypes request where MaxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken value. This value is null when there are no more results to return.
16673
+ */
16674
+ NextToken?: NextToken;
16675
+ /**
16676
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
16677
+ */
16678
+ DryRun?: Boolean;
16679
+ }
16680
+ export interface GetVpnConnectionDeviceTypesResult {
16681
+ /**
16682
+ * List of customer gateway devices that have a sample configuration file available for use.
16683
+ */
16684
+ VpnConnectionDeviceTypes?: VpnConnectionDeviceTypeList;
16685
+ /**
16686
+ * The NextToken value to include in a future GetVpnConnectionDeviceTypes request. When the results of a GetVpnConnectionDeviceTypes request exceed MaxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
16687
+ */
16688
+ NextToken?: NextToken;
16689
+ }
16625
16690
  export type GpuDeviceCount = number;
16626
16691
  export interface GpuDeviceInfo {
16627
16692
  /**
@@ -16661,7 +16726,7 @@ declare namespace EC2 {
16661
16726
  */
16662
16727
  TotalGpuMemoryInMiB?: totalGpuMemory;
16663
16728
  }
16664
- export type GroupIdStringList = String[];
16729
+ export type GroupIdStringList = SecurityGroupId[];
16665
16730
  export interface GroupIdentifier {
16666
16731
  /**
16667
16732
  * The name of the security group.
@@ -17198,7 +17263,7 @@ declare namespace EC2 {
17198
17263
  */
17199
17264
  ClientVpnEndpointId: ClientVpnEndpointId;
17200
17265
  /**
17201
- * The client certificate revocation list file. For more information, see Generate a Client Certificate Revocation List in the AWS Client VPN Administrator Guide.
17266
+ * The client certificate revocation list file. For more information, see Generate a Client Certificate Revocation List in the Client VPN Administrator Guide.
17202
17267
  */
17203
17268
  CertificateRevocationList: String;
17204
17269
  /**
@@ -20315,7 +20380,7 @@ declare namespace EC2 {
20315
20380
  */
20316
20381
  ClientVpnEndpointId: ClientVpnEndpointId;
20317
20382
  /**
20318
- * The ARN of the server certificate to be used. The server certificate must be provisioned in AWS Certificate Manager (ACM).
20383
+ * The ARN of the server certificate to be used. The server certificate must be provisioned in Certificate Manager (ACM).
20319
20384
  */
20320
20385
  ServerCertificateArn?: String;
20321
20386
  /**
@@ -20335,7 +20400,7 @@ declare namespace EC2 {
20335
20400
  */
20336
20401
  Description?: String;
20337
20402
  /**
20338
- * Indicates whether the VPN is split-tunnel. For information about split-tunnel VPN endpoints, see Split-Tunnel AWS Client VPN Endpoint in the AWS Client VPN Administrator Guide.
20403
+ * Indicates whether the VPN is split-tunnel. For information about split-tunnel VPN endpoints, see Split-tunnel Client VPN endpoint in the Client VPN Administrator Guide.
20339
20404
  */
20340
20405
  SplitTunnel?: Boolean;
20341
20406
  /**
@@ -21543,7 +21608,7 @@ declare namespace EC2 {
21543
21608
  */
21544
21609
  LocalIpv4NetworkCidr?: String;
21545
21610
  /**
21546
- * The IPv4 CIDR on the AWS side of the VPN connection. Default: 0.0.0.0/0
21611
+ * The IPv4 CIDR on the Amazon Web Services side of the VPN connection. Default: 0.0.0.0/0
21547
21612
  */
21548
21613
  RemoteIpv4NetworkCidr?: String;
21549
21614
  /**
@@ -21551,7 +21616,7 @@ declare namespace EC2 {
21551
21616
  */
21552
21617
  LocalIpv6NetworkCidr?: String;
21553
21618
  /**
21554
- * The IPv6 CIDR on the AWS side of the VPN connection. Default: ::/0
21619
+ * The IPv6 CIDR on the Amazon Web Services side of the VPN connection. Default: ::/0
21555
21620
  */
21556
21621
  RemoteIpv6NetworkCidr?: String;
21557
21622
  /**
@@ -21576,7 +21641,7 @@ declare namespace EC2 {
21576
21641
  */
21577
21642
  CustomerGatewayId?: CustomerGatewayId;
21578
21643
  /**
21579
- * The ID of the virtual private gateway at the AWS side of the VPN connection.
21644
+ * The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.
21580
21645
  */
21581
21646
  VpnGatewayId?: VpnGatewayId;
21582
21647
  /**
@@ -21589,7 +21654,7 @@ declare namespace EC2 {
21589
21654
  }
21590
21655
  export interface ModifyVpnTunnelCertificateRequest {
21591
21656
  /**
21592
- * The ID of the AWS Site-to-Site VPN connection.
21657
+ * The ID of the Amazon Web Services Site-to-Site VPN connection.
21593
21658
  */
21594
21659
  VpnConnectionId: VpnConnectionId;
21595
21660
  /**
@@ -21606,7 +21671,7 @@ declare namespace EC2 {
21606
21671
  }
21607
21672
  export interface ModifyVpnTunnelOptionsRequest {
21608
21673
  /**
21609
- * The ID of the AWS Site-to-Site VPN connection.
21674
+ * The ID of the Amazon Web Services Site-to-Site VPN connection.
21610
21675
  */
21611
21676
  VpnConnectionId: VpnConnectionId;
21612
21677
  /**
@@ -21647,7 +21712,7 @@ declare namespace EC2 {
21647
21712
  */
21648
21713
  Phase2LifetimeSeconds?: Integer;
21649
21714
  /**
21650
- * The margin time, in seconds, before the phase 2 lifetime expires, during which the AWS side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage. Constraints: A value between 60 and half of Phase2LifetimeSeconds. Default: 540
21715
+ * The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage. Constraints: A value between 60 and half of Phase2LifetimeSeconds. Default: 540
21651
21716
  */
21652
21717
  RekeyMarginTimeSeconds?: Integer;
21653
21718
  /**
@@ -21695,7 +21760,7 @@ declare namespace EC2 {
21695
21760
  */
21696
21761
  IKEVersions?: IKEVersionsRequestList;
21697
21762
  /**
21698
- * The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for AWS to initiate the IKE negotiation. Valid Values: add | start Default: add
21763
+ * The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation. Valid Values: add | start Default: add
21699
21764
  */
21700
21765
  StartupAction?: String;
21701
21766
  }
@@ -25466,10 +25531,6 @@ declare namespace EC2 {
25466
25531
  * The ID of the local gateway route table.
25467
25532
  */
25468
25533
  LocalGatewayRouteTableId: LocalGatewayRoutetableId;
25469
- /**
25470
- * One or more filters.
25471
- */
25472
- Filters: FilterList;
25473
25534
  /**
25474
25535
  * The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
25475
25536
  */
@@ -25482,6 +25543,10 @@ declare namespace EC2 {
25482
25543
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
25483
25544
  */
25484
25545
  DryRun?: Boolean;
25546
+ /**
25547
+ * One or more filters.
25548
+ */
25549
+ Filters: FilterList;
25485
25550
  }
25486
25551
  export interface SearchLocalGatewayRoutesResult {
25487
25552
  /**
@@ -28219,7 +28284,7 @@ declare namespace EC2 {
28219
28284
  */
28220
28285
  Phase2LifetimeSeconds?: Integer;
28221
28286
  /**
28222
- * The margin time, in seconds, before the phase 2 lifetime expires, during which the AWS side of the VPN connection performs an IKE rekey.
28287
+ * The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey.
28223
28288
  */
28224
28289
  RekeyMarginTimeSeconds?: Integer;
28225
28290
  /**
@@ -29183,7 +29248,7 @@ declare namespace EC2 {
29183
29248
  */
29184
29249
  CustomerGatewayId?: String;
29185
29250
  /**
29186
- * The category of the VPN connection. A value of VPN indicates an AWS VPN connection. A value of VPN-Classic indicates an AWS Classic VPN connection.
29251
+ * The category of the VPN connection. A value of VPN indicates an Amazon Web Services VPN connection. A value of VPN-Classic indicates an Amazon Web Services Classic VPN connection.
29187
29252
  */
29188
29253
  Category?: String;
29189
29254
  /**
@@ -29199,7 +29264,7 @@ declare namespace EC2 {
29199
29264
  */
29200
29265
  VpnConnectionId?: String;
29201
29266
  /**
29202
- * The ID of the virtual private gateway at the AWS side of the VPN connection.
29267
+ * The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.
29203
29268
  */
29204
29269
  VpnGatewayId?: String;
29205
29270
  /**
@@ -29223,6 +29288,27 @@ declare namespace EC2 {
29223
29288
  */
29224
29289
  VgwTelemetry?: VgwTelemetryList;
29225
29290
  }
29291
+ export type VpnConnectionDeviceSampleConfiguration = string;
29292
+ export interface VpnConnectionDeviceType {
29293
+ /**
29294
+ * Customer gateway device identifier.
29295
+ */
29296
+ VpnConnectionDeviceTypeId?: String;
29297
+ /**
29298
+ * Customer gateway device vendor.
29299
+ */
29300
+ Vendor?: String;
29301
+ /**
29302
+ * Customer gateway device platform.
29303
+ */
29304
+ Platform?: String;
29305
+ /**
29306
+ * Customer gateway device software version.
29307
+ */
29308
+ Software?: String;
29309
+ }
29310
+ export type VpnConnectionDeviceTypeId = string;
29311
+ export type VpnConnectionDeviceTypeList = VpnConnectionDeviceType[];
29226
29312
  export type VpnConnectionId = string;
29227
29313
  export type VpnConnectionIdStringList = VpnConnectionId[];
29228
29314
  export type VpnConnectionList = VpnConnection[];
@@ -29240,7 +29326,7 @@ declare namespace EC2 {
29240
29326
  */
29241
29327
  LocalIpv4NetworkCidr?: String;
29242
29328
  /**
29243
- * The IPv4 CIDR on the AWS side of the VPN connection.
29329
+ * The IPv4 CIDR on the Amazon Web Services side of the VPN connection.
29244
29330
  */
29245
29331
  RemoteIpv4NetworkCidr?: String;
29246
29332
  /**
@@ -29248,7 +29334,7 @@ declare namespace EC2 {
29248
29334
  */
29249
29335
  LocalIpv6NetworkCidr?: String;
29250
29336
  /**
29251
- * The IPv6 CIDR on the AWS side of the VPN connection.
29337
+ * The IPv6 CIDR on the Amazon Web Services side of the VPN connection.
29252
29338
  */
29253
29339
  RemoteIpv6NetworkCidr?: String;
29254
29340
  /**
@@ -29282,7 +29368,7 @@ declare namespace EC2 {
29282
29368
  */
29283
29369
  LocalIpv4NetworkCidr?: String;
29284
29370
  /**
29285
- * The IPv4 CIDR on the AWS side of the VPN connection. Default: 0.0.0.0/0
29371
+ * The IPv4 CIDR on the Amazon Web Services side of the VPN connection. Default: 0.0.0.0/0
29286
29372
  */
29287
29373
  RemoteIpv4NetworkCidr?: String;
29288
29374
  /**
@@ -29290,7 +29376,7 @@ declare namespace EC2 {
29290
29376
  */
29291
29377
  LocalIpv6NetworkCidr?: String;
29292
29378
  /**
29293
- * The IPv6 CIDR on the AWS side of the VPN connection. Default: ::/0
29379
+ * The IPv6 CIDR on the Amazon Web Services side of the VPN connection. Default: ::/0
29294
29380
  */
29295
29381
  RemoteIpv6NetworkCidr?: String;
29296
29382
  }
@@ -29368,7 +29454,7 @@ declare namespace EC2 {
29368
29454
  */
29369
29455
  Phase2LifetimeSeconds?: Integer;
29370
29456
  /**
29371
- * The margin time, in seconds, before the phase 2 lifetime expires, during which the AWS side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage. Constraints: A value between 60 and half of Phase2LifetimeSeconds. Default: 540
29457
+ * The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for RekeyFuzzPercentage. Constraints: A value between 60 and half of Phase2LifetimeSeconds. Default: 540
29372
29458
  */
29373
29459
  RekeyMarginTimeSeconds?: Integer;
29374
29460
  /**
@@ -29416,7 +29502,7 @@ declare namespace EC2 {
29416
29502
  */
29417
29503
  IKEVersions?: IKEVersionsRequestList;
29418
29504
  /**
29419
- * The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for AWS to initiate the IKE negotiation. Valid Values: add | start Default: add
29505
+ * The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation. Valid Values: add | start Default: add
29420
29506
  */
29421
29507
  StartupAction?: String;
29422
29508
  }