aws-sdk-ec2 1.206.0 → 1.211.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4d23597e7cc0b278ec9aa8144ece74dda08269049f8b1afdfbfdf350db1e6de
4
- data.tar.gz: 99658a12bf6e214b9c76db9604f534aac72d8ea9cc8a9b48ee9b77a6a2909af4
3
+ metadata.gz: 345b6cd4201d5f051fb4b111c2cc9a5f550e67f8294695a0a03ef2afabed5370
4
+ data.tar.gz: 290ecca4cf105014634641f2e8b79109019d335fb599e4d0590404d25f116d6a
5
5
  SHA512:
6
- metadata.gz: b0c7bd41d8472816f18d275605b2a918606550e6ce2ee1f34131607d66f173c55fb3099832b76bd71dbcde35820af93cbb597aa3efb5a9b131778c2013288192
7
- data.tar.gz: 41f480046d6ed342c109ca4ecf805cf75d575e60fe83109ec2ad4bd378622814c7f86648a36ea480f4ccf06fb019a3a96040be35d6f9fb101583ceba146fdf1d
6
+ metadata.gz: a4f071726e751a1c14329ed91a91633adf969c8ddcba42c35f3781eb4b285b9663975acd06aa00ac6a5c38f8984f035e3b39abbb8a1d924b5b152bb9b79f9977
7
+ data.tar.gz: 943637f87af460c3dc829a3b0be0554c34b5a3635da61ba5ba39f948e8032742493968db2fd8e50b667aa3a4664297e0613b0bde32298218aef86a9194079364
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.206.0'
75
+ GEM_VERSION = '1.211.0'
76
76
 
77
77
  end
@@ -777,7 +777,7 @@ module Aws::EC2
777
777
  # resp = client.allocate_address({
778
778
  # domain: "vpc", # accepts vpc, standard
779
779
  # address: "PublicIpAddress",
780
- # public_ipv_4_pool: "String",
780
+ # public_ipv_4_pool: "Ipv4PoolEc2Id",
781
781
  # network_border_group: "String",
782
782
  # customer_owned_ipv_4_pool: "String",
783
783
  # dry_run: false,
@@ -1406,22 +1406,21 @@ module Aws::EC2
1406
1406
  # AWS Certificate Manager (ACM) certificate. This enables the
1407
1407
  # certificate to be used by the ACM for Nitro Enclaves application
1408
1408
  # inside an enclave. For more information, see [AWS Certificate Manager
1409
- # for Nitro Enclaves][1] in the *Amazon Elastic Compute Cloud User
1410
- # Guide*.
1409
+ # for Nitro Enclaves][1] in the *AWS Nitro Enclaves User Guide*.
1411
1410
  #
1412
1411
  # When the IAM role is associated with the ACM certificate, places the
1413
1412
  # certificate, certificate chain, and encrypted private key in an Amazon
1414
1413
  # S3 bucket that only the associated IAM role can access. The private
1415
- # key of the certificate is encrypted with an AWS-managed KMS key that
1416
- # has an attached attestation-based key policy.
1414
+ # key of the certificate is encrypted with an AWS-managed KMS customer
1415
+ # master (CMK) that has an attached attestation-based CMK policy.
1417
1416
  #
1418
1417
  # To enable the IAM role to access the Amazon S3 object, you must grant
1419
1418
  # it permission to call `s3:GetObject` on the Amazon S3 bucket returned
1420
- # by the command. To enable the IAM role to access the AWS KMS key, you
1421
- # must grant it permission to call `kms:Decrypt` on AWS KMS key returned
1419
+ # by the command. To enable the IAM role to access the AWS KMS CMK, you
1420
+ # must grant it permission to call `kms:Decrypt` on AWS KMS CMK returned
1422
1421
  # by the command. For more information, see [ Grant the role permission
1423
- # to access the certificate and encryption key][2] in the *Amazon
1424
- # Elastic Compute Cloud User Guide*.
1422
+ # to access the certificate and encryption key][2] in the *AWS Nitro
1423
+ # Enclaves User Guide*.
1425
1424
  #
1426
1425
  #
1427
1426
  #
@@ -3303,31 +3302,28 @@ module Aws::EC2
3303
3302
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
3304
3303
  #
3305
3304
  # @option params [String] :kms_key_id
3306
- # An identifier for the symmetric AWS Key Management Service (AWS KMS)
3307
- # customer master key (CMK) to use when creating the encrypted volume.
3308
- # This parameter is only required if you want to use a non-default CMK;
3309
- # if this parameter is not specified, the default CMK for EBS is used.
3310
- # If a `KmsKeyId` is specified, the `Encrypted` flag must also be set.
3305
+ # The identifier of the symmetric AWS Key Management Service (AWS KMS)
3306
+ # customer master key (CMK) to use when creating encrypted volumes. If
3307
+ # this parameter is not specified, your AWS managed CMK for EBS is used.
3308
+ # If you specify a CMK, you must also set the encrypted state to `true`.
3311
3309
  #
3312
- # To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias
3313
- # name, or alias ARN. When using an alias name, prefix it with
3314
- # "alias/". For example:
3310
+ # You can specify a CMK using any of the following:
3315
3311
  #
3316
- # * Key ID: `1234abcd-12ab-34cd-56ef-1234567890ab`
3312
+ # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
3317
3313
  #
3318
- # * Key ARN:
3319
- # `arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab`
3314
+ # * Key alias. For example, alias/ExampleAlias.
3320
3315
  #
3321
- # * Alias name: `alias/ExampleAlias`
3316
+ # * Key ARN. For example,
3317
+ # arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.
3322
3318
  #
3323
- # * Alias ARN: `arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias`
3319
+ # * Alias ARN. For example,
3320
+ # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
3324
3321
  #
3325
- # AWS parses `KmsKeyId` asynchronously, meaning that the action you call
3326
- # may appear to complete even though you provided an invalid identifier.
3327
- # This action will eventually report failure.
3322
+ # AWS authenticates the CMK asynchronously. Therefore, if you specify an
3323
+ # identifier that is not valid, the action can appear to complete, but
3324
+ # eventually fails.
3328
3325
  #
3329
- # The specified CMK must exist in the Region that the snapshot is being
3330
- # copied to.
3326
+ # The specified CMK must exist in the destination Region.
3331
3327
  #
3332
3328
  # Amazon EBS does not support asymmetric CMKs.
3333
3329
  #
@@ -3452,15 +3448,15 @@ module Aws::EC2
3452
3448
  #
3453
3449
  # You can specify the CMK using any of the following:
3454
3450
  #
3455
- # * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
3451
+ # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
3456
3452
  #
3457
3453
  # * Key alias. For example, alias/ExampleAlias.
3458
3454
  #
3459
3455
  # * Key ARN. For example,
3460
- # arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
3456
+ # arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.
3461
3457
  #
3462
3458
  # * Alias ARN. For example,
3463
- # arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
3459
+ # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
3464
3460
  #
3465
3461
  # AWS authenticates the CMK asynchronously. Therefore, if you specify an
3466
3462
  # ID, alias, or ARN that is not valid, the action can appear to
@@ -5270,13 +5266,13 @@ module Aws::EC2
5270
5266
  # A description for the conversion task or the resource being exported.
5271
5267
  # The maximum length is 255 characters.
5272
5268
  #
5273
- # @option params [Types::ExportToS3TaskSpecification] :export_to_s3_task
5269
+ # @option params [required, Types::ExportToS3TaskSpecification] :export_to_s3_task
5274
5270
  # The format and location for an instance export task.
5275
5271
  #
5276
5272
  # @option params [required, String] :instance_id
5277
5273
  # The ID of the instance.
5278
5274
  #
5279
- # @option params [String] :target_environment
5275
+ # @option params [required, String] :target_environment
5280
5276
  # The target virtualization environment.
5281
5277
  #
5282
5278
  # @option params [Array<Types::TagSpecification>] :tag_specifications
@@ -5290,14 +5286,14 @@ module Aws::EC2
5290
5286
  #
5291
5287
  # resp = client.create_instance_export_task({
5292
5288
  # description: "String",
5293
- # export_to_s3_task: {
5289
+ # export_to_s3_task: { # required
5294
5290
  # container_format: "ova", # accepts ova
5295
5291
  # disk_image_format: "VMDK", # accepts VMDK, RAW, VHD
5296
5292
  # s3_bucket: "String",
5297
5293
  # s3_prefix: "String",
5298
5294
  # },
5299
5295
  # instance_id: "InstanceId", # required
5300
- # target_environment: "citrix", # accepts citrix, vmware, microsoft
5296
+ # target_environment: "citrix", # required, accepts citrix, vmware, microsoft
5301
5297
  # tag_specifications: [
5302
5298
  # {
5303
5299
  # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
@@ -7243,6 +7239,10 @@ module Aws::EC2
7243
7239
  # If you have the required permissions, the error response is
7244
7240
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
7245
7241
  #
7242
+ # @option params [String] :vpc_endpoint_id
7243
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
7244
+ # endpoints only.
7245
+ #
7246
7246
  # @option params [String] :egress_only_internet_gateway_id
7247
7247
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
7248
7248
  #
@@ -7302,6 +7302,7 @@ module Aws::EC2
7302
7302
  # destination_ipv_6_cidr_block: "String",
7303
7303
  # destination_prefix_list_id: "PrefixListResourceId",
7304
7304
  # dry_run: false,
7305
+ # vpc_endpoint_id: "VpcEndpointId",
7305
7306
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
7306
7307
  # gateway_id: "RouteGatewayId",
7307
7308
  # instance_id: "InstanceId",
@@ -9135,15 +9136,15 @@ module Aws::EC2
9135
9136
  #
9136
9137
  # You can specify the CMK using any of the following:
9137
9138
  #
9138
- # * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
9139
+ # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
9139
9140
  #
9140
9141
  # * Key alias. For example, alias/ExampleAlias.
9141
9142
  #
9142
9143
  # * Key ARN. For example,
9143
- # arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
9144
+ # arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.
9144
9145
  #
9145
9146
  # * Alias ARN. For example,
9146
- # arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
9147
+ # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
9147
9148
  #
9148
9149
  # AWS authenticates the CMK asynchronously. Therefore, if you specify an
9149
9150
  # ID, alias, or ARN that is not valid, the action can appear to
@@ -9503,6 +9504,10 @@ module Aws::EC2
9503
9504
  # You can specify the subnets in which to create an endpoint, and the
9504
9505
  # security groups to associate with the endpoint network interface.
9505
9506
  #
9507
+ # A `GatewayLoadBalancer` endpoint is a network interface in your subnet
9508
+ # that serves an endpoint for communicating with a Gateway Load Balancer
9509
+ # that you've configured as a VPC endpoint service.
9510
+ #
9506
9511
  # Use DescribeVpcEndpointServices to get a list of supported services.
9507
9512
  #
9508
9513
  #
@@ -9529,17 +9534,18 @@ module Aws::EC2
9529
9534
  # provider.
9530
9535
  #
9531
9536
  # @option params [String] :policy_document
9532
- # A policy to attach to the endpoint that controls access to the
9533
- # service. The policy must be in valid JSON format. If this parameter is
9534
- # not specified, we attach a default policy that allows full access to
9535
- # the service.
9537
+ # (Interface and gateway endpoints) A policy to attach to the endpoint
9538
+ # that controls access to the service. The policy must be in valid JSON
9539
+ # format. If this parameter is not specified, we attach a default policy
9540
+ # that allows full access to the service.
9536
9541
  #
9537
9542
  # @option params [Array<String>] :route_table_ids
9538
9543
  # (Gateway endpoint) One or more route table IDs.
9539
9544
  #
9540
9545
  # @option params [Array<String>] :subnet_ids
9541
- # (Interface endpoint) The ID of one or more subnets in which to create
9542
- # an endpoint network interface.
9546
+ # (Interface and Gateway Load Balancer endpoints) The ID of one or more
9547
+ # subnets in which to create an endpoint network interface. For a
9548
+ # Gateway Load Balancer endpoint, you can specify one subnet only.
9543
9549
  #
9544
9550
  # @option params [Array<String>] :security_group_ids
9545
9551
  # (Interface endpoint) The ID of one or more security groups to
@@ -9582,7 +9588,7 @@ module Aws::EC2
9582
9588
  #
9583
9589
  # resp = client.create_vpc_endpoint({
9584
9590
  # dry_run: false,
9585
- # vpc_endpoint_type: "Interface", # accepts Interface, Gateway
9591
+ # vpc_endpoint_type: "Interface", # accepts Interface, Gateway, GatewayLoadBalancer
9586
9592
  # vpc_id: "VpcId", # required
9587
9593
  # service_name: "String", # required
9588
9594
  # policy_document: "String",
@@ -9607,7 +9613,7 @@ module Aws::EC2
9607
9613
  # @example Response structure
9608
9614
  #
9609
9615
  # resp.vpc_endpoint.vpc_endpoint_id #=> String
9610
- # resp.vpc_endpoint.vpc_endpoint_type #=> String, one of "Interface", "Gateway"
9616
+ # resp.vpc_endpoint.vpc_endpoint_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
9611
9617
  # resp.vpc_endpoint.vpc_id #=> String
9612
9618
  # resp.vpc_endpoint.service_name #=> String
9613
9619
  # resp.vpc_endpoint.state #=> String, one of "PendingAcceptance", "Pending", "Available", "Deleting", "Deleted", "Rejected", "Failed", "Expired"
@@ -9723,23 +9729,30 @@ module Aws::EC2
9723
9729
 
9724
9730
  # Creates a VPC endpoint service configuration to which service
9725
9731
  # consumers (AWS accounts, IAM users, and IAM roles) can connect.
9726
- # Service consumers can create an interface VPC endpoint to connect to
9727
- # your service.
9728
9732
  #
9729
- # To create an endpoint service configuration, you must first create a
9730
- # Network Load Balancer for your service. For more information, see [VPC
9731
- # Endpoint Services][1] in the *Amazon Virtual Private Cloud User
9732
- # Guide*.
9733
+ # To create an endpoint service configuration, you must first create one
9734
+ # of the following for your service:
9735
+ #
9736
+ # * A [Network Load Balancer][1]. Service consumers connect to your
9737
+ # service using an interface endpoint.
9738
+ #
9739
+ # * A [Gateway Load Balancer][2]. Service consumers connect to your
9740
+ # service using a Gateway Load Balancer endpoint.
9741
+ #
9742
+ # For more information, see [VPC Endpoint Services][3] in the *Amazon
9743
+ # Virtual Private Cloud User Guide*.
9733
9744
  #
9734
9745
  # If you set the private DNS name, you must prove that you own the
9735
9746
  # private DNS domain name. For more information, see [VPC Endpoint
9736
- # Service Private DNS Name Verification][2] in the *Amazon Virtual
9747
+ # Service Private DNS Name Verification][4] in the *Amazon Virtual
9737
9748
  # Private Cloud User Guide*.
9738
9749
  #
9739
9750
  #
9740
9751
  #
9741
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html
9742
- # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
9752
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/introduction.html
9753
+ # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/introduction.html
9754
+ # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html
9755
+ # [4]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
9743
9756
  #
9744
9757
  # @option params [Boolean] :dry_run
9745
9758
  # Checks whether you have the required permissions for the action,
@@ -9753,12 +9766,17 @@ module Aws::EC2
9753
9766
  # AcceptVpcEndpointConnections.
9754
9767
  #
9755
9768
  # @option params [String] :private_dns_name
9756
- # The private DNS name to assign to the VPC endpoint service.
9769
+ # (Interface endpoint configuration) The private DNS name to assign to
9770
+ # the VPC endpoint service.
9757
9771
  #
9758
- # @option params [required, Array<String>] :network_load_balancer_arns
9772
+ # @option params [Array<String>] :network_load_balancer_arns
9759
9773
  # The Amazon Resource Names (ARNs) of one or more Network Load Balancers
9760
9774
  # for your service.
9761
9775
  #
9776
+ # @option params [Array<String>] :gateway_load_balancer_arns
9777
+ # The Amazon Resource Names (ARNs) of one or more Gateway Load
9778
+ # Balancers.
9779
+ #
9762
9780
  # @option params [String] :client_token
9763
9781
  # Unique, case-sensitive identifier that you provide to ensure the
9764
9782
  # idempotency of the request. For more information, see [How to Ensure
@@ -9782,7 +9800,8 @@ module Aws::EC2
9782
9800
  # dry_run: false,
9783
9801
  # acceptance_required: false,
9784
9802
  # private_dns_name: "String",
9785
- # network_load_balancer_arns: ["String"], # required
9803
+ # network_load_balancer_arns: ["String"],
9804
+ # gateway_load_balancer_arns: ["String"],
9786
9805
  # client_token: "String",
9787
9806
  # tag_specifications: [
9788
9807
  # {
@@ -9800,7 +9819,7 @@ module Aws::EC2
9800
9819
  # @example Response structure
9801
9820
  #
9802
9821
  # resp.service_configuration.service_type #=> Array
9803
- # resp.service_configuration.service_type[0].service_type #=> String, one of "Interface", "Gateway"
9822
+ # resp.service_configuration.service_type[0].service_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
9804
9823
  # resp.service_configuration.service_id #=> String
9805
9824
  # resp.service_configuration.service_name #=> String
9806
9825
  # resp.service_configuration.service_state #=> String, one of "Pending", "Available", "Deleting", "Deleted", "Failed"
@@ -9810,6 +9829,8 @@ module Aws::EC2
9810
9829
  # resp.service_configuration.manages_vpc_endpoints #=> Boolean
9811
9830
  # resp.service_configuration.network_load_balancer_arns #=> Array
9812
9831
  # resp.service_configuration.network_load_balancer_arns[0] #=> String
9832
+ # resp.service_configuration.gateway_load_balancer_arns #=> Array
9833
+ # resp.service_configuration.gateway_load_balancer_arns[0] #=> String
9813
9834
  # resp.service_configuration.base_endpoint_dns_names #=> Array
9814
9835
  # resp.service_configuration.base_endpoint_dns_names[0] #=> String
9815
9836
  # resp.service_configuration.private_dns_name #=> String
@@ -10522,12 +10543,34 @@ module Aws::EC2
10522
10543
 
10523
10544
  # Deletes the specified EC2 Fleet.
10524
10545
  #
10525
- # After you delete an EC2 Fleet, it launches no new instances. You must
10526
- # specify whether an EC2 Fleet should also terminate its instances. If
10527
- # you terminate the instances, the EC2 Fleet enters the
10528
- # `deleted_terminating` state. Otherwise, the EC2 Fleet enters the
10529
- # `deleted_running` state, and the instances continue to run until they
10530
- # are interrupted or you terminate them manually.
10546
+ # After you delete an EC2 Fleet, it launches no new instances.
10547
+ #
10548
+ # You must specify whether a deleted EC2 Fleet should also terminate its
10549
+ # instances. If you choose to terminate the instances, the EC2 Fleet
10550
+ # enters the `deleted_terminating` state. Otherwise, the EC2 Fleet
10551
+ # enters the `deleted_running` state, and the instances continue to run
10552
+ # until they are interrupted or you terminate them manually.
10553
+ #
10554
+ # For `instant` fleets, EC2 Fleet must terminate the instances when the
10555
+ # fleet is deleted. A deleted `instant` fleet with running instances is
10556
+ # not supported.
10557
+ #
10558
+ # **Restrictions**
10559
+ #
10560
+ # * You can delete up to 25 `instant` fleets in a single request. If you
10561
+ # exceed this number, no `instant` fleets are deleted and an error is
10562
+ # returned. There is no restriction on the number of fleets of type
10563
+ # `maintain` or `request` that can be deleted in a single request.
10564
+ #
10565
+ # * Up to 1000 instances can be terminated in a single request to delete
10566
+ # `instant` fleets.
10567
+ #
10568
+ # For more information, see [Deleting an EC2 Fleet][1] in the *Amazon
10569
+ # Elastic Compute Cloud User Guide*.
10570
+ #
10571
+ #
10572
+ #
10573
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/manage-ec2-fleet.html#delete-fleet
10531
10574
  #
10532
10575
  # @option params [Boolean] :dry_run
10533
10576
  # Checks whether you have the required permissions for the action,
@@ -10539,8 +10582,15 @@ module Aws::EC2
10539
10582
  # The IDs of the EC2 Fleets.
10540
10583
  #
10541
10584
  # @option params [required, Boolean] :terminate_instances
10542
- # Indicates whether to terminate instances for an EC2 Fleet if it is
10543
- # deleted successfully.
10585
+ # Indicates whether to terminate the instances when the EC2 Fleet is
10586
+ # deleted. The default is to terminate the instances.
10587
+ #
10588
+ # To let the instances continue to run after the EC2 Fleet is deleted,
10589
+ # specify `NoTerminateInstances`. Supported only for fleets of type
10590
+ # `maintain` and `request`.
10591
+ #
10592
+ # For `instant` fleets, you cannot specify `NoTerminateInstances`. A
10593
+ # deleted `instant` fleet with running instances is not supported.
10544
10594
  #
10545
10595
  # @return [Types::DeleteFleetsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10546
10596
  #
@@ -12344,8 +12394,10 @@ module Aws::EC2
12344
12394
 
12345
12395
  # Deletes one or more specified VPC endpoints. Deleting a gateway
12346
12396
  # endpoint also deletes the endpoint routes in the route tables that
12347
- # were associated with the endpoint. Deleting an interface endpoint
12348
- # deletes the endpoint network interfaces.
12397
+ # were associated with the endpoint. Deleting an interface endpoint or a
12398
+ # Gateway Load Balancer endpoint deletes the endpoint network
12399
+ # interfaces. Gateway Load Balancer endpoints can only be deleted if the
12400
+ # routes that are associated with the endpoint are deleted.
12349
12401
  #
12350
12402
  # @option params [Boolean] :dry_run
12351
12403
  # Checks whether you have the required permissions for the action,
@@ -15276,7 +15328,7 @@ module Aws::EC2
15276
15328
  #
15277
15329
  # * `log-destination-type` - The type of destination to which the flow
15278
15330
  # log publishes data. Possible destination types include
15279
- # `cloud-watch-logs` and `S3`.
15331
+ # `cloud-watch-logs` and `s3`.
15280
15332
  #
15281
15333
  # * `flow-log-id` - The ID of the flow log.
15282
15334
  #
@@ -17073,7 +17125,7 @@ module Aws::EC2
17073
17125
  # location type is `region` (default), the location is the Region code
17074
17126
  # (for example, `us-east-2`.)
17075
17127
  #
17076
- # * `instance-type` - The instance type.
17128
+ # * `instance-type` - The instance type. For example, `c5.2xlarge`.
17077
17129
  #
17078
17130
  # @option params [Integer] :max_results
17079
17131
  # The maximum number of results to return for the request in a single
@@ -17144,17 +17196,17 @@ module Aws::EC2
17144
17196
  # One or more filters. Filter names and values are case-sensitive.
17145
17197
  #
17146
17198
  # * `auto-recovery-supported` - Indicates whether auto recovery is
17147
- # supported. (`true` \| `false`)
17199
+ # supported (`true` \| `false`).
17148
17200
  #
17149
- # * `bare-metal` - Indicates whether it is a bare metal instance type.
17150
- # (`true` \| `false`)
17201
+ # * `bare-metal` - Indicates whether it is a bare metal instance type
17202
+ # (`true` \| `false`).
17151
17203
  #
17152
17204
  # * `burstable-performance-supported` - Indicates whether it is a
17153
- # burstable performance instance type. (`true` \| `false`)
17205
+ # burstable performance instance type (`true` \| `false`).
17154
17206
  #
17155
17207
  # * `current-generation` - Indicates whether this instance type is the
17156
- # latest generation instance type of an instance family. (`true` \|
17157
- # `false`)
17208
+ # latest generation instance type of an instance family (`true` \|
17209
+ # `false`).
17158
17210
  #
17159
17211
  # * `ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps` - The
17160
17212
  # baseline bandwidth performance for an EBS-optimized instance type,
@@ -17166,7 +17218,7 @@ module Aws::EC2
17166
17218
  #
17167
17219
  # * `ebs-info.ebs-optimized-info.baseline-throughput-in-mbps` - The
17168
17220
  # baseline throughput performance for an EBS-optimized instance type,
17169
- # in MBps.
17221
+ # in MB/s.
17170
17222
  #
17171
17223
  # * `ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps` - The
17172
17224
  # maximum bandwidth performance for an EBS-optimized instance type, in
@@ -17178,25 +17230,25 @@ module Aws::EC2
17178
17230
  #
17179
17231
  # * `ebs-info.ebs-optimized-info.maximum-throughput-in-mbps` - The
17180
17232
  # maximum throughput performance for an EBS-optimized instance type,
17181
- # in MBps.
17233
+ # in MB/s.
17182
17234
  #
17183
17235
  # * `ebs-info.ebs-optimized-support` - Indicates whether the instance
17184
- # type is EBS-optimized. (`supported` \| `unsupported` \| `default`)
17236
+ # type is EBS-optimized (`supported` \| `unsupported` \| `default`).
17185
17237
  #
17186
17238
  # * `ebs-info.encryption-support` - Indicates whether EBS encryption is
17187
- # supported. (`supported` \| `unsupported`)
17239
+ # supported (`supported` \| `unsupported`).
17188
17240
  #
17189
17241
  # * `ebs-info.nvme-support` - Indicates whether non-volatile memory
17190
- # express (NVMe) is supported for EBS volumes. (`required` \|
17191
- # `supported` \| `unsupported`)
17242
+ # express (NVMe) is supported for EBS volumes (`required` \|
17243
+ # `supported` \| `unsupported`).
17192
17244
  #
17193
17245
  # * `free-tier-eligible` - Indicates whether the instance type is
17194
- # eligible to use in the free tier. (`true` \| `false`)
17246
+ # eligible to use in the free tier (`true` \| `false`).
17195
17247
  #
17196
17248
  # * `hibernation-supported` - Indicates whether On-Demand hibernation is
17197
- # supported. (`true` \| `false`)
17249
+ # supported (`true` \| `false`).
17198
17250
  #
17199
- # * `hypervisor` - The hypervisor. (`nitro` \| `xen`)
17251
+ # * `hypervisor` - The hypervisor (`nitro` \| `xen`).
17200
17252
  #
17201
17253
  # * `instance-storage-info.disk.count` - The number of local disks.
17202
17254
  #
@@ -17204,17 +17256,17 @@ module Aws::EC2
17204
17256
  # instance storage disk, in GB.
17205
17257
  #
17206
17258
  # * `instance-storage-info.disk.type` - The storage technology for the
17207
- # local instance storage disks. (`hdd` \| `ssd`)
17259
+ # local instance storage disks (`hdd` \| `ssd`).
17208
17260
  #
17209
17261
  # * `instance-storage-info.nvme-support` - Indicates whether
17210
- # non-volatile memory express (NVMe) is supported for instance store.
17211
- # (`required` \| `supported`) \| `unsupported`)
17262
+ # non-volatile memory express (NVMe) is supported for instance store
17263
+ # (`required` \| `supported`) \| `unsupported`).
17212
17264
  #
17213
17265
  # * `instance-storage-info.total-size-in-gb` - The total amount of
17214
17266
  # storage available from all local instance storage, in GB.
17215
17267
  #
17216
17268
  # * `instance-storage-supported` - Indicates whether the instance type
17217
- # has local instance storage. (`true` \| `false`)
17269
+ # has local instance storage (`true` \| `false`).
17218
17270
  #
17219
17271
  # * `instance-type` - The instance type (for example `c5.2xlarge` or
17220
17272
  # c5*).
@@ -17222,11 +17274,11 @@ module Aws::EC2
17222
17274
  # * `memory-info.size-in-mib` - The memory size.
17223
17275
  #
17224
17276
  # * `network-info.efa-supported` - Indicates whether the instance type
17225
- # supports Elastic Fabric Adapter (EFA). (`true` \| `false`)
17277
+ # supports Elastic Fabric Adapter (EFA) (`true` \| `false`).
17226
17278
  #
17227
17279
  # * `network-info.ena-support` - Indicates whether Elastic Network
17228
- # Adapter (ENA) is supported or required. (`required` \| `supported`
17229
- # \| `unsupported`)
17280
+ # Adapter (ENA) is supported or required (`required` \| `supported` \|
17281
+ # `unsupported`).
17230
17282
  #
17231
17283
  # * `network-info.ipv4-addresses-per-interface` - The maximum number of
17232
17284
  # private IPv4 addresses per network interface.
@@ -17235,7 +17287,7 @@ module Aws::EC2
17235
17287
  # private IPv6 addresses per network interface.
17236
17288
  #
17237
17289
  # * `network-info.ipv6-supported` - Indicates whether the instance type
17238
- # supports IPv6. (`true` \| `false`)
17290
+ # supports IPv6 (`true` \| `false`).
17239
17291
  #
17240
17292
  # * `network-info.maximum-network-interfaces` - The maximum number of
17241
17293
  # network interfaces per instance.
@@ -17243,19 +17295,19 @@ module Aws::EC2
17243
17295
  # * `network-info.network-performance` - The network performance (for
17244
17296
  # example, "25 Gigabit").
17245
17297
  #
17246
- # * `processor-info.supported-architecture` - The CPU architecture.
17247
- # (`arm64` \| `i386` \| `x86_64`)
17298
+ # * `processor-info.supported-architecture` - The CPU architecture
17299
+ # (`arm64` \| `i386` \| `x86_64`).
17248
17300
  #
17249
17301
  # * `processor-info.sustained-clock-speed-in-ghz` - The CPU clock speed,
17250
17302
  # in GHz.
17251
17303
  #
17252
- # * `supported-root-device-type` - The root device type. (`ebs` \|
17253
- # `instance-store`)
17304
+ # * `supported-root-device-type` - The root device type (`ebs` \|
17305
+ # `instance-store`).
17254
17306
  #
17255
- # * `supported-usage-class` - The usage class. (`on-demand` \| `spot`)
17307
+ # * `supported-usage-class` - The usage class (`on-demand` \| `spot`).
17256
17308
  #
17257
- # * `supported-virtualization-type` - The virtualization type. (`hvm` \|
17258
- # `paravirtual`)
17309
+ # * `supported-virtualization-type` - The virtualization type (`hvm` \|
17310
+ # `paravirtual`).
17259
17311
  #
17260
17312
  # * `vcpu-info.default-cores` - The default number of cores for the
17261
17313
  # instance type.
@@ -17346,6 +17398,12 @@ module Aws::EC2
17346
17398
  # resp.instance_types[0].ebs_info.nvme_support #=> String, one of "unsupported", "supported", "required"
17347
17399
  # resp.instance_types[0].network_info.network_performance #=> String
17348
17400
  # resp.instance_types[0].network_info.maximum_network_interfaces #=> Integer
17401
+ # resp.instance_types[0].network_info.maximum_network_cards #=> Integer
17402
+ # resp.instance_types[0].network_info.default_network_card_index #=> Integer
17403
+ # resp.instance_types[0].network_info.network_cards #=> Array
17404
+ # resp.instance_types[0].network_info.network_cards[0].network_card_index #=> Integer
17405
+ # resp.instance_types[0].network_info.network_cards[0].network_performance #=> String
17406
+ # resp.instance_types[0].network_info.network_cards[0].maximum_network_interfaces #=> Integer
17349
17407
  # resp.instance_types[0].network_info.ipv_4_addresses_per_interface #=> Integer
17350
17408
  # resp.instance_types[0].network_info.ipv_6_addresses_per_interface #=> Integer
17351
17409
  # resp.instance_types[0].network_info.ipv_6_supported #=> Boolean
@@ -24009,6 +24067,16 @@ module Aws::EC2
24009
24067
  # `initiatingRequest` \| `modifying` \| `pendingAcceptance` \|
24010
24068
  # `pending` \| `rollingBack` \| `rejected` \| `rejecting`).
24011
24069
  #
24070
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
24071
+ # the resource. Use the tag key in the filter name and the tag value
24072
+ # as the filter value. For example, to find all resources that have a
24073
+ # tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
24074
+ # for the filter name and `TeamA` for the filter value.
24075
+ #
24076
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
24077
+ # filter to find all resources that have a tag with a specific key,
24078
+ # regardless of the tag value.
24079
+ #
24012
24080
  # * `transit-gateway-id` - The ID of the transit gateway.
24013
24081
  #
24014
24082
  # @option params [Integer] :max_results
@@ -25362,6 +25430,8 @@ module Aws::EC2
25362
25430
  # resp.vpc_endpoint_connections[0].dns_entries[0].hosted_zone_id #=> String
25363
25431
  # resp.vpc_endpoint_connections[0].network_load_balancer_arns #=> Array
25364
25432
  # resp.vpc_endpoint_connections[0].network_load_balancer_arns[0] #=> String
25433
+ # resp.vpc_endpoint_connections[0].gateway_load_balancer_arns #=> Array
25434
+ # resp.vpc_endpoint_connections[0].gateway_load_balancer_arns[0] #=> String
25365
25435
  # resp.next_token #=> String
25366
25436
  #
25367
25437
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnections AWS API Documentation
@@ -25441,7 +25511,7 @@ module Aws::EC2
25441
25511
  #
25442
25512
  # resp.service_configurations #=> Array
25443
25513
  # resp.service_configurations[0].service_type #=> Array
25444
- # resp.service_configurations[0].service_type[0].service_type #=> String, one of "Interface", "Gateway"
25514
+ # resp.service_configurations[0].service_type[0].service_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
25445
25515
  # resp.service_configurations[0].service_id #=> String
25446
25516
  # resp.service_configurations[0].service_name #=> String
25447
25517
  # resp.service_configurations[0].service_state #=> String, one of "Pending", "Available", "Deleting", "Deleted", "Failed"
@@ -25451,6 +25521,8 @@ module Aws::EC2
25451
25521
  # resp.service_configurations[0].manages_vpc_endpoints #=> Boolean
25452
25522
  # resp.service_configurations[0].network_load_balancer_arns #=> Array
25453
25523
  # resp.service_configurations[0].network_load_balancer_arns[0] #=> String
25524
+ # resp.service_configurations[0].gateway_load_balancer_arns #=> Array
25525
+ # resp.service_configurations[0].gateway_load_balancer_arns[0] #=> String
25454
25526
  # resp.service_configurations[0].base_endpoint_dns_names #=> Array
25455
25527
  # resp.service_configurations[0].base_endpoint_dns_names[0] #=> String
25456
25528
  # resp.service_configurations[0].private_dns_name #=> String
@@ -25542,6 +25614,14 @@ module Aws::EC2
25542
25614
 
25543
25615
  # Describes available services to which you can create a VPC endpoint.
25544
25616
  #
25617
+ # When the service provider and the consumer have different accounts
25618
+ # multiple Availability Zones, and the consumer views the VPC endpoint
25619
+ # service information, the response only includes the common
25620
+ # Availability Zones. For example, when the service provider account
25621
+ # uses `us-east-1a` and `us-east-1c` and the consumer uses `us-east-1a`
25622
+ # and us-east-1a and us-east-1b, the response includes the VPC endpoint
25623
+ # services in the common Availability Zone, `us-east-1a`.
25624
+ #
25545
25625
  # @option params [Boolean] :dry_run
25546
25626
  # Checks whether you have the required permissions for the action,
25547
25627
  # without actually making the request, and provides an error response.
@@ -25607,13 +25687,15 @@ module Aws::EC2
25607
25687
  # resp.service_details[0].service_name #=> String
25608
25688
  # resp.service_details[0].service_id #=> String
25609
25689
  # resp.service_details[0].service_type #=> Array
25610
- # resp.service_details[0].service_type[0].service_type #=> String, one of "Interface", "Gateway"
25690
+ # resp.service_details[0].service_type[0].service_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
25611
25691
  # resp.service_details[0].availability_zones #=> Array
25612
25692
  # resp.service_details[0].availability_zones[0] #=> String
25613
25693
  # resp.service_details[0].owner #=> String
25614
25694
  # resp.service_details[0].base_endpoint_dns_names #=> Array
25615
25695
  # resp.service_details[0].base_endpoint_dns_names[0] #=> String
25616
25696
  # resp.service_details[0].private_dns_name #=> String
25697
+ # resp.service_details[0].private_dns_names #=> Array
25698
+ # resp.service_details[0].private_dns_names[0].private_dns_name #=> String
25617
25699
  # resp.service_details[0].vpc_endpoint_policy_supported #=> Boolean
25618
25700
  # resp.service_details[0].acceptance_required #=> Boolean
25619
25701
  # resp.service_details[0].manages_vpc_endpoints #=> Boolean
@@ -25656,6 +25738,9 @@ module Aws::EC2
25656
25738
  # (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
25657
25739
  # `deleted` \| `rejected` \| `failed`).
25658
25740
  #
25741
+ # * `vpc-endpoint-type` - The type of VPC endpoint (`Interface` \|
25742
+ # `Gateway` \| `GatewayLoadBalancer`).
25743
+ #
25659
25744
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
25660
25745
  # the resource. Use the tag key in the filter name and the tag value
25661
25746
  # as the filter value. For example, to find all resources that have a
@@ -25704,7 +25789,7 @@ module Aws::EC2
25704
25789
  #
25705
25790
  # resp.vpc_endpoints #=> Array
25706
25791
  # resp.vpc_endpoints[0].vpc_endpoint_id #=> String
25707
- # resp.vpc_endpoints[0].vpc_endpoint_type #=> String, one of "Interface", "Gateway"
25792
+ # resp.vpc_endpoints[0].vpc_endpoint_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
25708
25793
  # resp.vpc_endpoints[0].vpc_id #=> String
25709
25794
  # resp.vpc_endpoints[0].service_name #=> String
25710
25795
  # resp.vpc_endpoints[0].state #=> String, one of "PendingAcceptance", "Pending", "Available", "Deleting", "Deleted", "Rejected", "Failed", "Expired"
@@ -26964,8 +27049,9 @@ module Aws::EC2
26964
27049
  # removes the Amazon S3 object that contains the certificate,
26965
27050
  # certificate chain, and encrypted private key from the Amazon S3
26966
27051
  # bucket. It also revokes the IAM role's permission to use the AWS Key
26967
- # Management Service (KMS) key used to encrypt the private key. This
26968
- # effectively revokes the role's permission to use the certificate.
27052
+ # Management Service (KMS) customer master key (CMK) used to encrypt the
27053
+ # private key. This effectively revokes the role's permission to use
27054
+ # the certificate.
26969
27055
  #
26970
27056
  # @option params [String] :certificate_arn
26971
27057
  # The ARN of the ACM certificate from which to disassociate the IAM
@@ -27903,8 +27989,8 @@ module Aws::EC2
27903
27989
  # Certificate Manager (ACM) certificate. It also returns the name of the
27904
27990
  # Amazon S3 bucket and the Amazon S3 object key where the certificate,
27905
27991
  # certificate chain, and encrypted private key bundle are stored, and
27906
- # the ARN of the AWS Key Management Service (KMS) key that's used to
27907
- # encrypt the private key.
27992
+ # the ARN of the AWS Key Management Service (KMS) customer master key
27993
+ # (CMK) that's used to encrypt the private key.
27908
27994
  #
27909
27995
  # @option params [String] :certificate_arn
27910
27996
  # The ARN of the ACM certificate for which to view the associated IAM
@@ -30364,15 +30450,15 @@ module Aws::EC2
30364
30450
  #
30365
30451
  # You can specify the CMK using any of the following:
30366
30452
  #
30367
- # * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
30453
+ # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
30368
30454
  #
30369
30455
  # * Key alias. For example, alias/ExampleAlias.
30370
30456
  #
30371
30457
  # * Key ARN. For example,
30372
- # arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
30458
+ # arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.
30373
30459
  #
30374
30460
  # * Alias ARN. For example,
30375
- # arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
30461
+ # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
30376
30462
  #
30377
30463
  # AWS authenticates the CMK asynchronously. Therefore, if you specify an
30378
30464
  # ID, alias, or ARN that is not valid, the action can appear to
@@ -32923,9 +33009,9 @@ module Aws::EC2
32923
33009
  end
32924
33010
 
32925
33011
  # Modifies attributes of a specified VPC endpoint. The attributes that
32926
- # you can modify depend on the type of VPC endpoint (interface or
32927
- # gateway). For more information, see [VPC Endpoints][1] in the *Amazon
32928
- # Virtual Private Cloud User Guide*.
33012
+ # you can modify depend on the type of VPC endpoint (interface, gateway,
33013
+ # or Gateway Load Balancer). For more information, see [VPC
33014
+ # Endpoints][1] in the *Amazon Virtual Private Cloud User Guide*.
32929
33015
  #
32930
33016
  #
32931
33017
  #
@@ -32945,8 +33031,9 @@ module Aws::EC2
32945
33031
  # default policy. The default policy allows full access to the service.
32946
33032
  #
32947
33033
  # @option params [String] :policy_document
32948
- # A policy to attach to the endpoint that controls access to the
32949
- # service. The policy must be in valid JSON format.
33034
+ # (Interface and gateway endpoints) A policy to attach to the endpoint
33035
+ # that controls access to the service. The policy must be in valid JSON
33036
+ # format.
32950
33037
  #
32951
33038
  # @option params [Array<String>] :add_route_table_ids
32952
33039
  # (Gateway endpoint) One or more route tables IDs to associate with the
@@ -32957,8 +33044,9 @@ module Aws::EC2
32957
33044
  # the endpoint.
32958
33045
  #
32959
33046
  # @option params [Array<String>] :add_subnet_ids
32960
- # (Interface endpoint) One or more subnet IDs in which to serve the
32961
- # endpoint.
33047
+ # (Interface and Gateway Load Balancer endpoints) One or more subnet IDs
33048
+ # in which to serve the endpoint. For a Gateway Load Balancer endpoint,
33049
+ # you can specify only one subnet.
32962
33050
  #
32963
33051
  # @option params [Array<String>] :remove_subnet_ids
32964
33052
  # (Interface endpoint) One or more subnets IDs in which to remove the
@@ -33056,9 +33144,10 @@ module Aws::EC2
33056
33144
  end
33057
33145
 
33058
33146
  # Modifies the attributes of your VPC endpoint service configuration.
33059
- # You can change the Network Load Balancers for your service, and you
33060
- # can specify whether acceptance is required for requests to connect to
33061
- # your endpoint service through an interface VPC endpoint.
33147
+ # You can change the Network Load Balancers or Gateway Load Balancers
33148
+ # for your service, and you can specify whether acceptance is required
33149
+ # for requests to connect to your endpoint service through an interface
33150
+ # VPC endpoint.
33062
33151
  #
33063
33152
  # If you set or modify the private DNS name, you must prove that you own
33064
33153
  # the private DNS domain name. For more information, see [VPC Endpoint
@@ -33079,10 +33168,12 @@ module Aws::EC2
33079
33168
  # The ID of the service.
33080
33169
  #
33081
33170
  # @option params [String] :private_dns_name
33082
- # The private DNS name to assign to the endpoint service.
33171
+ # (Interface endpoint configuration) The private DNS name to assign to
33172
+ # the endpoint service.
33083
33173
  #
33084
33174
  # @option params [Boolean] :remove_private_dns_name
33085
- # Removes the private DNS name of the endpoint service.
33175
+ # (Interface endpoint configuration) Removes the private DNS name of the
33176
+ # endpoint service.
33086
33177
  #
33087
33178
  # @option params [Boolean] :acceptance_required
33088
33179
  # Indicates whether requests to create an endpoint to your service must
@@ -33096,6 +33187,14 @@ module Aws::EC2
33096
33187
  # The Amazon Resource Names (ARNs) of Network Load Balancers to remove
33097
33188
  # from your service configuration.
33098
33189
  #
33190
+ # @option params [Array<String>] :add_gateway_load_balancer_arns
33191
+ # The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to
33192
+ # your service configuration.
33193
+ #
33194
+ # @option params [Array<String>] :remove_gateway_load_balancer_arns
33195
+ # The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove
33196
+ # from your service configuration.
33197
+ #
33099
33198
  # @return [Types::ModifyVpcEndpointServiceConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
33100
33199
  #
33101
33200
  # * {Types::ModifyVpcEndpointServiceConfigurationResult#return #return} => Boolean
@@ -33110,6 +33209,8 @@ module Aws::EC2
33110
33209
  # acceptance_required: false,
33111
33210
  # add_network_load_balancer_arns: ["String"],
33112
33211
  # remove_network_load_balancer_arns: ["String"],
33212
+ # add_gateway_load_balancer_arns: ["String"],
33213
+ # remove_gateway_load_balancer_arns: ["String"],
33113
33214
  # })
33114
33215
  #
33115
33216
  # @example Response structure
@@ -35289,6 +35390,10 @@ module Aws::EC2
35289
35390
  # If you have the required permissions, the error response is
35290
35391
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
35291
35392
  #
35393
+ # @option params [String] :vpc_endpoint_id
35394
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
35395
+ # endpoints only.
35396
+ #
35292
35397
  # @option params [String] :egress_only_internet_gateway_id
35293
35398
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
35294
35399
  #
@@ -35344,6 +35449,7 @@ module Aws::EC2
35344
35449
  # destination_ipv_6_cidr_block: "String",
35345
35450
  # destination_prefix_list_id: "PrefixListResourceId",
35346
35451
  # dry_run: false,
35452
+ # vpc_endpoint_id: "VpcEndpointId",
35347
35453
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
35348
35454
  # gateway_id: "RouteGatewayId",
35349
35455
  # instance_id: "InstanceId",
@@ -38438,7 +38544,7 @@ module Aws::EC2
38438
38544
  #
38439
38545
  #
38440
38546
  #
38441
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/ndpoint-services-dns-validation.html#add-dns-txt-record
38547
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html#add-dns-txt-record
38442
38548
  #
38443
38549
  # @option params [Boolean] :dry_run
38444
38550
  # Checks whether you have the required permissions for the action,
@@ -39180,7 +39286,7 @@ module Aws::EC2
39180
39286
  params: params,
39181
39287
  config: config)
39182
39288
  context[:gem_name] = 'aws-sdk-ec2'
39183
- context[:gem_version] = '1.206.0'
39289
+ context[:gem_version] = '1.211.0'
39184
39290
  Seahorse::Client::Request.new(handlers, context)
39185
39291
  end
39186
39292