aws-sdk-ec2 1.208.0 → 1.209.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: 69f15ac1e22969d6ba72893cde6eb31bae70e9739e31fa4ee3f9cbe55955cf15
4
- data.tar.gz: 6567c5e9bd18518f35b40ffb731365a7788290d47e55017edd1cd7aecac44312
3
+ metadata.gz: 318b4d321f91bd3f532398bc6dd92b1a4b45c18d4a0a50249c88f367ba3d31e7
4
+ data.tar.gz: '080a083032d9f453d98f58e902b00e0f9f21cc4c4cadffb3002280ffa057576b'
5
5
  SHA512:
6
- metadata.gz: 7a0610d8f29f153aba5dddf14f2bf7d28af15d72a90dadba57155c5348669c45f4f66ebedda2af9521805f035193a4db702247262d891a271720cf305eedc024
7
- data.tar.gz: baa613a4b052063dd1f2321385d6b4e6fbd0c2e2a0fe0856c4a1af873b95316d57d6d4f024fdeeae7c5c8f1022e7aa01c299fab00bed6bdf3656708399c2da95
6
+ metadata.gz: 1276ce812462aff602baf1286ee272cfe70abfd77674a883f507c4057e59ad8f1a65cfa4f3ba37086d4bd0c91616c2500e2b04e19dc4f3df1f558b050ba4f794
7
+ data.tar.gz: f2a462d08b9571ad0a8259f5b8bfca672ef23bf198a8e04ddf0fbfd99e7833809ec2a067942c3981c9540699d33db906323ddaaa875aff04962dd1820816e43b
@@ -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.208.0'
75
+ GEM_VERSION = '1.209.0'
76
76
 
77
77
  end
@@ -7239,6 +7239,10 @@ module Aws::EC2
7239
7239
  # If you have the required permissions, the error response is
7240
7240
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
7241
7241
  #
7242
+ # @option params [String] :vpc_endpoint_id
7243
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
7244
+ # endpoints only.
7245
+ #
7242
7246
  # @option params [String] :egress_only_internet_gateway_id
7243
7247
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
7244
7248
  #
@@ -7298,6 +7302,7 @@ module Aws::EC2
7298
7302
  # destination_ipv_6_cidr_block: "String",
7299
7303
  # destination_prefix_list_id: "PrefixListResourceId",
7300
7304
  # dry_run: false,
7305
+ # vpc_endpoint_id: "VpcEndpointId",
7301
7306
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
7302
7307
  # gateway_id: "RouteGatewayId",
7303
7308
  # instance_id: "InstanceId",
@@ -9499,6 +9504,10 @@ module Aws::EC2
9499
9504
  # You can specify the subnets in which to create an endpoint, and the
9500
9505
  # security groups to associate with the endpoint network interface.
9501
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
+ #
9502
9511
  # Use DescribeVpcEndpointServices to get a list of supported services.
9503
9512
  #
9504
9513
  #
@@ -9525,17 +9534,18 @@ module Aws::EC2
9525
9534
  # provider.
9526
9535
  #
9527
9536
  # @option params [String] :policy_document
9528
- # A policy to attach to the endpoint that controls access to the
9529
- # service. The policy must be in valid JSON format. If this parameter is
9530
- # not specified, we attach a default policy that allows full access to
9531
- # 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.
9532
9541
  #
9533
9542
  # @option params [Array<String>] :route_table_ids
9534
9543
  # (Gateway endpoint) One or more route table IDs.
9535
9544
  #
9536
9545
  # @option params [Array<String>] :subnet_ids
9537
- # (Interface endpoint) The ID of one or more subnets in which to create
9538
- # 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.
9539
9549
  #
9540
9550
  # @option params [Array<String>] :security_group_ids
9541
9551
  # (Interface endpoint) The ID of one or more security groups to
@@ -9578,7 +9588,7 @@ module Aws::EC2
9578
9588
  #
9579
9589
  # resp = client.create_vpc_endpoint({
9580
9590
  # dry_run: false,
9581
- # vpc_endpoint_type: "Interface", # accepts Interface, Gateway
9591
+ # vpc_endpoint_type: "Interface", # accepts Interface, Gateway, GatewayLoadBalancer
9582
9592
  # vpc_id: "VpcId", # required
9583
9593
  # service_name: "String", # required
9584
9594
  # policy_document: "String",
@@ -9603,7 +9613,7 @@ module Aws::EC2
9603
9613
  # @example Response structure
9604
9614
  #
9605
9615
  # resp.vpc_endpoint.vpc_endpoint_id #=> String
9606
- # resp.vpc_endpoint.vpc_endpoint_type #=> String, one of "Interface", "Gateway"
9616
+ # resp.vpc_endpoint.vpc_endpoint_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
9607
9617
  # resp.vpc_endpoint.vpc_id #=> String
9608
9618
  # resp.vpc_endpoint.service_name #=> String
9609
9619
  # resp.vpc_endpoint.state #=> String, one of "PendingAcceptance", "Pending", "Available", "Deleting", "Deleted", "Rejected", "Failed", "Expired"
@@ -9719,23 +9729,30 @@ module Aws::EC2
9719
9729
 
9720
9730
  # Creates a VPC endpoint service configuration to which service
9721
9731
  # consumers (AWS accounts, IAM users, and IAM roles) can connect.
9722
- # Service consumers can create an interface VPC endpoint to connect to
9723
- # your service.
9724
9732
  #
9725
- # To create an endpoint service configuration, you must first create a
9726
- # Network Load Balancer for your service. For more information, see [VPC
9727
- # Endpoint Services][1] in the *Amazon Virtual Private Cloud User
9728
- # 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*.
9729
9744
  #
9730
9745
  # If you set the private DNS name, you must prove that you own the
9731
9746
  # private DNS domain name. For more information, see [VPC Endpoint
9732
- # Service Private DNS Name Verification][2] in the *Amazon Virtual
9747
+ # Service Private DNS Name Verification][4] in the *Amazon Virtual
9733
9748
  # Private Cloud User Guide*.
9734
9749
  #
9735
9750
  #
9736
9751
  #
9737
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html
9738
- # [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
9739
9756
  #
9740
9757
  # @option params [Boolean] :dry_run
9741
9758
  # Checks whether you have the required permissions for the action,
@@ -9749,12 +9766,17 @@ module Aws::EC2
9749
9766
  # AcceptVpcEndpointConnections.
9750
9767
  #
9751
9768
  # @option params [String] :private_dns_name
9752
- # 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.
9753
9771
  #
9754
- # @option params [required, Array<String>] :network_load_balancer_arns
9772
+ # @option params [Array<String>] :network_load_balancer_arns
9755
9773
  # The Amazon Resource Names (ARNs) of one or more Network Load Balancers
9756
9774
  # for your service.
9757
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
+ #
9758
9780
  # @option params [String] :client_token
9759
9781
  # Unique, case-sensitive identifier that you provide to ensure the
9760
9782
  # idempotency of the request. For more information, see [How to Ensure
@@ -9778,7 +9800,8 @@ module Aws::EC2
9778
9800
  # dry_run: false,
9779
9801
  # acceptance_required: false,
9780
9802
  # private_dns_name: "String",
9781
- # network_load_balancer_arns: ["String"], # required
9803
+ # network_load_balancer_arns: ["String"],
9804
+ # gateway_load_balancer_arns: ["String"],
9782
9805
  # client_token: "String",
9783
9806
  # tag_specifications: [
9784
9807
  # {
@@ -9796,7 +9819,7 @@ module Aws::EC2
9796
9819
  # @example Response structure
9797
9820
  #
9798
9821
  # resp.service_configuration.service_type #=> Array
9799
- # 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"
9800
9823
  # resp.service_configuration.service_id #=> String
9801
9824
  # resp.service_configuration.service_name #=> String
9802
9825
  # resp.service_configuration.service_state #=> String, one of "Pending", "Available", "Deleting", "Deleted", "Failed"
@@ -9806,6 +9829,8 @@ module Aws::EC2
9806
9829
  # resp.service_configuration.manages_vpc_endpoints #=> Boolean
9807
9830
  # resp.service_configuration.network_load_balancer_arns #=> Array
9808
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
9809
9834
  # resp.service_configuration.base_endpoint_dns_names #=> Array
9810
9835
  # resp.service_configuration.base_endpoint_dns_names[0] #=> String
9811
9836
  # resp.service_configuration.private_dns_name #=> String
@@ -12340,8 +12365,10 @@ module Aws::EC2
12340
12365
 
12341
12366
  # Deletes one or more specified VPC endpoints. Deleting a gateway
12342
12367
  # endpoint also deletes the endpoint routes in the route tables that
12343
- # were associated with the endpoint. Deleting an interface endpoint
12344
- # deletes the endpoint network interfaces.
12368
+ # were associated with the endpoint. Deleting an interface endpoint or a
12369
+ # Gateway Load Balancer endpoint deletes the endpoint network
12370
+ # interfaces. Gateway Load Balancer endpoints can only be deleted if the
12371
+ # routes that are associated with the endpoint are deleted.
12345
12372
  #
12346
12373
  # @option params [Boolean] :dry_run
12347
12374
  # Checks whether you have the required permissions for the action,
@@ -25374,6 +25401,8 @@ module Aws::EC2
25374
25401
  # resp.vpc_endpoint_connections[0].dns_entries[0].hosted_zone_id #=> String
25375
25402
  # resp.vpc_endpoint_connections[0].network_load_balancer_arns #=> Array
25376
25403
  # resp.vpc_endpoint_connections[0].network_load_balancer_arns[0] #=> String
25404
+ # resp.vpc_endpoint_connections[0].gateway_load_balancer_arns #=> Array
25405
+ # resp.vpc_endpoint_connections[0].gateway_load_balancer_arns[0] #=> String
25377
25406
  # resp.next_token #=> String
25378
25407
  #
25379
25408
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnections AWS API Documentation
@@ -25453,7 +25482,7 @@ module Aws::EC2
25453
25482
  #
25454
25483
  # resp.service_configurations #=> Array
25455
25484
  # resp.service_configurations[0].service_type #=> Array
25456
- # resp.service_configurations[0].service_type[0].service_type #=> String, one of "Interface", "Gateway"
25485
+ # resp.service_configurations[0].service_type[0].service_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
25457
25486
  # resp.service_configurations[0].service_id #=> String
25458
25487
  # resp.service_configurations[0].service_name #=> String
25459
25488
  # resp.service_configurations[0].service_state #=> String, one of "Pending", "Available", "Deleting", "Deleted", "Failed"
@@ -25463,6 +25492,8 @@ module Aws::EC2
25463
25492
  # resp.service_configurations[0].manages_vpc_endpoints #=> Boolean
25464
25493
  # resp.service_configurations[0].network_load_balancer_arns #=> Array
25465
25494
  # resp.service_configurations[0].network_load_balancer_arns[0] #=> String
25495
+ # resp.service_configurations[0].gateway_load_balancer_arns #=> Array
25496
+ # resp.service_configurations[0].gateway_load_balancer_arns[0] #=> String
25466
25497
  # resp.service_configurations[0].base_endpoint_dns_names #=> Array
25467
25498
  # resp.service_configurations[0].base_endpoint_dns_names[0] #=> String
25468
25499
  # resp.service_configurations[0].private_dns_name #=> String
@@ -25627,7 +25658,7 @@ module Aws::EC2
25627
25658
  # resp.service_details[0].service_name #=> String
25628
25659
  # resp.service_details[0].service_id #=> String
25629
25660
  # resp.service_details[0].service_type #=> Array
25630
- # resp.service_details[0].service_type[0].service_type #=> String, one of "Interface", "Gateway"
25661
+ # resp.service_details[0].service_type[0].service_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
25631
25662
  # resp.service_details[0].availability_zones #=> Array
25632
25663
  # resp.service_details[0].availability_zones[0] #=> String
25633
25664
  # resp.service_details[0].owner #=> String
@@ -25676,6 +25707,9 @@ module Aws::EC2
25676
25707
  # (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
25677
25708
  # `deleted` \| `rejected` \| `failed`).
25678
25709
  #
25710
+ # * `vpc-endpoint-type` - The type of VPC endpoint (`Interface` \|
25711
+ # `Gateway` \| `GatewayLoadBalancer`).
25712
+ #
25679
25713
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
25680
25714
  # the resource. Use the tag key in the filter name and the tag value
25681
25715
  # as the filter value. For example, to find all resources that have a
@@ -25724,7 +25758,7 @@ module Aws::EC2
25724
25758
  #
25725
25759
  # resp.vpc_endpoints #=> Array
25726
25760
  # resp.vpc_endpoints[0].vpc_endpoint_id #=> String
25727
- # resp.vpc_endpoints[0].vpc_endpoint_type #=> String, one of "Interface", "Gateway"
25761
+ # resp.vpc_endpoints[0].vpc_endpoint_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
25728
25762
  # resp.vpc_endpoints[0].vpc_id #=> String
25729
25763
  # resp.vpc_endpoints[0].service_name #=> String
25730
25764
  # resp.vpc_endpoints[0].state #=> String, one of "PendingAcceptance", "Pending", "Available", "Deleting", "Deleted", "Rejected", "Failed", "Expired"
@@ -32944,9 +32978,9 @@ module Aws::EC2
32944
32978
  end
32945
32979
 
32946
32980
  # Modifies attributes of a specified VPC endpoint. The attributes that
32947
- # you can modify depend on the type of VPC endpoint (interface or
32948
- # gateway). For more information, see [VPC Endpoints][1] in the *Amazon
32949
- # Virtual Private Cloud User Guide*.
32981
+ # you can modify depend on the type of VPC endpoint (interface, gateway,
32982
+ # or Gateway Load Balancer). For more information, see [VPC
32983
+ # Endpoints][1] in the *Amazon Virtual Private Cloud User Guide*.
32950
32984
  #
32951
32985
  #
32952
32986
  #
@@ -32966,8 +33000,9 @@ module Aws::EC2
32966
33000
  # default policy. The default policy allows full access to the service.
32967
33001
  #
32968
33002
  # @option params [String] :policy_document
32969
- # A policy to attach to the endpoint that controls access to the
32970
- # service. The policy must be in valid JSON format.
33003
+ # (Interface and gateway endpoints) A policy to attach to the endpoint
33004
+ # that controls access to the service. The policy must be in valid JSON
33005
+ # format.
32971
33006
  #
32972
33007
  # @option params [Array<String>] :add_route_table_ids
32973
33008
  # (Gateway endpoint) One or more route tables IDs to associate with the
@@ -32978,8 +33013,9 @@ module Aws::EC2
32978
33013
  # the endpoint.
32979
33014
  #
32980
33015
  # @option params [Array<String>] :add_subnet_ids
32981
- # (Interface endpoint) One or more subnet IDs in which to serve the
32982
- # endpoint.
33016
+ # (Interface and Gateway Load Balancer endpoints) One or more subnet IDs
33017
+ # in which to serve the endpoint. For a Gateway Load Balancer endpoint,
33018
+ # you can specify only one subnet.
32983
33019
  #
32984
33020
  # @option params [Array<String>] :remove_subnet_ids
32985
33021
  # (Interface endpoint) One or more subnets IDs in which to remove the
@@ -33077,9 +33113,10 @@ module Aws::EC2
33077
33113
  end
33078
33114
 
33079
33115
  # Modifies the attributes of your VPC endpoint service configuration.
33080
- # You can change the Network Load Balancers for your service, and you
33081
- # can specify whether acceptance is required for requests to connect to
33082
- # your endpoint service through an interface VPC endpoint.
33116
+ # You can change the Network Load Balancers or Gateway Load Balancers
33117
+ # for your service, and you can specify whether acceptance is required
33118
+ # for requests to connect to your endpoint service through an interface
33119
+ # VPC endpoint.
33083
33120
  #
33084
33121
  # If you set or modify the private DNS name, you must prove that you own
33085
33122
  # the private DNS domain name. For more information, see [VPC Endpoint
@@ -33100,10 +33137,12 @@ module Aws::EC2
33100
33137
  # The ID of the service.
33101
33138
  #
33102
33139
  # @option params [String] :private_dns_name
33103
- # The private DNS name to assign to the endpoint service.
33140
+ # (Interface endpoint configuration) The private DNS name to assign to
33141
+ # the endpoint service.
33104
33142
  #
33105
33143
  # @option params [Boolean] :remove_private_dns_name
33106
- # Removes the private DNS name of the endpoint service.
33144
+ # (Interface endpoint configuration) Removes the private DNS name of the
33145
+ # endpoint service.
33107
33146
  #
33108
33147
  # @option params [Boolean] :acceptance_required
33109
33148
  # Indicates whether requests to create an endpoint to your service must
@@ -33117,6 +33156,14 @@ module Aws::EC2
33117
33156
  # The Amazon Resource Names (ARNs) of Network Load Balancers to remove
33118
33157
  # from your service configuration.
33119
33158
  #
33159
+ # @option params [Array<String>] :add_gateway_load_balancer_arns
33160
+ # The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to
33161
+ # your service configuration.
33162
+ #
33163
+ # @option params [Array<String>] :remove_gateway_load_balancer_arns
33164
+ # The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove
33165
+ # from your service configuration.
33166
+ #
33120
33167
  # @return [Types::ModifyVpcEndpointServiceConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
33121
33168
  #
33122
33169
  # * {Types::ModifyVpcEndpointServiceConfigurationResult#return #return} => Boolean
@@ -33131,6 +33178,8 @@ module Aws::EC2
33131
33178
  # acceptance_required: false,
33132
33179
  # add_network_load_balancer_arns: ["String"],
33133
33180
  # remove_network_load_balancer_arns: ["String"],
33181
+ # add_gateway_load_balancer_arns: ["String"],
33182
+ # remove_gateway_load_balancer_arns: ["String"],
33134
33183
  # })
33135
33184
  #
33136
33185
  # @example Response structure
@@ -35310,6 +35359,10 @@ module Aws::EC2
35310
35359
  # If you have the required permissions, the error response is
35311
35360
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
35312
35361
  #
35362
+ # @option params [String] :vpc_endpoint_id
35363
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
35364
+ # endpoints only.
35365
+ #
35313
35366
  # @option params [String] :egress_only_internet_gateway_id
35314
35367
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
35315
35368
  #
@@ -35365,6 +35418,7 @@ module Aws::EC2
35365
35418
  # destination_ipv_6_cidr_block: "String",
35366
35419
  # destination_prefix_list_id: "PrefixListResourceId",
35367
35420
  # dry_run: false,
35421
+ # vpc_endpoint_id: "VpcEndpointId",
35368
35422
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
35369
35423
  # gateway_id: "RouteGatewayId",
35370
35424
  # instance_id: "InstanceId",
@@ -39201,7 +39255,7 @@ module Aws::EC2
39201
39255
  params: params,
39202
39256
  config: config)
39203
39257
  context[:gem_name] = 'aws-sdk-ec2'
39204
- context[:gem_version] = '1.208.0'
39258
+ context[:gem_version] = '1.209.0'
39205
39259
  Seahorse::Client::Request.new(handlers, context)
39206
39260
  end
39207
39261
 
@@ -3313,6 +3313,7 @@ module Aws::EC2
3313
3313
  CreateRouteRequest.add_member(:destination_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationIpv6CidrBlock"))
3314
3314
  CreateRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
3315
3315
  CreateRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
3316
+ CreateRouteRequest.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "VpcEndpointId"))
3316
3317
  CreateRouteRequest.add_member(:egress_only_internet_gateway_id, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "egressOnlyInternetGatewayId"))
3317
3318
  CreateRouteRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: RouteGatewayId, location_name: "gatewayId"))
3318
3319
  CreateRouteRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "instanceId"))
@@ -3572,7 +3573,8 @@ module Aws::EC2
3572
3573
  CreateVpcEndpointServiceConfigurationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
3573
3574
  CreateVpcEndpointServiceConfigurationRequest.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "AcceptanceRequired"))
3574
3575
  CreateVpcEndpointServiceConfigurationRequest.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "PrivateDnsName"))
3575
- CreateVpcEndpointServiceConfigurationRequest.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, required: true, location_name: "NetworkLoadBalancerArn"))
3576
+ CreateVpcEndpointServiceConfigurationRequest.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "NetworkLoadBalancerArn"))
3577
+ CreateVpcEndpointServiceConfigurationRequest.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "GatewayLoadBalancerArn"))
3576
3578
  CreateVpcEndpointServiceConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
3577
3579
  CreateVpcEndpointServiceConfigurationRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
3578
3580
  CreateVpcEndpointServiceConfigurationRequest.struct_class = Types::CreateVpcEndpointServiceConfigurationRequest
@@ -7738,6 +7740,8 @@ module Aws::EC2
7738
7740
  ModifyVpcEndpointServiceConfigurationRequest.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "AcceptanceRequired"))
7739
7741
  ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddNetworkLoadBalancerArn"))
7740
7742
  ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveNetworkLoadBalancerArn"))
7743
+ ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddGatewayLoadBalancerArn"))
7744
+ ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveGatewayLoadBalancerArn"))
7741
7745
  ModifyVpcEndpointServiceConfigurationRequest.struct_class = Types::ModifyVpcEndpointServiceConfigurationRequest
7742
7746
 
7743
7747
  ModifyVpcEndpointServiceConfigurationResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
@@ -8492,6 +8496,7 @@ module Aws::EC2
8492
8496
  ReplaceRouteRequest.add_member(:destination_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationIpv6CidrBlock"))
8493
8497
  ReplaceRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
8494
8498
  ReplaceRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
8499
+ ReplaceRouteRequest.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "VpcEndpointId"))
8495
8500
  ReplaceRouteRequest.add_member(:egress_only_internet_gateway_id, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "egressOnlyInternetGatewayId"))
8496
8501
  ReplaceRouteRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: RouteGatewayId, location_name: "gatewayId"))
8497
8502
  ReplaceRouteRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "instanceId"))
@@ -9170,6 +9175,7 @@ module Aws::EC2
9170
9175
  ServiceConfiguration.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptanceRequired"))
9171
9176
  ServiceConfiguration.add_member(:manages_vpc_endpoints, Shapes::ShapeRef.new(shape: Boolean, location_name: "managesVpcEndpoints"))
9172
9177
  ServiceConfiguration.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
9178
+ ServiceConfiguration.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "gatewayLoadBalancerArnSet"))
9173
9179
  ServiceConfiguration.add_member(:base_endpoint_dns_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "baseEndpointDnsNameSet"))
9174
9180
  ServiceConfiguration.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
9175
9181
  ServiceConfiguration.add_member(:private_dns_name_configuration, Shapes::ShapeRef.new(shape: PrivateDnsNameConfiguration, location_name: "privateDnsNameConfiguration"))
@@ -10225,6 +10231,7 @@ module Aws::EC2
10225
10231
  VpcEndpointConnection.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "creationTimestamp"))
10226
10232
  VpcEndpointConnection.add_member(:dns_entries, Shapes::ShapeRef.new(shape: DnsEntrySet, location_name: "dnsEntrySet"))
10227
10233
  VpcEndpointConnection.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
10234
+ VpcEndpointConnection.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "gatewayLoadBalancerArnSet"))
10228
10235
  VpcEndpointConnection.struct_class = Types::VpcEndpointConnection
10229
10236
 
10230
10237
  VpcEndpointConnectionSet.member = Shapes::ShapeRef.new(shape: VpcEndpointConnection, location_name: "item")
@@ -300,6 +300,7 @@ module Aws::EC2
300
300
  # destination_ipv_6_cidr_block: "String",
301
301
  # destination_prefix_list_id: "PrefixListResourceId",
302
302
  # dry_run: false,
303
+ # vpc_endpoint_id: "VpcEndpointId",
303
304
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
304
305
  # gateway_id: "RouteGatewayId",
305
306
  # instance_id: "InstanceId",
@@ -323,6 +324,9 @@ module Aws::EC2
323
324
  # without actually making the request, and provides an error response.
324
325
  # If you have the required permissions, the error response is
325
326
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
327
+ # @option options [String] :vpc_endpoint_id
328
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
329
+ # endpoints only.
326
330
  # @option options [String] :egress_only_internet_gateway_id
327
331
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
328
332
  # @option options [String] :gateway_id
@@ -227,6 +227,7 @@ module Aws::EC2
227
227
  # destination_ipv_6_cidr_block: "String",
228
228
  # destination_prefix_list_id: "PrefixListResourceId",
229
229
  # dry_run: false,
230
+ # vpc_endpoint_id: "VpcEndpointId",
230
231
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
231
232
  # gateway_id: "RouteGatewayId",
232
233
  # instance_id: "InstanceId",
@@ -253,6 +254,9 @@ module Aws::EC2
253
254
  # without actually making the request, and provides an error response.
254
255
  # If you have the required permissions, the error response is
255
256
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
257
+ # @option options [String] :vpc_endpoint_id
258
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
259
+ # endpoints only.
256
260
  # @option options [String] :egress_only_internet_gateway_id
257
261
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
258
262
  # @option options [String] :gateway_id
@@ -7898,6 +7898,7 @@ module Aws::EC2
7898
7898
  # destination_ipv_6_cidr_block: "String",
7899
7899
  # destination_prefix_list_id: "PrefixListResourceId",
7900
7900
  # dry_run: false,
7901
+ # vpc_endpoint_id: "VpcEndpointId",
7901
7902
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
7902
7903
  # gateway_id: "RouteGatewayId",
7903
7904
  # instance_id: "InstanceId",
@@ -7933,6 +7934,11 @@ module Aws::EC2
7933
7934
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
7934
7935
  # @return [Boolean]
7935
7936
  #
7937
+ # @!attribute [rw] vpc_endpoint_id
7938
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
7939
+ # endpoints only.
7940
+ # @return [String]
7941
+ #
7936
7942
  # @!attribute [rw] egress_only_internet_gateway_id
7937
7943
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
7938
7944
  # @return [String]
@@ -7986,6 +7992,7 @@ module Aws::EC2
7986
7992
  :destination_ipv_6_cidr_block,
7987
7993
  :destination_prefix_list_id,
7988
7994
  :dry_run,
7995
+ :vpc_endpoint_id,
7989
7996
  :egress_only_internet_gateway_id,
7990
7997
  :gateway_id,
7991
7998
  :instance_id,
@@ -9740,7 +9747,7 @@ module Aws::EC2
9740
9747
  #
9741
9748
  # {
9742
9749
  # dry_run: false,
9743
- # vpc_endpoint_type: "Interface", # accepts Interface, Gateway
9750
+ # vpc_endpoint_type: "Interface", # accepts Interface, Gateway, GatewayLoadBalancer
9744
9751
  # vpc_id: "VpcId", # required
9745
9752
  # service_name: "String", # required
9746
9753
  # policy_document: "String",
@@ -9786,10 +9793,10 @@ module Aws::EC2
9786
9793
  # @return [String]
9787
9794
  #
9788
9795
  # @!attribute [rw] policy_document
9789
- # A policy to attach to the endpoint that controls access to the
9790
- # service. The policy must be in valid JSON format. If this parameter
9791
- # is not specified, we attach a default policy that allows full access
9792
- # to the service.
9796
+ # (Interface and gateway endpoints) A policy to attach to the endpoint
9797
+ # that controls access to the service. The policy must be in valid
9798
+ # JSON format. If this parameter is not specified, we attach a default
9799
+ # policy that allows full access to the service.
9793
9800
  # @return [String]
9794
9801
  #
9795
9802
  # @!attribute [rw] route_table_ids
@@ -9797,8 +9804,9 @@ module Aws::EC2
9797
9804
  # @return [Array<String>]
9798
9805
  #
9799
9806
  # @!attribute [rw] subnet_ids
9800
- # (Interface endpoint) The ID of one or more subnets in which to
9801
- # create an endpoint network interface.
9807
+ # (Interface and Gateway Load Balancer endpoints) The ID of one or
9808
+ # more subnets in which to create an endpoint network interface. For a
9809
+ # Gateway Load Balancer endpoint, you can specify one subnet only.
9802
9810
  # @return [Array<String>]
9803
9811
  #
9804
9812
  # @!attribute [rw] security_group_ids
@@ -9882,7 +9890,8 @@ module Aws::EC2
9882
9890
  # dry_run: false,
9883
9891
  # acceptance_required: false,
9884
9892
  # private_dns_name: "String",
9885
- # network_load_balancer_arns: ["String"], # required
9893
+ # network_load_balancer_arns: ["String"],
9894
+ # gateway_load_balancer_arns: ["String"],
9886
9895
  # client_token: "String",
9887
9896
  # tag_specifications: [
9888
9897
  # {
@@ -9911,7 +9920,8 @@ module Aws::EC2
9911
9920
  # @return [Boolean]
9912
9921
  #
9913
9922
  # @!attribute [rw] private_dns_name
9914
- # The private DNS name to assign to the VPC endpoint service.
9923
+ # (Interface endpoint configuration) The private DNS name to assign to
9924
+ # the VPC endpoint service.
9915
9925
  # @return [String]
9916
9926
  #
9917
9927
  # @!attribute [rw] network_load_balancer_arns
@@ -9919,6 +9929,11 @@ module Aws::EC2
9919
9929
  # Balancers for your service.
9920
9930
  # @return [Array<String>]
9921
9931
  #
9932
+ # @!attribute [rw] gateway_load_balancer_arns
9933
+ # The Amazon Resource Names (ARNs) of one or more Gateway Load
9934
+ # Balancers.
9935
+ # @return [Array<String>]
9936
+ #
9922
9937
  # @!attribute [rw] client_token
9923
9938
  # Unique, case-sensitive identifier that you provide to ensure the
9924
9939
  # idempotency of the request. For more information, see [How to Ensure
@@ -9940,6 +9955,7 @@ module Aws::EC2
9940
9955
  :acceptance_required,
9941
9956
  :private_dns_name,
9942
9957
  :network_load_balancer_arns,
9958
+ :gateway_load_balancer_arns,
9943
9959
  :client_token,
9944
9960
  :tag_specifications)
9945
9961
  SENSITIVE = []
@@ -22969,6 +22985,9 @@ module Aws::EC2
22969
22985
  # (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
22970
22986
  # `deleted` \| `rejected` \| `failed`).
22971
22987
  #
22988
+ # * `vpc-endpoint-type` - The type of VPC endpoint (`Interface` \|
22989
+ # `Gateway` \| `GatewayLoadBalancer`).
22990
+ #
22972
22991
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
22973
22992
  # to the resource. Use the tag key in the filter name and the tag
22974
22993
  # value as the filter value. For example, to find all resources that
@@ -37640,8 +37659,9 @@ module Aws::EC2
37640
37659
  # @return [Boolean]
37641
37660
  #
37642
37661
  # @!attribute [rw] policy_document
37643
- # A policy to attach to the endpoint that controls access to the
37644
- # service. The policy must be in valid JSON format.
37662
+ # (Interface and gateway endpoints) A policy to attach to the endpoint
37663
+ # that controls access to the service. The policy must be in valid
37664
+ # JSON format.
37645
37665
  # @return [String]
37646
37666
  #
37647
37667
  # @!attribute [rw] add_route_table_ids
@@ -37655,8 +37675,9 @@ module Aws::EC2
37655
37675
  # @return [Array<String>]
37656
37676
  #
37657
37677
  # @!attribute [rw] add_subnet_ids
37658
- # (Interface endpoint) One or more subnet IDs in which to serve the
37659
- # endpoint.
37678
+ # (Interface and Gateway Load Balancer endpoints) One or more subnet
37679
+ # IDs in which to serve the endpoint. For a Gateway Load Balancer
37680
+ # endpoint, you can specify only one subnet.
37660
37681
  # @return [Array<String>]
37661
37682
  #
37662
37683
  # @!attribute [rw] remove_subnet_ids
@@ -37721,6 +37742,8 @@ module Aws::EC2
37721
37742
  # acceptance_required: false,
37722
37743
  # add_network_load_balancer_arns: ["String"],
37723
37744
  # remove_network_load_balancer_arns: ["String"],
37745
+ # add_gateway_load_balancer_arns: ["String"],
37746
+ # remove_gateway_load_balancer_arns: ["String"],
37724
37747
  # }
37725
37748
  #
37726
37749
  # @!attribute [rw] dry_run
@@ -37735,11 +37758,13 @@ module Aws::EC2
37735
37758
  # @return [String]
37736
37759
  #
37737
37760
  # @!attribute [rw] private_dns_name
37738
- # The private DNS name to assign to the endpoint service.
37761
+ # (Interface endpoint configuration) The private DNS name to assign to
37762
+ # the endpoint service.
37739
37763
  # @return [String]
37740
37764
  #
37741
37765
  # @!attribute [rw] remove_private_dns_name
37742
- # Removes the private DNS name of the endpoint service.
37766
+ # (Interface endpoint configuration) Removes the private DNS name of
37767
+ # the endpoint service.
37743
37768
  # @return [Boolean]
37744
37769
  #
37745
37770
  # @!attribute [rw] acceptance_required
@@ -37757,6 +37782,16 @@ module Aws::EC2
37757
37782
  # from your service configuration.
37758
37783
  # @return [Array<String>]
37759
37784
  #
37785
+ # @!attribute [rw] add_gateway_load_balancer_arns
37786
+ # The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to
37787
+ # your service configuration.
37788
+ # @return [Array<String>]
37789
+ #
37790
+ # @!attribute [rw] remove_gateway_load_balancer_arns
37791
+ # The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove
37792
+ # from your service configuration.
37793
+ # @return [Array<String>]
37794
+ #
37760
37795
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointServiceConfigurationRequest AWS API Documentation
37761
37796
  #
37762
37797
  class ModifyVpcEndpointServiceConfigurationRequest < Struct.new(
@@ -37766,7 +37801,9 @@ module Aws::EC2
37766
37801
  :remove_private_dns_name,
37767
37802
  :acceptance_required,
37768
37803
  :add_network_load_balancer_arns,
37769
- :remove_network_load_balancer_arns)
37804
+ :remove_network_load_balancer_arns,
37805
+ :add_gateway_load_balancer_arns,
37806
+ :remove_gateway_load_balancer_arns)
37770
37807
  SENSITIVE = []
37771
37808
  include Aws::Structure
37772
37809
  end
@@ -41785,6 +41822,7 @@ module Aws::EC2
41785
41822
  # destination_ipv_6_cidr_block: "String",
41786
41823
  # destination_prefix_list_id: "PrefixListResourceId",
41787
41824
  # dry_run: false,
41825
+ # vpc_endpoint_id: "VpcEndpointId",
41788
41826
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
41789
41827
  # gateway_id: "RouteGatewayId",
41790
41828
  # instance_id: "InstanceId",
@@ -41821,6 +41859,11 @@ module Aws::EC2
41821
41859
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
41822
41860
  # @return [Boolean]
41823
41861
  #
41862
+ # @!attribute [rw] vpc_endpoint_id
41863
+ # The ID of a VPC endpoint. Supported for Gateway Load Balancer
41864
+ # endpoints only.
41865
+ # @return [String]
41866
+ #
41824
41867
  # @!attribute [rw] egress_only_internet_gateway_id
41825
41868
  # \[IPv6 traffic only\] The ID of an egress-only internet gateway.
41826
41869
  # @return [String]
@@ -41873,6 +41916,7 @@ module Aws::EC2
41873
41916
  :destination_ipv_6_cidr_block,
41874
41917
  :destination_prefix_list_id,
41875
41918
  :dry_run,
41919
+ :vpc_endpoint_id,
41876
41920
  :egress_only_internet_gateway_id,
41877
41921
  :gateway_id,
41878
41922
  :instance_id,
@@ -46683,6 +46727,11 @@ module Aws::EC2
46683
46727
  # the service.
46684
46728
  # @return [Array<String>]
46685
46729
  #
46730
+ # @!attribute [rw] gateway_load_balancer_arns
46731
+ # The Amazon Resource Names (ARNs) of the Gateway Load Balancers for
46732
+ # the service.
46733
+ # @return [Array<String>]
46734
+ #
46686
46735
  # @!attribute [rw] base_endpoint_dns_names
46687
46736
  # The DNS names for the service.
46688
46737
  # @return [Array<String>]
@@ -46711,6 +46760,7 @@ module Aws::EC2
46711
46760
  :acceptance_required,
46712
46761
  :manages_vpc_endpoints,
46713
46762
  :network_load_balancer_arns,
46763
+ :gateway_load_balancer_arns,
46714
46764
  :base_endpoint_dns_names,
46715
46765
  :private_dns_name,
46716
46766
  :private_dns_name_configuration,
@@ -52286,6 +52336,11 @@ module Aws::EC2
52286
52336
  # the service.
52287
52337
  # @return [Array<String>]
52288
52338
  #
52339
+ # @!attribute [rw] gateway_load_balancer_arns
52340
+ # The Amazon Resource Names (ARNs) of the Gateway Load Balancers for
52341
+ # the service.
52342
+ # @return [Array<String>]
52343
+ #
52289
52344
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpointConnection AWS API Documentation
52290
52345
  #
52291
52346
  class VpcEndpointConnection < Struct.new(
@@ -52295,7 +52350,8 @@ module Aws::EC2
52295
52350
  :vpc_endpoint_state,
52296
52351
  :creation_timestamp,
52297
52352
  :dns_entries,
52298
- :network_load_balancer_arns)
52353
+ :network_load_balancer_arns,
52354
+ :gateway_load_balancer_arns)
52299
52355
  SENSITIVE = []
52300
52356
  include Aws::Structure
52301
52357
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.208.0
4
+ version: 1.209.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-06 00:00:00.000000000 Z
11
+ date: 2020-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4