aws-sdk-ec2 1.142.0 → 1.147.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
  SHA1:
3
- metadata.gz: 0071dc8eb43ba4cc66278265eb7b8575172bc518
4
- data.tar.gz: ab1b663c850e707e8ceaf37bd7a3cfe43ddba1ce
3
+ metadata.gz: 3ce3e14e0d19ef3d0bd434b83de70b210bac76a7
4
+ data.tar.gz: 8f0294ea7f8988e0a176643a0a5e7a41a60aab0b
5
5
  SHA512:
6
- metadata.gz: d8c3c10eff0f2ddb2f7cdb473e409903dbe54b7f0f81720e02e56b1a64eb78bf74f758d9ef232285683c39355f40f0097d260e34c760082aa1085dd1133ac9c2
7
- data.tar.gz: 1a73a577ae7a25d8f898433796f343c0382892ab844afe5e9695a4a6613949c3e62eb6ed5a11a2b75d6daec2623bc40bc986d6df8aa75edf874db1c2d10dcb73
6
+ metadata.gz: 42ec82d6aab1dff57c0891ccb1f50a7e45958b4569a072ad7c54b81ec89a8605974a069755b17ef3d9a49240a4c8b55079c3e5971150a2e4f974c87a476a4f86
7
+ data.tar.gz: 34a01ab6a76343197521e17e3da1c5a418ae152eb27f699c0fe1d5f439ab99020608b3320f813441a6655f3e1a418adb86babb15a38ca4a63750c2b02597eb2e
@@ -48,17 +48,20 @@ require_relative 'aws-sdk-ec2/customizations'
48
48
  # methods each accept a hash of request parameters and return a response
49
49
  # structure.
50
50
  #
51
+ # ec2 = Aws::EC2::Client.new
52
+ # resp = ec2.accept_reserved_instances_exchange_quote(params)
53
+ #
51
54
  # See {Client} for more information.
52
55
  #
53
56
  # # Errors
54
57
  #
55
- # Errors returned from Amazon Elastic Compute Cloud all
56
- # extend {Errors::ServiceError}.
58
+ # Errors returned from Amazon Elastic Compute Cloud are defined in the
59
+ # {Errors} module and all extend {Errors::ServiceError}.
57
60
  #
58
61
  # begin
59
62
  # # do stuff
60
63
  # rescue Aws::EC2::Errors::ServiceError
61
- # # rescues all service API errors
64
+ # # rescues all Amazon Elastic Compute Cloud API errors
62
65
  # end
63
66
  #
64
67
  # See {Errors} for more information.
@@ -66,6 +69,6 @@ require_relative 'aws-sdk-ec2/customizations'
66
69
  # @service
67
70
  module Aws::EC2
68
71
 
69
- GEM_VERSION = '1.142.0'
72
+ GEM_VERSION = '1.147.0'
70
73
 
71
74
  end
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::EC2
9
+
9
10
  class ClassicAddress
10
11
 
11
12
  extend Aws::Deprecations
@@ -32,6 +32,16 @@ require 'aws-sdk-ec2/plugins/region_validation.rb'
32
32
  Aws::Plugins::GlobalConfiguration.add_identifier(:ec2)
33
33
 
34
34
  module Aws::EC2
35
+ # An API client for EC2. To construct a client, you need to configure a +:region+ and +:credentials+.
36
+ # client = Aws::EC2::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ # For details on configuring region and credentials see
42
+ # the {developer-guide}[https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html].
43
+ #
44
+ # See {#initialize} for a full list of supported configuration options.
35
45
  class Client < Seahorse::Client::Base
36
46
 
37
47
  include Aws::ClientStubs
@@ -213,16 +223,16 @@ module Aws::EC2
213
223
  # requests through. Formatted like 'http://proxy.com:123'.
214
224
  #
215
225
  # @option options [Float] :http_open_timeout (15) The number of
216
- # seconds to wait when opening a HTTP session before rasing a
226
+ # seconds to wait when opening a HTTP session before raising a
217
227
  # `Timeout::Error`.
218
228
  #
219
229
  # @option options [Integer] :http_read_timeout (60) The default
220
230
  # number of seconds to wait for response data. This value can
221
231
  # safely be set
222
- # per-request on the session yeidled by {#session_for}.
232
+ # per-request on the session yielded by {#session_for}.
223
233
  #
224
234
  # @option options [Float] :http_idle_timeout (5) The number of
225
- # seconds a connection is allowed to sit idble before it is
235
+ # seconds a connection is allowed to sit idle before it is
226
236
  # considered stale. Stale connections are closed and removed
227
237
  # from the pool before making a request.
228
238
  #
@@ -231,7 +241,7 @@ module Aws::EC2
231
241
  # request body. This option has no effect unless the request has
232
242
  # "Expect" header set to "100-continue". Defaults to `nil` which
233
243
  # disables this behaviour. This value can safely be set per
234
- # request on the session yeidled by {#session_for}.
244
+ # request on the session yielded by {#session_for}.
235
245
  #
236
246
  # @option options [Boolean] :http_wire_trace (false) When `true`,
237
247
  # HTTP debug output will be sent to the `:logger`.
@@ -283,11 +293,11 @@ module Aws::EC2
283
293
  #
284
294
  # resp = client.accept_reserved_instances_exchange_quote({
285
295
  # dry_run: false,
286
- # reserved_instance_ids: ["String"], # required
296
+ # reserved_instance_ids: ["ReservationId"], # required
287
297
  # target_configurations: [
288
298
  # {
289
299
  # instance_count: 1,
290
- # offering_id: "String", # required
300
+ # offering_id: "ReservedInstancesOfferingId", # required
291
301
  # },
292
302
  # ],
293
303
  # })
@@ -324,7 +334,7 @@ module Aws::EC2
324
334
  # @example Request syntax with placeholder values
325
335
  #
326
336
  # resp = client.accept_transit_gateway_peering_attachment({
327
- # transit_gateway_attachment_id: "String", # required
337
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
328
338
  # dry_run: false,
329
339
  # })
330
340
  #
@@ -377,7 +387,7 @@ module Aws::EC2
377
387
  # @example Request syntax with placeholder values
378
388
  #
379
389
  # resp = client.accept_transit_gateway_vpc_attachment({
380
- # transit_gateway_attachment_id: "String", # required
390
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
381
391
  # dry_run: false,
382
392
  # })
383
393
  #
@@ -429,8 +439,8 @@ module Aws::EC2
429
439
  #
430
440
  # resp = client.accept_vpc_endpoint_connections({
431
441
  # dry_run: false,
432
- # service_id: "ServiceId", # required
433
- # vpc_endpoint_ids: ["String"], # required
442
+ # service_id: "VpcEndpointServiceId", # required
443
+ # vpc_endpoint_ids: ["VpcEndpointId"], # required
434
444
  # })
435
445
  #
436
446
  # @example Response structure
@@ -801,7 +811,7 @@ module Aws::EC2
801
811
  # quantity: 1, # required
802
812
  # tag_specifications: [
803
813
  # {
804
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
814
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
805
815
  # tags: [
806
816
  # {
807
817
  # key: "String",
@@ -1187,6 +1197,12 @@ module Aws::EC2
1187
1197
  # subnet in each Availability Zone. We recommend that you associate at
1188
1198
  # least two subnets to provide Availability Zone redundancy.
1189
1199
  #
1200
+ # If you specified a VPC when you created the Client VPN endpoint or if
1201
+ # you have previous subnet associations, the specified subnet must be in
1202
+ # the same VPC. To specify a subnet that's in a different VPC, you must
1203
+ # first modify the Client VPN endpoint (ModifyClientVpnEndpoint) and
1204
+ # change the VPC that's associated with it.
1205
+ #
1190
1206
  # @option params [required, String] :client_vpn_endpoint_id
1191
1207
  # The ID of the Client VPN endpoint.
1192
1208
  #
@@ -1428,9 +1444,9 @@ module Aws::EC2
1428
1444
  #
1429
1445
  # resp = client.associate_route_table({
1430
1446
  # dry_run: false,
1431
- # route_table_id: "String", # required
1432
- # subnet_id: "String",
1433
- # gateway_id: "String",
1447
+ # route_table_id: "RouteTableId", # required
1448
+ # subnet_id: "SubnetId",
1449
+ # gateway_id: "RouteGatewayId",
1434
1450
  # })
1435
1451
  #
1436
1452
  # @example Response structure
@@ -1523,8 +1539,8 @@ module Aws::EC2
1523
1539
  # @example Request syntax with placeholder values
1524
1540
  #
1525
1541
  # resp = client.associate_transit_gateway_multicast_domain({
1526
- # transit_gateway_multicast_domain_id: "String",
1527
- # transit_gateway_attachment_id: "String",
1542
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
1543
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId",
1528
1544
  # subnet_ids: ["String"],
1529
1545
  # dry_run: false,
1530
1546
  # })
@@ -1571,8 +1587,8 @@ module Aws::EC2
1571
1587
  # @example Request syntax with placeholder values
1572
1588
  #
1573
1589
  # resp = client.associate_transit_gateway_route_table({
1574
- # transit_gateway_route_table_id: "String", # required
1575
- # transit_gateway_attachment_id: "String", # required
1590
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
1591
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
1576
1592
  # dry_run: false,
1577
1593
  # })
1578
1594
  #
@@ -1599,6 +1615,9 @@ module Aws::EC2
1599
1615
  # your own IP addresses ([BYOIP][1]). The IPv6 CIDR block size is fixed
1600
1616
  # at /56.
1601
1617
  #
1618
+ # You must specify one of the following in the request: an IPv4 CIDR
1619
+ # block, an IPv6 pool, or an Amazon-provided IPv6 CIDR block.
1620
+ #
1602
1621
  # For more information about associating CIDR blocks with your VPC and
1603
1622
  # applicable restrictions, see [VPC and Subnet Sizing][2] in the *Amazon
1604
1623
  # Virtual Private Cloud User Guide*.
@@ -1619,6 +1638,15 @@ module Aws::EC2
1619
1638
  # @option params [required, String] :vpc_id
1620
1639
  # The ID of the VPC.
1621
1640
  #
1641
+ # @option params [String] :ipv_6_cidr_block_network_border_group
1642
+ # The name of the location from which we advertise the IPV6 CIDR block.
1643
+ # Use this parameter to limit the CiDR block to this location.
1644
+ #
1645
+ # You must set `AmazonProvidedIpv6CidrBlock` to `true` to use this
1646
+ # parameter.
1647
+ #
1648
+ # You can have one IPv6 CIDR block association per network border group.
1649
+ #
1622
1650
  # @option params [String] :ipv_6_pool
1623
1651
  # The ID of an IPv6 address pool from which to allocate the IPv6 CIDR
1624
1652
  # block.
@@ -1629,15 +1657,6 @@ module Aws::EC2
1629
1657
  #
1630
1658
  # To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
1631
1659
  #
1632
- # @option params [String] :ipv_6_cidr_block_network_border_group
1633
- # The name of the location from which we advertise the IPV6 CIDR block.
1634
- # Use this parameter to limit the CiDR block to this location.
1635
- #
1636
- # You must set `AmazonProvidedIpv6CidrBlock` to `true` to use this
1637
- # parameter.
1638
- #
1639
- # You can have one IPv6 CIDR block association per network border group.
1640
- #
1641
1660
  # @return [Types::AssociateVpcCidrBlockResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1642
1661
  #
1643
1662
  # * {Types::AssociateVpcCidrBlockResult#ipv_6_cidr_block_association #ipv_6_cidr_block_association} => Types::VpcIpv6CidrBlockAssociation
@@ -1650,9 +1669,9 @@ module Aws::EC2
1650
1669
  # amazon_provided_ipv_6_cidr_block: false,
1651
1670
  # cidr_block: "String",
1652
1671
  # vpc_id: "VpcId", # required
1653
- # ipv_6_pool: "String",
1654
- # ipv_6_cidr_block: "String",
1655
1672
  # ipv_6_cidr_block_network_border_group: "String",
1673
+ # ipv_6_pool: "Ipv6PoolEc2Id",
1674
+ # ipv_6_cidr_block: "String",
1656
1675
  # })
1657
1676
  #
1658
1677
  # @example Response structure
@@ -1661,8 +1680,8 @@ module Aws::EC2
1661
1680
  # resp.ipv_6_cidr_block_association.ipv_6_cidr_block #=> String
1662
1681
  # resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
1663
1682
  # resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
1664
- # resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
1665
1683
  # resp.ipv_6_cidr_block_association.network_border_group #=> String
1684
+ # resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
1666
1685
  # resp.cidr_block_association.association_id #=> String
1667
1686
  # resp.cidr_block_association.cidr_block #=> String
1668
1687
  # resp.cidr_block_association.cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
@@ -2179,7 +2198,7 @@ module Aws::EC2
2179
2198
  #
2180
2199
  # resp = client.authorize_security_group_egress({
2181
2200
  # dry_run: false,
2182
- # group_id: "String", # required
2201
+ # group_id: "SecurityGroupId", # required
2183
2202
  # ip_permissions: [
2184
2203
  # {
2185
2204
  # from_port: 1,
@@ -2417,8 +2436,8 @@ module Aws::EC2
2417
2436
  # resp = client.authorize_security_group_ingress({
2418
2437
  # cidr_ip: "String",
2419
2438
  # from_port: 1,
2420
- # group_id: "String",
2421
- # group_name: "String",
2439
+ # group_id: "SecurityGroupId",
2440
+ # group_name: "SecurityGroupName",
2422
2441
  # ip_permissions: [
2423
2442
  # {
2424
2443
  # from_port: 1,
@@ -2883,7 +2902,7 @@ module Aws::EC2
2883
2902
  #
2884
2903
  # resp = client.cancel_spot_fleet_requests({
2885
2904
  # dry_run: false,
2886
- # spot_fleet_request_ids: ["String"], # required
2905
+ # spot_fleet_request_ids: ["SpotFleetRequestId"], # required
2887
2906
  # terminate_instances: false, # required
2888
2907
  # })
2889
2908
  #
@@ -2950,7 +2969,7 @@ module Aws::EC2
2950
2969
  #
2951
2970
  # resp = client.cancel_spot_instance_requests({
2952
2971
  # dry_run: false,
2953
- # spot_instance_request_ids: ["String"], # required
2972
+ # spot_instance_request_ids: ["SpotInstanceRequestId"], # required
2954
2973
  # })
2955
2974
  #
2956
2975
  # @example Response structure
@@ -3064,7 +3083,7 @@ module Aws::EC2
3064
3083
  #
3065
3084
  # resp = client.copy_fpga_image({
3066
3085
  # dry_run: false,
3067
- # source_fpga_image_id: "String", # required
3086
+ # source_fpga_image_id: "FpgaImageId", # required
3068
3087
  # description: "String",
3069
3088
  # name: "String",
3070
3089
  # source_region: "String", # required
@@ -3380,13 +3399,13 @@ module Aws::EC2
3380
3399
  # description: "String",
3381
3400
  # destination_region: "String",
3382
3401
  # encrypted: false,
3383
- # kms_key_id: "String",
3402
+ # kms_key_id: "KmsKeyId",
3384
3403
  # presigned_url: "String",
3385
3404
  # source_region: "String", # required
3386
3405
  # source_snapshot_id: "String", # required
3387
3406
  # tag_specifications: [
3388
3407
  # {
3389
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
3408
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
3390
3409
  # tags: [
3391
3410
  # {
3392
3411
  # key: "String",
@@ -3574,7 +3593,7 @@ module Aws::EC2
3574
3593
  # instance_match_criteria: "open", # accepts open, targeted
3575
3594
  # tag_specifications: [
3576
3595
  # {
3577
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
3596
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
3578
3597
  # tags: [
3579
3598
  # {
3580
3599
  # key: "String",
@@ -3715,6 +3734,16 @@ module Aws::EC2
3715
3734
  # @option params [Array<Types::TagSpecification>] :tag_specifications
3716
3735
  # The tags to apply to the Client VPN endpoint during creation.
3717
3736
  #
3737
+ # @option params [Array<String>] :security_group_ids
3738
+ # The IDs of one or more security groups to apply to the target network.
3739
+ # You must also specify the ID of the VPC that contains the security
3740
+ # groups.
3741
+ #
3742
+ # @option params [String] :vpc_id
3743
+ # The ID of the VPC to associate with the Client VPN endpoint. If no
3744
+ # security group IDs are specified in the request, the default security
3745
+ # group for the VPC is applied.
3746
+ #
3718
3747
  # @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3719
3748
  #
3720
3749
  # * {Types::CreateClientVpnEndpointResult#client_vpn_endpoint_id #client_vpn_endpoint_id} => String
@@ -3751,7 +3780,7 @@ module Aws::EC2
3751
3780
  # client_token: "String",
3752
3781
  # tag_specifications: [
3753
3782
  # {
3754
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
3783
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
3755
3784
  # tags: [
3756
3785
  # {
3757
3786
  # key: "String",
@@ -3760,6 +3789,8 @@ module Aws::EC2
3760
3789
  # ],
3761
3790
  # },
3762
3791
  # ],
3792
+ # security_group_ids: ["String"],
3793
+ # vpc_id: "VpcId",
3763
3794
  # })
3764
3795
  #
3765
3796
  # @example Response structure
@@ -4085,8 +4116,8 @@ module Aws::EC2
4085
4116
  # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
4086
4117
  # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
4087
4118
  # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
4088
- # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
4089
4119
  # resp.vpc.ipv_6_cidr_block_association_set[0].network_border_group #=> String
4120
+ # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
4090
4121
  # resp.vpc.cidr_block_association_set #=> Array
4091
4122
  # resp.vpc.cidr_block_association_set[0].association_id #=> String
4092
4123
  # resp.vpc.cidr_block_association_set[0].cidr_block #=> String
@@ -4421,7 +4452,7 @@ module Aws::EC2
4421
4452
  # launch_template_configs: [ # required
4422
4453
  # {
4423
4454
  # launch_template_specification: {
4424
- # launch_template_id: "String",
4455
+ # launch_template_id: "LaunchTemplateId",
4425
4456
  # launch_template_name: "LaunchTemplateName",
4426
4457
  # version: "String",
4427
4458
  # },
@@ -4429,7 +4460,7 @@ module Aws::EC2
4429
4460
  # {
4430
4461
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge
4431
4462
  # max_price: "String",
4432
- # subnet_id: "String",
4463
+ # subnet_id: "SubnetId",
4433
4464
  # availability_zone: "String",
4434
4465
  # weighted_capacity: 1.0,
4435
4466
  # priority: 1.0,
@@ -4460,7 +4491,7 @@ module Aws::EC2
4460
4491
  # replace_unhealthy_instances: false,
4461
4492
  # tag_specifications: [
4462
4493
  # {
4463
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
4494
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
4464
4495
  # tags: [
4465
4496
  # {
4466
4497
  # key: "String",
@@ -4630,6 +4661,9 @@ module Aws::EC2
4630
4661
  #
4631
4662
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
4632
4663
  #
4664
+ # @option params [Array<Types::TagSpecification>] :tag_specifications
4665
+ # The tags to apply to the flow logs.
4666
+ #
4633
4667
  # @option params [Integer] :max_aggregation_interval
4634
4668
  # The maximum interval of time during which a flow of packets is
4635
4669
  # captured and aggregated into a flow log record. You can specify 60
@@ -4658,12 +4692,23 @@ module Aws::EC2
4658
4692
  # client_token: "String",
4659
4693
  # deliver_logs_permission_arn: "String",
4660
4694
  # log_group_name: "String",
4661
- # resource_ids: ["String"], # required
4695
+ # resource_ids: ["FlowLogResourceId"], # required
4662
4696
  # resource_type: "VPC", # required, accepts VPC, Subnet, NetworkInterface
4663
4697
  # traffic_type: "ACCEPT", # required, accepts ACCEPT, REJECT, ALL
4664
4698
  # log_destination_type: "cloud-watch-logs", # accepts cloud-watch-logs, s3
4665
4699
  # log_destination: "String",
4666
4700
  # log_format: "String",
4701
+ # tag_specifications: [
4702
+ # {
4703
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
4704
+ # tags: [
4705
+ # {
4706
+ # key: "String",
4707
+ # value: "String",
4708
+ # },
4709
+ # ],
4710
+ # },
4711
+ # ],
4667
4712
  # max_aggregation_interval: 1,
4668
4713
  # })
4669
4714
  #
@@ -4754,7 +4799,7 @@ module Aws::EC2
4754
4799
  # client_token: "String",
4755
4800
  # tag_specifications: [
4756
4801
  # {
4757
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
4802
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
4758
4803
  # tags: [
4759
4804
  # {
4760
4805
  # key: "String",
@@ -5080,7 +5125,7 @@ module Aws::EC2
5080
5125
  # @example Request syntax with placeholder values
5081
5126
  #
5082
5127
  # resp = client.create_key_pair({
5083
- # key_name: "KeyPairName", # required
5128
+ # key_name: "String", # required
5084
5129
  # dry_run: false,
5085
5130
  # })
5086
5131
  #
@@ -5192,7 +5237,7 @@ module Aws::EC2
5192
5237
  # launch_template_name: "LaunchTemplateName", # required
5193
5238
  # version_description: "VersionDescription",
5194
5239
  # launch_template_data: { # required
5195
- # kernel_id: "String",
5240
+ # kernel_id: "KernelId",
5196
5241
  # ebs_optimized: false,
5197
5242
  # iam_instance_profile: {
5198
5243
  # arn: "String",
@@ -5207,7 +5252,7 @@ module Aws::EC2
5207
5252
  # delete_on_termination: false,
5208
5253
  # iops: 1,
5209
5254
  # kms_key_id: "String",
5210
- # snapshot_id: "String",
5255
+ # snapshot_id: "SnapshotId",
5211
5256
  # volume_size: 1,
5212
5257
  # volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
5213
5258
  # },
@@ -5220,7 +5265,7 @@ module Aws::EC2
5220
5265
  # delete_on_termination: false,
5221
5266
  # description: "String",
5222
5267
  # device_index: 1,
5223
- # groups: ["String"],
5268
+ # groups: ["SecurityGroupId"],
5224
5269
  # interface_type: "String",
5225
5270
  # ipv_6_address_count: 1,
5226
5271
  # ipv_6_addresses: [
@@ -5228,7 +5273,7 @@ module Aws::EC2
5228
5273
  # ipv_6_address: "String",
5229
5274
  # },
5230
5275
  # ],
5231
- # network_interface_id: "String",
5276
+ # network_interface_id: "NetworkInterfaceId",
5232
5277
  # private_ip_address: "String",
5233
5278
  # private_ip_addresses: [
5234
5279
  # {
@@ -5237,32 +5282,32 @@ module Aws::EC2
5237
5282
  # },
5238
5283
  # ],
5239
5284
  # secondary_private_ip_address_count: 1,
5240
- # subnet_id: "String",
5285
+ # subnet_id: "SubnetId",
5241
5286
  # },
5242
5287
  # ],
5243
- # image_id: "String",
5288
+ # image_id: "ImageId",
5244
5289
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge
5245
- # key_name: "String",
5290
+ # key_name: "KeyPairName",
5246
5291
  # monitoring: {
5247
5292
  # enabled: false,
5248
5293
  # },
5249
5294
  # placement: {
5250
5295
  # availability_zone: "String",
5251
5296
  # affinity: "String",
5252
- # group_name: "String",
5253
- # host_id: "String",
5297
+ # group_name: "PlacementGroupName",
5298
+ # host_id: "DedicatedHostId",
5254
5299
  # tenancy: "default", # accepts default, dedicated, host
5255
5300
  # spread_domain: "String",
5256
5301
  # host_resource_group_arn: "String",
5257
5302
  # partition_number: 1,
5258
5303
  # },
5259
- # ram_disk_id: "String",
5304
+ # ram_disk_id: "RamdiskId",
5260
5305
  # disable_api_termination: false,
5261
5306
  # instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
5262
5307
  # user_data: "String",
5263
5308
  # tag_specifications: [
5264
5309
  # {
5265
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
5310
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
5266
5311
  # tags: [
5267
5312
  # {
5268
5313
  # key: "String",
@@ -5282,8 +5327,8 @@ module Aws::EC2
5282
5327
  # count: 1,
5283
5328
  # },
5284
5329
  # ],
5285
- # security_group_ids: ["String"],
5286
- # security_groups: ["String"],
5330
+ # security_group_ids: ["SecurityGroupId"],
5331
+ # security_groups: ["SecurityGroupName"],
5287
5332
  # instance_market_options: {
5288
5333
  # market_type: "spot", # accepts spot
5289
5334
  # spot_options: {
@@ -5304,7 +5349,7 @@ module Aws::EC2
5304
5349
  # capacity_reservation_specification: {
5305
5350
  # capacity_reservation_preference: "open", # accepts open, none
5306
5351
  # capacity_reservation_target: {
5307
- # capacity_reservation_id: "String",
5352
+ # capacity_reservation_id: "CapacityReservationId",
5308
5353
  # },
5309
5354
  # },
5310
5355
  # license_specifications: [
@@ -5323,7 +5368,7 @@ module Aws::EC2
5323
5368
  # },
5324
5369
  # tag_specifications: [
5325
5370
  # {
5326
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
5371
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
5327
5372
  # tags: [
5328
5373
  # {
5329
5374
  # key: "String",
@@ -5460,7 +5505,7 @@ module Aws::EC2
5460
5505
  # source_version: "String",
5461
5506
  # version_description: "VersionDescription",
5462
5507
  # launch_template_data: { # required
5463
- # kernel_id: "String",
5508
+ # kernel_id: "KernelId",
5464
5509
  # ebs_optimized: false,
5465
5510
  # iam_instance_profile: {
5466
5511
  # arn: "String",
@@ -5475,7 +5520,7 @@ module Aws::EC2
5475
5520
  # delete_on_termination: false,
5476
5521
  # iops: 1,
5477
5522
  # kms_key_id: "String",
5478
- # snapshot_id: "String",
5523
+ # snapshot_id: "SnapshotId",
5479
5524
  # volume_size: 1,
5480
5525
  # volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
5481
5526
  # },
@@ -5488,7 +5533,7 @@ module Aws::EC2
5488
5533
  # delete_on_termination: false,
5489
5534
  # description: "String",
5490
5535
  # device_index: 1,
5491
- # groups: ["String"],
5536
+ # groups: ["SecurityGroupId"],
5492
5537
  # interface_type: "String",
5493
5538
  # ipv_6_address_count: 1,
5494
5539
  # ipv_6_addresses: [
@@ -5496,7 +5541,7 @@ module Aws::EC2
5496
5541
  # ipv_6_address: "String",
5497
5542
  # },
5498
5543
  # ],
5499
- # network_interface_id: "String",
5544
+ # network_interface_id: "NetworkInterfaceId",
5500
5545
  # private_ip_address: "String",
5501
5546
  # private_ip_addresses: [
5502
5547
  # {
@@ -5505,32 +5550,32 @@ module Aws::EC2
5505
5550
  # },
5506
5551
  # ],
5507
5552
  # secondary_private_ip_address_count: 1,
5508
- # subnet_id: "String",
5553
+ # subnet_id: "SubnetId",
5509
5554
  # },
5510
5555
  # ],
5511
- # image_id: "String",
5556
+ # image_id: "ImageId",
5512
5557
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge
5513
- # key_name: "String",
5558
+ # key_name: "KeyPairName",
5514
5559
  # monitoring: {
5515
5560
  # enabled: false,
5516
5561
  # },
5517
5562
  # placement: {
5518
5563
  # availability_zone: "String",
5519
5564
  # affinity: "String",
5520
- # group_name: "String",
5521
- # host_id: "String",
5565
+ # group_name: "PlacementGroupName",
5566
+ # host_id: "DedicatedHostId",
5522
5567
  # tenancy: "default", # accepts default, dedicated, host
5523
5568
  # spread_domain: "String",
5524
5569
  # host_resource_group_arn: "String",
5525
5570
  # partition_number: 1,
5526
5571
  # },
5527
- # ram_disk_id: "String",
5572
+ # ram_disk_id: "RamdiskId",
5528
5573
  # disable_api_termination: false,
5529
5574
  # instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
5530
5575
  # user_data: "String",
5531
5576
  # tag_specifications: [
5532
5577
  # {
5533
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
5578
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
5534
5579
  # tags: [
5535
5580
  # {
5536
5581
  # key: "String",
@@ -5550,8 +5595,8 @@ module Aws::EC2
5550
5595
  # count: 1,
5551
5596
  # },
5552
5597
  # ],
5553
- # security_group_ids: ["String"],
5554
- # security_groups: ["String"],
5598
+ # security_group_ids: ["SecurityGroupId"],
5599
+ # security_groups: ["SecurityGroupName"],
5555
5600
  # instance_market_options: {
5556
5601
  # market_type: "spot", # accepts spot
5557
5602
  # spot_options: {
@@ -5572,7 +5617,7 @@ module Aws::EC2
5572
5617
  # capacity_reservation_specification: {
5573
5618
  # capacity_reservation_preference: "open", # accepts open, none
5574
5619
  # capacity_reservation_target: {
5575
- # capacity_reservation_id: "String",
5620
+ # capacity_reservation_id: "CapacityReservationId",
5576
5621
  # },
5577
5622
  # },
5578
5623
  # license_specifications: [
@@ -5650,7 +5695,7 @@ module Aws::EC2
5650
5695
  # resp.launch_template_version.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
5651
5696
  # resp.launch_template_version.launch_template_data.user_data #=> String
5652
5697
  # resp.launch_template_version.launch_template_data.tag_specifications #=> Array
5653
- # resp.launch_template_version.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
5698
+ # resp.launch_template_version.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
5654
5699
  # resp.launch_template_version.launch_template_data.tag_specifications[0].tags #=> Array
5655
5700
  # resp.launch_template_version.launch_template_data.tag_specifications[0].tags[0].key #=> String
5656
5701
  # resp.launch_template_version.launch_template_data.tag_specifications[0].tags[0].value #=> String
@@ -5717,8 +5762,8 @@ module Aws::EC2
5717
5762
  #
5718
5763
  # resp = client.create_local_gateway_route({
5719
5764
  # destination_cidr_block: "String", # required
5720
- # local_gateway_route_table_id: "String", # required
5721
- # local_gateway_virtual_interface_group_id: "String", # required
5765
+ # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
5766
+ # local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId", # required
5722
5767
  # dry_run: false,
5723
5768
  # })
5724
5769
  #
@@ -5761,8 +5806,8 @@ module Aws::EC2
5761
5806
  # @example Request syntax with placeholder values
5762
5807
  #
5763
5808
  # resp = client.create_local_gateway_route_table_vpc_association({
5764
- # local_gateway_route_table_id: "String", # required
5765
- # vpc_id: "String", # required
5809
+ # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
5810
+ # vpc_id: "VpcId", # required
5766
5811
  # dry_run: false,
5767
5812
  # })
5768
5813
  #
@@ -6243,7 +6288,7 @@ module Aws::EC2
6243
6288
  # resp = client.create_network_interface({
6244
6289
  # description: "String",
6245
6290
  # dry_run: false,
6246
- # groups: ["String"],
6291
+ # groups: ["SecurityGroupId"],
6247
6292
  # ipv_6_address_count: 1,
6248
6293
  # ipv_6_addresses: [
6249
6294
  # {
@@ -6517,7 +6562,7 @@ module Aws::EC2
6517
6562
  # term: 1,
6518
6563
  # },
6519
6564
  # ],
6520
- # reserved_instances_id: "String", # required
6565
+ # reserved_instances_id: "ReservationId", # required
6521
6566
  # })
6522
6567
  #
6523
6568
  # @example Response structure
@@ -6646,11 +6691,11 @@ module Aws::EC2
6646
6691
  # destination_ipv_6_cidr_block: "String",
6647
6692
  # dry_run: false,
6648
6693
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
6649
- # gateway_id: "RouteTableGatewayId",
6694
+ # gateway_id: "RouteGatewayId",
6650
6695
  # instance_id: "InstanceId",
6651
6696
  # nat_gateway_id: "NatGatewayId",
6652
6697
  # transit_gateway_id: "TransitGatewayId",
6653
- # local_gateway_id: "String",
6698
+ # local_gateway_id: "LocalGatewayId",
6654
6699
  # network_interface_id: "NetworkInterfaceId",
6655
6700
  # route_table_id: "RouteTableId", # required
6656
6701
  # vpc_peering_connection_id: "VpcPeeringConnectionId",
@@ -6979,7 +7024,7 @@ module Aws::EC2
6979
7024
  # volume_id: "VolumeId", # required
6980
7025
  # tag_specifications: [
6981
7026
  # {
6982
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7027
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
6983
7028
  # tags: [
6984
7029
  # {
6985
7030
  # key: "String",
@@ -7053,12 +7098,12 @@ module Aws::EC2
7053
7098
  # resp = client.create_snapshots({
7054
7099
  # description: "String",
7055
7100
  # instance_specification: { # required
7056
- # instance_id: "String",
7101
+ # instance_id: "InstanceId",
7057
7102
  # exclude_boot_volume: false,
7058
7103
  # },
7059
7104
  # tag_specifications: [
7060
7105
  # {
7061
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7106
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7062
7107
  # tags: [
7063
7108
  # {
7064
7109
  # key: "String",
@@ -7369,7 +7414,7 @@ module Aws::EC2
7369
7414
  #
7370
7415
  # resp = client.create_tags({
7371
7416
  # dry_run: false,
7372
- # resources: ["String"], # required
7417
+ # resources: ["TaggableResourceId"], # required
7373
7418
  # tags: [ # required
7374
7419
  # {
7375
7420
  # key: "String",
@@ -7438,7 +7483,7 @@ module Aws::EC2
7438
7483
  # description: "String",
7439
7484
  # tag_specifications: [
7440
7485
  # {
7441
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7486
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7442
7487
  # tags: [
7443
7488
  # {
7444
7489
  # key: "String",
@@ -7712,7 +7757,7 @@ module Aws::EC2
7712
7757
  # description: "String",
7713
7758
  # tag_specifications: [
7714
7759
  # {
7715
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7760
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7716
7761
  # tags: [
7717
7762
  # {
7718
7763
  # key: "String",
@@ -7811,7 +7856,7 @@ module Aws::EC2
7811
7856
  # description: "String",
7812
7857
  # tag_specifications: [
7813
7858
  # {
7814
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7859
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7815
7860
  # tags: [
7816
7861
  # {
7817
7862
  # key: "String",
@@ -7904,7 +7949,7 @@ module Aws::EC2
7904
7949
  # },
7905
7950
  # tag_specifications: [
7906
7951
  # {
7907
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7952
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7908
7953
  # tags: [
7909
7954
  # {
7910
7955
  # key: "String",
@@ -7975,10 +8020,10 @@ module Aws::EC2
7975
8020
  # @example Request syntax with placeholder values
7976
8021
  #
7977
8022
  # resp = client.create_transit_gateway_multicast_domain({
7978
- # transit_gateway_id: "String", # required
8023
+ # transit_gateway_id: "TransitGatewayId", # required
7979
8024
  # tag_specifications: [
7980
8025
  # {
7981
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8026
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
7982
8027
  # tags: [
7983
8028
  # {
7984
8029
  # key: "String",
@@ -8046,13 +8091,13 @@ module Aws::EC2
8046
8091
  # @example Request syntax with placeholder values
8047
8092
  #
8048
8093
  # resp = client.create_transit_gateway_peering_attachment({
8049
- # transit_gateway_id: "String", # required
8094
+ # transit_gateway_id: "TransitGatewayId", # required
8050
8095
  # peer_transit_gateway_id: "String", # required
8051
8096
  # peer_account_id: "String", # required
8052
8097
  # peer_region: "String", # required
8053
8098
  # tag_specifications: [
8054
8099
  # {
8055
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8100
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8056
8101
  # tags: [
8057
8102
  # {
8058
8103
  # key: "String",
@@ -8119,8 +8164,8 @@ module Aws::EC2
8119
8164
  #
8120
8165
  # resp = client.create_transit_gateway_route({
8121
8166
  # destination_cidr_block: "String", # required
8122
- # transit_gateway_route_table_id: "String", # required
8123
- # transit_gateway_attachment_id: "String",
8167
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
8168
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId",
8124
8169
  # blackhole: false,
8125
8170
  # dry_run: false,
8126
8171
  # })
@@ -8165,10 +8210,10 @@ module Aws::EC2
8165
8210
  # @example Request syntax with placeholder values
8166
8211
  #
8167
8212
  # resp = client.create_transit_gateway_route_table({
8168
- # transit_gateway_id: "String", # required
8213
+ # transit_gateway_id: "TransitGatewayId", # required
8169
8214
  # tag_specifications: [
8170
8215
  # {
8171
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8216
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8172
8217
  # tags: [
8173
8218
  # {
8174
8219
  # key: "String",
@@ -8241,16 +8286,16 @@ module Aws::EC2
8241
8286
  # @example Request syntax with placeholder values
8242
8287
  #
8243
8288
  # resp = client.create_transit_gateway_vpc_attachment({
8244
- # transit_gateway_id: "String", # required
8245
- # vpc_id: "String", # required
8246
- # subnet_ids: ["String"], # required
8289
+ # transit_gateway_id: "TransitGatewayId", # required
8290
+ # vpc_id: "VpcId", # required
8291
+ # subnet_ids: ["SubnetId"], # required
8247
8292
  # options: {
8248
8293
  # dns_support: "enable", # accepts enable, disable
8249
8294
  # ipv_6_support: "enable", # accepts enable, disable
8250
8295
  # },
8251
8296
  # tag_specifications: [
8252
8297
  # {
8253
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8298
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8254
8299
  # tags: [
8255
8300
  # {
8256
8301
  # key: "String",
@@ -8408,6 +8453,18 @@ module Aws::EC2
8408
8453
  # @option params [Array<Types::TagSpecification>] :tag_specifications
8409
8454
  # The tags to apply to the volume during creation.
8410
8455
  #
8456
+ # @option params [Boolean] :multi_attach_enabled
8457
+ # Specifies whether to enable Amazon EBS Multi-Attach. If you enable
8458
+ # Multi-Attach, you can attach the volume to up to 16 [Nitro-based
8459
+ # instances][1] in the same Availability Zone. For more information, see
8460
+ # [ Amazon EBS Multi-Attach][2] in the *Amazon Elastic Compute Cloud
8461
+ # User Guide*.
8462
+ #
8463
+ #
8464
+ #
8465
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
8466
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volumes-multi.html
8467
+ #
8411
8468
  # @return [Types::Volume] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8412
8469
  #
8413
8470
  # * {Types::Volume#attachments #attachments} => Array&lt;Types::VolumeAttachment&gt;
@@ -8424,6 +8481,7 @@ module Aws::EC2
8424
8481
  # * {Types::Volume#tags #tags} => Array&lt;Types::Tag&gt;
8425
8482
  # * {Types::Volume#volume_type #volume_type} => String
8426
8483
  # * {Types::Volume#fast_restored #fast_restored} => Boolean
8484
+ # * {Types::Volume#multi_attach_enabled #multi_attach_enabled} => Boolean
8427
8485
  #
8428
8486
  #
8429
8487
  # @example Example: To create a new volume
@@ -8491,7 +8549,7 @@ module Aws::EC2
8491
8549
  # dry_run: false,
8492
8550
  # tag_specifications: [
8493
8551
  # {
8494
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8552
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8495
8553
  # tags: [
8496
8554
  # {
8497
8555
  # key: "String",
@@ -8500,6 +8558,7 @@ module Aws::EC2
8500
8558
  # ],
8501
8559
  # },
8502
8560
  # ],
8561
+ # multi_attach_enabled: false,
8503
8562
  # })
8504
8563
  #
8505
8564
  # @example Response structure
@@ -8526,6 +8585,7 @@ module Aws::EC2
8526
8585
  # resp.tags[0].value #=> String
8527
8586
  # resp.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
8528
8587
  # resp.fast_restored #=> Boolean
8588
+ # resp.multi_attach_enabled #=> Boolean
8529
8589
  #
8530
8590
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolume AWS API Documentation
8531
8591
  #
@@ -8638,7 +8698,7 @@ module Aws::EC2
8638
8698
  # resp = client.create_vpc({
8639
8699
  # cidr_block: "String", # required
8640
8700
  # amazon_provided_ipv_6_cidr_block: false,
8641
- # ipv_6_pool: "String",
8701
+ # ipv_6_pool: "Ipv6PoolEc2Id",
8642
8702
  # ipv_6_cidr_block: "String",
8643
8703
  # dry_run: false,
8644
8704
  # instance_tenancy: "default", # accepts default, dedicated, host
@@ -8658,8 +8718,8 @@ module Aws::EC2
8658
8718
  # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
8659
8719
  # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
8660
8720
  # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
8661
- # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
8662
8721
  # resp.vpc.ipv_6_cidr_block_association_set[0].network_border_group #=> String
8722
+ # resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
8663
8723
  # resp.vpc.cidr_block_association_set #=> Array
8664
8724
  # resp.vpc.cidr_block_association_set[0].association_id #=> String
8665
8725
  # resp.vpc.cidr_block_association_set[0].cidr_block #=> String
@@ -8779,14 +8839,14 @@ module Aws::EC2
8779
8839
  # vpc_id: "VpcId", # required
8780
8840
  # service_name: "String", # required
8781
8841
  # policy_document: "String",
8782
- # route_table_ids: ["String"],
8783
- # subnet_ids: ["String"],
8784
- # security_group_ids: ["String"],
8842
+ # route_table_ids: ["RouteTableId"],
8843
+ # subnet_ids: ["SubnetId"],
8844
+ # security_group_ids: ["SecurityGroupId"],
8785
8845
  # client_token: "String",
8786
8846
  # private_dns_enabled: false,
8787
8847
  # tag_specifications: [
8788
8848
  # {
8789
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8849
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8790
8850
  # tags: [
8791
8851
  # {
8792
8852
  # key: "String",
@@ -8886,7 +8946,7 @@ module Aws::EC2
8886
8946
  #
8887
8947
  # resp = client.create_vpc_endpoint_connection_notification({
8888
8948
  # dry_run: false,
8889
- # service_id: "ServiceId",
8949
+ # service_id: "VpcEndpointServiceId",
8890
8950
  # vpc_endpoint_id: "VpcEndpointId",
8891
8951
  # connection_notification_arn: "String", # required
8892
8952
  # connection_events: ["String"], # required
@@ -8979,7 +9039,7 @@ module Aws::EC2
8979
9039
  # client_token: "String",
8980
9040
  # tag_specifications: [
8981
9041
  # {
8982
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
9042
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
8983
9043
  # tags: [
8984
9044
  # {
8985
9045
  # key: "String",
@@ -9682,7 +9742,7 @@ module Aws::EC2
9682
9742
  #
9683
9743
  # resp = client.delete_flow_logs({
9684
9744
  # dry_run: false,
9685
- # flow_log_ids: ["String"], # required
9745
+ # flow_log_ids: ["VpcFlowLogId"], # required
9686
9746
  # })
9687
9747
  #
9688
9748
  # @example Response structure
@@ -9993,7 +10053,7 @@ module Aws::EC2
9993
10053
  #
9994
10054
  # resp = client.delete_local_gateway_route({
9995
10055
  # destination_cidr_block: "String", # required
9996
- # local_gateway_route_table_id: "String", # required
10056
+ # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
9997
10057
  # dry_run: false,
9998
10058
  # })
9999
10059
  #
@@ -10033,7 +10093,7 @@ module Aws::EC2
10033
10093
  # @example Request syntax with placeholder values
10034
10094
  #
10035
10095
  # resp = client.delete_local_gateway_route_table_vpc_association({
10036
- # local_gateway_route_table_vpc_association_id: "String", # required
10096
+ # local_gateway_route_table_vpc_association_id: "LocalGatewayRouteTableVpcAssociationId", # required
10037
10097
  # dry_run: false,
10038
10098
  # })
10039
10099
  #
@@ -10255,7 +10315,7 @@ module Aws::EC2
10255
10315
  # @example Request syntax with placeholder values
10256
10316
  #
10257
10317
  # resp = client.delete_network_interface_permission({
10258
- # network_interface_permission_id: "String", # required
10318
+ # network_interface_permission_id: "NetworkInterfacePermissionId", # required
10259
10319
  # force: false,
10260
10320
  # dry_run: false,
10261
10321
  # })
@@ -10310,7 +10370,7 @@ module Aws::EC2
10310
10370
  #
10311
10371
  # resp = client.delete_placement_group({
10312
10372
  # dry_run: false,
10313
- # group_name: "String", # required
10373
+ # group_name: "PlacementGroupName", # required
10314
10374
  # })
10315
10375
  #
10316
10376
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePlacementGroup AWS API Documentation
@@ -10342,7 +10402,7 @@ module Aws::EC2
10342
10402
  #
10343
10403
  # resp = client.delete_queued_reserved_instances({
10344
10404
  # dry_run: false,
10345
- # reserved_instances_ids: ["String"], # required
10405
+ # reserved_instances_ids: ["ReservationId"], # required
10346
10406
  # })
10347
10407
  #
10348
10408
  # @example Response structure
@@ -10440,7 +10500,7 @@ module Aws::EC2
10440
10500
  #
10441
10501
  # resp = client.delete_route_table({
10442
10502
  # dry_run: false,
10443
- # route_table_id: "String", # required
10503
+ # route_table_id: "RouteTableId", # required
10444
10504
  # })
10445
10505
  #
10446
10506
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteTable AWS API Documentation
@@ -10490,8 +10550,8 @@ module Aws::EC2
10490
10550
  # @example Request syntax with placeholder values
10491
10551
  #
10492
10552
  # resp = client.delete_security_group({
10493
- # group_id: "String",
10494
- # group_name: "String",
10553
+ # group_id: "SecurityGroupId",
10554
+ # group_name: "SecurityGroupName",
10495
10555
  # dry_run: false,
10496
10556
  # })
10497
10557
  #
@@ -10694,7 +10754,7 @@ module Aws::EC2
10694
10754
  #
10695
10755
  # resp = client.delete_tags({
10696
10756
  # dry_run: false,
10697
- # resources: ["String"], # required
10757
+ # resources: ["TaggableResourceId"], # required
10698
10758
  # tags: [
10699
10759
  # {
10700
10760
  # key: "String",
@@ -10876,7 +10936,7 @@ module Aws::EC2
10876
10936
  # @example Request syntax with placeholder values
10877
10937
  #
10878
10938
  # resp = client.delete_transit_gateway({
10879
- # transit_gateway_id: "String", # required
10939
+ # transit_gateway_id: "TransitGatewayId", # required
10880
10940
  # dry_run: false,
10881
10941
  # })
10882
10942
  #
@@ -10928,7 +10988,7 @@ module Aws::EC2
10928
10988
  # @example Request syntax with placeholder values
10929
10989
  #
10930
10990
  # resp = client.delete_transit_gateway_multicast_domain({
10931
- # transit_gateway_multicast_domain_id: "String", # required
10991
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId", # required
10932
10992
  # dry_run: false,
10933
10993
  # })
10934
10994
  #
@@ -10969,7 +11029,7 @@ module Aws::EC2
10969
11029
  # @example Request syntax with placeholder values
10970
11030
  #
10971
11031
  # resp = client.delete_transit_gateway_peering_attachment({
10972
- # transit_gateway_attachment_id: "String", # required
11032
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
10973
11033
  # dry_run: false,
10974
11034
  # })
10975
11035
  #
@@ -11022,7 +11082,7 @@ module Aws::EC2
11022
11082
  # @example Request syntax with placeholder values
11023
11083
  #
11024
11084
  # resp = client.delete_transit_gateway_route({
11025
- # transit_gateway_route_table_id: "String", # required
11085
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
11026
11086
  # destination_cidr_block: "String", # required
11027
11087
  # dry_run: false,
11028
11088
  # })
@@ -11066,7 +11126,7 @@ module Aws::EC2
11066
11126
  # @example Request syntax with placeholder values
11067
11127
  #
11068
11128
  # resp = client.delete_transit_gateway_route_table({
11069
- # transit_gateway_route_table_id: "String", # required
11129
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
11070
11130
  # dry_run: false,
11071
11131
  # })
11072
11132
  #
@@ -11109,7 +11169,7 @@ module Aws::EC2
11109
11169
  # @example Request syntax with placeholder values
11110
11170
  #
11111
11171
  # resp = client.delete_transit_gateway_vpc_attachment({
11112
- # transit_gateway_attachment_id: "String", # required
11172
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
11113
11173
  # dry_run: false,
11114
11174
  # })
11115
11175
  #
@@ -11294,7 +11354,7 @@ module Aws::EC2
11294
11354
  #
11295
11355
  # resp = client.delete_vpc_endpoint_service_configurations({
11296
11356
  # dry_run: false,
11297
- # service_ids: ["String"], # required
11357
+ # service_ids: ["VpcEndpointServiceId"], # required
11298
11358
  # })
11299
11359
  #
11300
11360
  # @example Response structure
@@ -11335,7 +11395,7 @@ module Aws::EC2
11335
11395
  #
11336
11396
  # resp = client.delete_vpc_endpoints({
11337
11397
  # dry_run: false,
11338
- # vpc_endpoint_ids: ["String"], # required
11398
+ # vpc_endpoint_ids: ["VpcEndpointId"], # required
11339
11399
  # })
11340
11400
  #
11341
11401
  # @example Response structure
@@ -11463,11 +11523,10 @@ module Aws::EC2
11463
11523
  req.send_request(options)
11464
11524
  end
11465
11525
 
11466
- # Deletes the specified virtual private gateway. We recommend that
11467
- # before you delete a virtual private gateway, you detach it from the
11468
- # VPC and delete the VPN connection. Note that you don't need to delete
11469
- # the virtual private gateway if you plan to delete and recreate the VPN
11470
- # connection between your VPC and your network.
11526
+ # Deletes the specified virtual private gateway. You must first detach
11527
+ # the virtual private gateway from the VPC. Note that you don't need to
11528
+ # delete the virtual private gateway if you plan to delete and recreate
11529
+ # the VPN connection between your VPC and your network.
11471
11530
  #
11472
11531
  # @option params [required, String] :vpn_gateway_id
11473
11532
  # The ID of the virtual private gateway.
@@ -11604,9 +11663,9 @@ module Aws::EC2
11604
11663
  # @example Request syntax with placeholder values
11605
11664
  #
11606
11665
  # resp = client.deregister_transit_gateway_multicast_group_members({
11607
- # transit_gateway_multicast_domain_id: "String",
11666
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
11608
11667
  # group_ip_address: "String",
11609
- # network_interface_ids: ["String"],
11668
+ # network_interface_ids: ["NetworkInterfaceId"],
11610
11669
  # dry_run: false,
11611
11670
  # })
11612
11671
  #
@@ -11651,9 +11710,9 @@ module Aws::EC2
11651
11710
  # @example Request syntax with placeholder values
11652
11711
  #
11653
11712
  # resp = client.deregister_transit_gateway_multicast_group_sources({
11654
- # transit_gateway_multicast_domain_id: "String",
11713
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
11655
11714
  # group_ip_address: "String",
11656
- # network_interface_ids: ["String"],
11715
+ # network_interface_ids: ["NetworkInterfaceId"],
11657
11716
  # dry_run: false,
11658
11717
  # })
11659
11718
  #
@@ -12270,7 +12329,7 @@ module Aws::EC2
12270
12329
  # @example Request syntax with placeholder values
12271
12330
  #
12272
12331
  # resp = client.describe_bundle_tasks({
12273
- # bundle_ids: ["String"],
12332
+ # bundle_ids: ["BundleId"],
12274
12333
  # filters: [
12275
12334
  # {
12276
12335
  # name: "String",
@@ -12498,7 +12557,7 @@ module Aws::EC2
12498
12557
  # },
12499
12558
  # ],
12500
12559
  # dry_run: false,
12501
- # instance_ids: ["String"],
12560
+ # instance_ids: ["InstanceId"],
12502
12561
  # max_results: 1,
12503
12562
  # next_token: "String",
12504
12563
  # })
@@ -12563,7 +12622,7 @@ module Aws::EC2
12563
12622
  # @example Request syntax with placeholder values
12564
12623
  #
12565
12624
  # resp = client.describe_client_vpn_authorization_rules({
12566
- # client_vpn_endpoint_id: "String", # required
12625
+ # client_vpn_endpoint_id: "ClientVpnEndpointId", # required
12567
12626
  # dry_run: false,
12568
12627
  # next_token: "NextToken",
12569
12628
  # filters: [
@@ -12633,7 +12692,7 @@ module Aws::EC2
12633
12692
  # @example Request syntax with placeholder values
12634
12693
  #
12635
12694
  # resp = client.describe_client_vpn_connections({
12636
- # client_vpn_endpoint_id: "String", # required
12695
+ # client_vpn_endpoint_id: "ClientVpnEndpointId", # required
12637
12696
  # filters: [
12638
12697
  # {
12639
12698
  # name: "String",
@@ -12707,7 +12766,7 @@ module Aws::EC2
12707
12766
  # @example Request syntax with placeholder values
12708
12767
  #
12709
12768
  # resp = client.describe_client_vpn_endpoints({
12710
- # client_vpn_endpoint_ids: ["String"],
12769
+ # client_vpn_endpoint_ids: ["ClientVpnEndpointId"],
12711
12770
  # max_results: 1,
12712
12771
  # next_token: "NextToken",
12713
12772
  # filters: [
@@ -12750,6 +12809,9 @@ module Aws::EC2
12750
12809
  # resp.client_vpn_endpoints[0].tags #=> Array
12751
12810
  # resp.client_vpn_endpoints[0].tags[0].key #=> String
12752
12811
  # resp.client_vpn_endpoints[0].tags[0].value #=> String
12812
+ # resp.client_vpn_endpoints[0].security_group_ids #=> Array
12813
+ # resp.client_vpn_endpoints[0].security_group_ids[0] #=> String
12814
+ # resp.client_vpn_endpoints[0].vpc_id #=> String
12753
12815
  # resp.next_token #=> String
12754
12816
  #
12755
12817
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnEndpoints AWS API Documentation
@@ -12799,7 +12861,7 @@ module Aws::EC2
12799
12861
  # @example Request syntax with placeholder values
12800
12862
  #
12801
12863
  # resp = client.describe_client_vpn_routes({
12802
- # client_vpn_endpoint_id: "String", # required
12864
+ # client_vpn_endpoint_id: "ClientVpnEndpointId", # required
12803
12865
  # filters: [
12804
12866
  # {
12805
12867
  # name: "String",
@@ -12874,7 +12936,7 @@ module Aws::EC2
12874
12936
  # @example Request syntax with placeholder values
12875
12937
  #
12876
12938
  # resp = client.describe_client_vpn_target_networks({
12877
- # client_vpn_endpoint_id: "String", # required
12939
+ # client_vpn_endpoint_id: "ClientVpnEndpointId", # required
12878
12940
  # association_ids: ["String"],
12879
12941
  # max_results: 1,
12880
12942
  # next_token: "NextToken",
@@ -13009,7 +13071,7 @@ module Aws::EC2
13009
13071
  # @example Request syntax with placeholder values
13010
13072
  #
13011
13073
  # resp = client.describe_conversion_tasks({
13012
- # conversion_task_ids: ["String"],
13074
+ # conversion_task_ids: ["ConversionTaskId"],
13013
13075
  # dry_run: false,
13014
13076
  # })
13015
13077
  #
@@ -13135,7 +13197,7 @@ module Aws::EC2
13135
13197
  # @example Request syntax with placeholder values
13136
13198
  #
13137
13199
  # resp = client.describe_customer_gateways({
13138
- # customer_gateway_ids: ["String"],
13200
+ # customer_gateway_ids: ["CustomerGatewayId"],
13139
13201
  # filters: [
13140
13202
  # {
13141
13203
  # name: "String",
@@ -13259,7 +13321,7 @@ module Aws::EC2
13259
13321
  # @example Request syntax with placeholder values
13260
13322
  #
13261
13323
  # resp = client.describe_dhcp_options({
13262
- # dhcp_options_ids: ["String"],
13324
+ # dhcp_options_ids: ["DhcpOptionsId"],
13263
13325
  # filters: [
13264
13326
  # {
13265
13327
  # name: "String",
@@ -13419,7 +13481,7 @@ module Aws::EC2
13419
13481
  # @example Request syntax with placeholder values
13420
13482
  #
13421
13483
  # resp = client.describe_elastic_gpus({
13422
- # elastic_gpu_ids: ["String"],
13484
+ # elastic_gpu_ids: ["ElasticGpuId"],
13423
13485
  # dry_run: false,
13424
13486
  # filters: [
13425
13487
  # {
@@ -13492,7 +13554,7 @@ module Aws::EC2
13492
13554
  # values: ["String"],
13493
13555
  # },
13494
13556
  # ],
13495
- # export_image_task_ids: ["String"],
13557
+ # export_image_task_ids: ["ExportImageTaskId"],
13496
13558
  # max_results: 1,
13497
13559
  # next_token: "NextToken",
13498
13560
  # })
@@ -13961,6 +14023,16 @@ module Aws::EC2
13961
14023
  # * `traffic-type` - The type of traffic (`ACCEPT` \| `REJECT` \|
13962
14024
  # `ALL`).
13963
14025
  #
14026
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
14027
+ # the resource. Use the tag key in the filter name and the tag value
14028
+ # as the filter value. For example, to find all resources that have a
14029
+ # tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
14030
+ # for the filter name and `TeamA` for the filter value.
14031
+ #
14032
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
14033
+ # filter to find all resources assigned a tag with a specific key,
14034
+ # regardless of the tag value.
14035
+ #
13964
14036
  # @option params [Array<String>] :flow_log_ids
13965
14037
  # One or more flow log IDs.
13966
14038
  #
@@ -13989,7 +14061,7 @@ module Aws::EC2
13989
14061
  # values: ["String"],
13990
14062
  # },
13991
14063
  # ],
13992
- # flow_log_ids: ["String"],
14064
+ # flow_log_ids: ["VpcFlowLogId"],
13993
14065
  # max_results: 1,
13994
14066
  # next_token: "String",
13995
14067
  # })
@@ -14009,6 +14081,9 @@ module Aws::EC2
14009
14081
  # resp.flow_logs[0].log_destination_type #=> String, one of "cloud-watch-logs", "s3"
14010
14082
  # resp.flow_logs[0].log_destination #=> String
14011
14083
  # resp.flow_logs[0].log_format #=> String
14084
+ # resp.flow_logs[0].tags #=> Array
14085
+ # resp.flow_logs[0].tags[0].key #=> String
14086
+ # resp.flow_logs[0].tags[0].value #=> String
14012
14087
  # resp.flow_logs[0].max_aggregation_interval #=> Integer
14013
14088
  # resp.next_token #=> String
14014
14089
  #
@@ -14044,7 +14119,7 @@ module Aws::EC2
14044
14119
  #
14045
14120
  # resp = client.describe_fpga_image_attribute({
14046
14121
  # dry_run: false,
14047
- # fpga_image_id: "String", # required
14122
+ # fpga_image_id: "FpgaImageId", # required
14048
14123
  # attribute: "description", # required, accepts description, name, loadPermission, productCodes
14049
14124
  # })
14050
14125
  #
@@ -14135,7 +14210,7 @@ module Aws::EC2
14135
14210
  #
14136
14211
  # resp = client.describe_fpga_images({
14137
14212
  # dry_run: false,
14138
- # fpga_image_ids: ["String"],
14213
+ # fpga_image_ids: ["FpgaImageId"],
14139
14214
  # owners: ["String"],
14140
14215
  # filters: [
14141
14216
  # {
@@ -14253,7 +14328,7 @@ module Aws::EC2
14253
14328
  # max_results: 1,
14254
14329
  # min_duration: 1,
14255
14330
  # next_token: "String",
14256
- # offering_id: "String",
14331
+ # offering_id: "OfferingId",
14257
14332
  # })
14258
14333
  #
14259
14334
  # @example Response structure
@@ -14328,7 +14403,7 @@ module Aws::EC2
14328
14403
  # values: ["String"],
14329
14404
  # },
14330
14405
  # ],
14331
- # host_reservation_id_set: ["String"],
14406
+ # host_reservation_id_set: ["HostReservationId"],
14332
14407
  # max_results: 1,
14333
14408
  # next_token: "String",
14334
14409
  # })
@@ -14427,7 +14502,7 @@ module Aws::EC2
14427
14502
  # values: ["String"],
14428
14503
  # },
14429
14504
  # ],
14430
- # host_ids: ["String"],
14505
+ # host_ids: ["DedicatedHostId"],
14431
14506
  # max_results: 1,
14432
14507
  # next_token: "String",
14433
14508
  # })
@@ -14531,7 +14606,7 @@ module Aws::EC2
14531
14606
  # @example Request syntax with placeholder values
14532
14607
  #
14533
14608
  # resp = client.describe_iam_instance_profile_associations({
14534
- # association_ids: ["String"],
14609
+ # association_ids: ["IamInstanceProfileAssociationId"],
14535
14610
  # filters: [
14536
14611
  # {
14537
14612
  # name: "String",
@@ -14751,7 +14826,7 @@ module Aws::EC2
14751
14826
  #
14752
14827
  # resp = client.describe_image_attribute({
14753
14828
  # attribute: "description", # required, accepts description, kernel, ramdisk, launchPermission, productCodes, blockDeviceMapping, sriovNetSupport
14754
- # image_id: "String", # required
14829
+ # image_id: "ImageId", # required
14755
14830
  # dry_run: false,
14756
14831
  # })
14757
14832
  #
@@ -14973,7 +15048,7 @@ module Aws::EC2
14973
15048
  # values: ["String"],
14974
15049
  # },
14975
15050
  # ],
14976
- # image_ids: ["String"],
15051
+ # image_ids: ["ImageId"],
14977
15052
  # owners: ["String"],
14978
15053
  # dry_run: false,
14979
15054
  # })
@@ -15069,7 +15144,7 @@ module Aws::EC2
15069
15144
  # values: ["String"],
15070
15145
  # },
15071
15146
  # ],
15072
- # import_task_ids: ["String"],
15147
+ # import_task_ids: ["ImportImageTaskId"],
15073
15148
  # max_results: 1,
15074
15149
  # next_token: "String",
15075
15150
  # })
@@ -15154,7 +15229,7 @@ module Aws::EC2
15154
15229
  # values: ["String"],
15155
15230
  # },
15156
15231
  # ],
15157
- # import_task_ids: ["String"],
15232
+ # import_task_ids: ["ImportSnapshotTaskId"],
15158
15233
  # max_results: 1,
15159
15234
  # next_token: "String",
15160
15235
  # })
@@ -15303,7 +15378,7 @@ module Aws::EC2
15303
15378
  # resp = client.describe_instance_attribute({
15304
15379
  # attribute: "instanceType", # required, accepts instanceType, kernel, ramdisk, userData, disableApiTermination, instanceInitiatedShutdownBehavior, rootDeviceName, blockDeviceMapping, productCodes, sourceDestCheck, groupSet, ebsOptimized, sriovNetSupport, enaSupport
15305
15380
  # dry_run: false,
15306
- # instance_id: "String", # required
15381
+ # instance_id: "InstanceId", # required
15307
15382
  # })
15308
15383
  #
15309
15384
  # @example Response structure
@@ -15417,7 +15492,7 @@ module Aws::EC2
15417
15492
  # values: ["String"],
15418
15493
  # },
15419
15494
  # ],
15420
- # instance_ids: ["String"],
15495
+ # instance_ids: ["InstanceId"],
15421
15496
  # max_results: 1,
15422
15497
  # next_token: "String",
15423
15498
  # })
@@ -15602,7 +15677,7 @@ module Aws::EC2
15602
15677
  # values: ["String"],
15603
15678
  # },
15604
15679
  # ],
15605
- # instance_ids: ["String"],
15680
+ # instance_ids: ["InstanceId"],
15606
15681
  # max_results: 1,
15607
15682
  # next_token: "String",
15608
15683
  # dry_run: false,
@@ -16295,7 +16370,7 @@ module Aws::EC2
16295
16370
  # values: ["String"],
16296
16371
  # },
16297
16372
  # ],
16298
- # instance_ids: ["String"],
16373
+ # instance_ids: ["InstanceId"],
16299
16374
  # dry_run: false,
16300
16375
  # max_results: 1,
16301
16376
  # next_token: "String",
@@ -16528,7 +16603,7 @@ module Aws::EC2
16528
16603
  # },
16529
16604
  # ],
16530
16605
  # dry_run: false,
16531
- # internet_gateway_ids: ["String"],
16606
+ # internet_gateway_ids: ["InternetGatewayId"],
16532
16607
  # next_token: "String",
16533
16608
  # max_results: 1,
16534
16609
  # })
@@ -16595,7 +16670,7 @@ module Aws::EC2
16595
16670
  # @example Request syntax with placeholder values
16596
16671
  #
16597
16672
  # resp = client.describe_ipv_6_pools({
16598
- # pool_ids: ["String"],
16673
+ # pool_ids: ["Ipv6PoolEc2Id"],
16599
16674
  # next_token: "NextToken",
16600
16675
  # max_results: 1,
16601
16676
  # dry_run: false,
@@ -16692,8 +16767,8 @@ module Aws::EC2
16692
16767
  # values: ["String"],
16693
16768
  # },
16694
16769
  # ],
16695
- # key_names: ["String"],
16696
- # key_pair_ids: ["String"],
16770
+ # key_names: ["KeyPairName"],
16771
+ # key_pair_ids: ["KeyPairId"],
16697
16772
  # dry_run: false,
16698
16773
  # })
16699
16774
  #
@@ -16842,7 +16917,7 @@ module Aws::EC2
16842
16917
  #
16843
16918
  # resp = client.describe_launch_template_versions({
16844
16919
  # dry_run: false,
16845
- # launch_template_id: "String",
16920
+ # launch_template_id: "LaunchTemplateId",
16846
16921
  # launch_template_name: "LaunchTemplateName",
16847
16922
  # versions: ["String"],
16848
16923
  # min_version: "String",
@@ -16917,7 +16992,7 @@ module Aws::EC2
16917
16992
  # resp.launch_template_versions[0].launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
16918
16993
  # resp.launch_template_versions[0].launch_template_data.user_data #=> String
16919
16994
  # resp.launch_template_versions[0].launch_template_data.tag_specifications #=> Array
16920
- # resp.launch_template_versions[0].launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
16995
+ # resp.launch_template_versions[0].launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
16921
16996
  # resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags #=> Array
16922
16997
  # resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags[0].key #=> String
16923
16998
  # resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags[0].value #=> String
@@ -17032,7 +17107,7 @@ module Aws::EC2
17032
17107
  #
17033
17108
  # resp = client.describe_launch_templates({
17034
17109
  # dry_run: false,
17035
- # launch_template_ids: ["String"],
17110
+ # launch_template_ids: ["LaunchTemplateId"],
17036
17111
  # launch_template_names: ["LaunchTemplateName"],
17037
17112
  # filters: [
17038
17113
  # {
@@ -17098,7 +17173,7 @@ module Aws::EC2
17098
17173
  # @example Request syntax with placeholder values
17099
17174
  #
17100
17175
  # resp = client.describe_local_gateway_route_table_virtual_interface_group_associations({
17101
- # local_gateway_route_table_virtual_interface_group_association_ids: ["String"],
17176
+ # local_gateway_route_table_virtual_interface_group_association_ids: ["LocalGatewayRouteTableVirtualInterfaceGroupAssociationId"],
17102
17177
  # filters: [
17103
17178
  # {
17104
17179
  # name: "String",
@@ -17163,7 +17238,7 @@ module Aws::EC2
17163
17238
  # @example Request syntax with placeholder values
17164
17239
  #
17165
17240
  # resp = client.describe_local_gateway_route_table_vpc_associations({
17166
- # local_gateway_route_table_vpc_association_ids: ["String"],
17241
+ # local_gateway_route_table_vpc_association_ids: ["LocalGatewayRouteTableVpcAssociationId"],
17167
17242
  # filters: [
17168
17243
  # {
17169
17244
  # name: "String",
@@ -17229,7 +17304,7 @@ module Aws::EC2
17229
17304
  # @example Request syntax with placeholder values
17230
17305
  #
17231
17306
  # resp = client.describe_local_gateway_route_tables({
17232
- # local_gateway_route_table_ids: ["String"],
17307
+ # local_gateway_route_table_ids: ["LocalGatewayRoutetableId"],
17233
17308
  # filters: [
17234
17309
  # {
17235
17310
  # name: "String",
@@ -17292,7 +17367,7 @@ module Aws::EC2
17292
17367
  # @example Request syntax with placeholder values
17293
17368
  #
17294
17369
  # resp = client.describe_local_gateway_virtual_interface_groups({
17295
- # local_gateway_virtual_interface_group_ids: ["String"],
17370
+ # local_gateway_virtual_interface_group_ids: ["LocalGatewayVirtualInterfaceGroupId"],
17296
17371
  # filters: [
17297
17372
  # {
17298
17373
  # name: "String",
@@ -17355,7 +17430,7 @@ module Aws::EC2
17355
17430
  # @example Request syntax with placeholder values
17356
17431
  #
17357
17432
  # resp = client.describe_local_gateway_virtual_interfaces({
17358
- # local_gateway_virtual_interface_ids: ["String"],
17433
+ # local_gateway_virtual_interface_ids: ["LocalGatewayVirtualInterfaceId"],
17359
17434
  # filters: [
17360
17435
  # {
17361
17436
  # name: "String",
@@ -17422,7 +17497,7 @@ module Aws::EC2
17422
17497
  # @example Request syntax with placeholder values
17423
17498
  #
17424
17499
  # resp = client.describe_local_gateways({
17425
- # local_gateway_ids: ["String"],
17500
+ # local_gateway_ids: ["LocalGatewayId"],
17426
17501
  # filters: [
17427
17502
  # {
17428
17503
  # name: "String",
@@ -17630,7 +17705,7 @@ module Aws::EC2
17630
17705
  # },
17631
17706
  # ],
17632
17707
  # max_results: 1,
17633
- # nat_gateway_ids: ["String"],
17708
+ # nat_gateway_ids: ["NatGatewayId"],
17634
17709
  # next_token: "String",
17635
17710
  # })
17636
17711
  #
@@ -17813,7 +17888,7 @@ module Aws::EC2
17813
17888
  # },
17814
17889
  # ],
17815
17890
  # dry_run: false,
17816
- # network_acl_ids: ["String"],
17891
+ # network_acl_ids: ["NetworkAclId"],
17817
17892
  # next_token: "String",
17818
17893
  # max_results: 1,
17819
17894
  # })
@@ -17960,7 +18035,7 @@ module Aws::EC2
17960
18035
  # resp = client.describe_network_interface_attribute({
17961
18036
  # attribute: "description", # accepts description, groupSet, sourceDestCheck, attachment
17962
18037
  # dry_run: false,
17963
- # network_interface_id: "String", # required
18038
+ # network_interface_id: "NetworkInterfaceId", # required
17964
18039
  # })
17965
18040
  #
17966
18041
  # @example Response structure
@@ -18026,7 +18101,7 @@ module Aws::EC2
18026
18101
  # @example Request syntax with placeholder values
18027
18102
  #
18028
18103
  # resp = client.describe_network_interface_permissions({
18029
- # network_interface_permission_ids: ["String"],
18104
+ # network_interface_permission_ids: ["NetworkInterfacePermissionId"],
18030
18105
  # filters: [
18031
18106
  # {
18032
18107
  # name: "String",
@@ -18273,7 +18348,7 @@ module Aws::EC2
18273
18348
  # },
18274
18349
  # ],
18275
18350
  # dry_run: false,
18276
- # network_interface_ids: ["String"],
18351
+ # network_interface_ids: ["NetworkInterfaceId"],
18277
18352
  # next_token: "String",
18278
18353
  # max_results: 1,
18279
18354
  # })
@@ -18384,8 +18459,8 @@ module Aws::EC2
18384
18459
  # },
18385
18460
  # ],
18386
18461
  # dry_run: false,
18387
- # group_names: ["String"],
18388
- # group_ids: ["String"],
18462
+ # group_names: ["PlacementGroupName"],
18463
+ # group_ids: ["PlacementGroupId"],
18389
18464
  # })
18390
18465
  #
18391
18466
  # @example Response structure
@@ -18458,7 +18533,7 @@ module Aws::EC2
18458
18533
  # ],
18459
18534
  # max_results: 1,
18460
18535
  # next_token: "String",
18461
- # prefix_list_ids: ["String"],
18536
+ # prefix_list_ids: ["PrefixListResourceId"],
18462
18537
  # })
18463
18538
  #
18464
18539
  # @example Response structure
@@ -18593,7 +18668,7 @@ module Aws::EC2
18593
18668
  # @example Request syntax with placeholder values
18594
18669
  #
18595
18670
  # resp = client.describe_public_ipv_4_pools({
18596
- # pool_ids: ["String"],
18671
+ # pool_ids: ["Ipv4PoolEc2Id"],
18597
18672
  # next_token: "NextToken",
18598
18673
  # max_results: 1,
18599
18674
  # filters: [
@@ -18858,7 +18933,7 @@ module Aws::EC2
18858
18933
  # },
18859
18934
  # ],
18860
18935
  # offering_class: "standard", # accepts standard, convertible
18861
- # reserved_instances_ids: ["String"],
18936
+ # reserved_instances_ids: ["ReservationId"],
18862
18937
  # dry_run: false,
18863
18938
  # offering_type: "Heavy Utilization", # accepts Heavy Utilization, Medium Utilization, Light Utilization, No Upfront, Partial Upfront, All Upfront
18864
18939
  # })
@@ -18958,8 +19033,8 @@ module Aws::EC2
18958
19033
  # values: ["String"],
18959
19034
  # },
18960
19035
  # ],
18961
- # reserved_instances_id: "String",
18962
- # reserved_instances_listing_id: "String",
19036
+ # reserved_instances_id: "ReservationId",
19037
+ # reserved_instances_listing_id: "ReservedInstancesListingId",
18963
19038
  # })
18964
19039
  #
18965
19040
  # @example Response structure
@@ -19064,7 +19139,7 @@ module Aws::EC2
19064
19139
  # values: ["String"],
19065
19140
  # },
19066
19141
  # ],
19067
- # reserved_instances_modification_ids: ["String"],
19142
+ # reserved_instances_modification_ids: ["ReservedInstancesModificationId"],
19068
19143
  # next_token: "String",
19069
19144
  # })
19070
19145
  #
@@ -19255,7 +19330,7 @@ module Aws::EC2
19255
19330
  # min_duration: 1,
19256
19331
  # offering_class: "standard", # accepts standard, convertible
19257
19332
  # product_description: "Linux/UNIX", # accepts Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC)
19258
- # reserved_instances_offering_ids: ["String"],
19333
+ # reserved_instances_offering_ids: ["ReservedInstancesOfferingId"],
19259
19334
  # dry_run: false,
19260
19335
  # instance_tenancy: "default", # accepts default, dedicated, host
19261
19336
  # max_results: 1,
@@ -19455,7 +19530,7 @@ module Aws::EC2
19455
19530
  # },
19456
19531
  # ],
19457
19532
  # dry_run: false,
19458
- # route_table_ids: ["String"],
19533
+ # route_table_ids: ["RouteTableId"],
19459
19534
  # next_token: "String",
19460
19535
  # max_results: 1,
19461
19536
  # })
@@ -19768,7 +19843,7 @@ module Aws::EC2
19768
19843
  # ],
19769
19844
  # max_results: 1,
19770
19845
  # next_token: "String",
19771
- # scheduled_instance_ids: ["String"],
19846
+ # scheduled_instance_ids: ["ScheduledInstanceId"],
19772
19847
  # slot_start_time_range: {
19773
19848
  # earliest_time: Time.now,
19774
19849
  # latest_time: Time.now,
@@ -19852,7 +19927,7 @@ module Aws::EC2
19852
19927
  #
19853
19928
  # resp = client.describe_security_group_references({
19854
19929
  # dry_run: false,
19855
- # group_id: ["String"], # required
19930
+ # group_id: ["SecurityGroupId"], # required
19856
19931
  # })
19857
19932
  #
19858
19933
  # @example Response structure
@@ -20043,7 +20118,7 @@ module Aws::EC2
20043
20118
  # },
20044
20119
  # ],
20045
20120
  # group_ids: ["String"],
20046
- # group_names: ["String"],
20121
+ # group_names: ["SecurityGroupName"],
20047
20122
  # dry_run: false,
20048
20123
  # next_token: "String",
20049
20124
  # max_results: 1,
@@ -20163,7 +20238,7 @@ module Aws::EC2
20163
20238
  #
20164
20239
  # resp = client.describe_snapshot_attribute({
20165
20240
  # attribute: "productCodes", # required, accepts productCodes, createVolumePermission
20166
- # snapshot_id: "String", # required
20241
+ # snapshot_id: "SnapshotId", # required
20167
20242
  # dry_run: false,
20168
20243
  # })
20169
20244
  #
@@ -20401,7 +20476,7 @@ module Aws::EC2
20401
20476
  # next_token: "String",
20402
20477
  # owner_ids: ["String"],
20403
20478
  # restorable_by_user_ids: ["String"],
20404
- # snapshot_ids: ["String"],
20479
+ # snapshot_ids: ["SnapshotId"],
20405
20480
  # dry_run: false,
20406
20481
  # })
20407
20482
  #
@@ -20548,7 +20623,7 @@ module Aws::EC2
20548
20623
  # dry_run: false,
20549
20624
  # max_results: 1,
20550
20625
  # next_token: "String",
20551
- # spot_fleet_request_id: "String", # required
20626
+ # spot_fleet_request_id: "SpotFleetRequestId", # required
20552
20627
  # })
20553
20628
  #
20554
20629
  # @example Response structure
@@ -20667,7 +20742,7 @@ module Aws::EC2
20667
20742
  # event_type: "instanceChange", # accepts instanceChange, fleetRequestChange, error, information
20668
20743
  # max_results: 1,
20669
20744
  # next_token: "String",
20670
- # spot_fleet_request_id: "String", # required
20745
+ # spot_fleet_request_id: "SpotFleetRequestId", # required
20671
20746
  # start_time: Time.now, # required
20672
20747
  # })
20673
20748
  #
@@ -20783,7 +20858,7 @@ module Aws::EC2
20783
20858
  # dry_run: false,
20784
20859
  # max_results: 1,
20785
20860
  # next_token: "String",
20786
- # spot_fleet_request_ids: ["String"],
20861
+ # spot_fleet_request_ids: ["SpotFleetRequestId"],
20787
20862
  # })
20788
20863
  #
20789
20864
  # @example Response structure
@@ -20850,7 +20925,7 @@ module Aws::EC2
20850
20925
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].user_data #=> String
20851
20926
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].weighted_capacity #=> Float
20852
20927
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications #=> Array
20853
- # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
20928
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
20854
20929
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags #=> Array
20855
20930
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags[0].key #=> String
20856
20931
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags[0].value #=> String
@@ -20882,7 +20957,7 @@ module Aws::EC2
20882
20957
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.load_balancers_config.target_groups_config.target_groups[0].arn #=> String
20883
20958
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.instance_pools_to_use_count #=> Integer
20884
20959
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications #=> Array
20885
- # resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
20960
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
20886
20961
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].tags #=> Array
20887
20962
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].tags[0].key #=> String
20888
20963
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].tags[0].value #=> String
@@ -21130,7 +21205,7 @@ module Aws::EC2
21130
21205
  # },
21131
21206
  # ],
21132
21207
  # dry_run: false,
21133
- # spot_instance_request_ids: ["String"],
21208
+ # spot_instance_request_ids: ["SpotInstanceRequestId"],
21134
21209
  # next_token: "String",
21135
21210
  # max_results: 1,
21136
21211
  # })
@@ -21578,7 +21653,7 @@ module Aws::EC2
21578
21653
  # values: ["String"],
21579
21654
  # },
21580
21655
  # ],
21581
- # subnet_ids: ["String"],
21656
+ # subnet_ids: ["SubnetId"],
21582
21657
  # dry_run: false,
21583
21658
  # next_token: "String",
21584
21659
  # max_results: 1,
@@ -21645,9 +21720,10 @@ module Aws::EC2
21645
21720
  # `dedicated-host` \| `dhcp-options` \| `elastic-ip` \| `fleet` \|
21646
21721
  # `fpga-image` \| `image` \| `instance` \| `host-reservation` \|
21647
21722
  # `internet-gateway` \| `launch-template` \| `natgateway` \|
21648
- # `network-acl` \| `network-interface` \| `reserved-instances` \|
21649
- # `route-table` \| `security-group` \| `snapshot` \|
21650
- # `spot-instances-request` \| `subnet` \| `volume` \| `vpc` \|
21723
+ # `network-acl` \| `network-interface` \| `placement-group` \|
21724
+ # `reserved-instances` \| `route-table` \| `security-group` \|
21725
+ # `snapshot` \| `spot-instances-request` \| `subnet` \| `volume` \|
21726
+ # `vpc` \| `vpc-endpoint` \| `vpc-endpoint-service` \|
21651
21727
  # `vpc-peering-connection` \| `vpn-connection` \| `vpn-gateway`).
21652
21728
  #
21653
21729
  # * `tag`\:&lt;key&gt; - The key/value combination of the tag. For
@@ -21723,7 +21799,7 @@ module Aws::EC2
21723
21799
  # resp.tags #=> Array
21724
21800
  # resp.tags[0].key #=> String
21725
21801
  # resp.tags[0].resource_id #=> String
21726
- # resp.tags[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
21802
+ # resp.tags[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
21727
21803
  # resp.tags[0].value #=> String
21728
21804
  #
21729
21805
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTags AWS API Documentation
@@ -21769,7 +21845,7 @@ module Aws::EC2
21769
21845
  # @example Request syntax with placeholder values
21770
21846
  #
21771
21847
  # resp = client.describe_traffic_mirror_filters({
21772
- # traffic_mirror_filter_ids: ["String"],
21848
+ # traffic_mirror_filter_ids: ["TrafficMirrorFilterId"],
21773
21849
  # dry_run: false,
21774
21850
  # filters: [
21775
21851
  # {
@@ -21883,7 +21959,7 @@ module Aws::EC2
21883
21959
  # @example Request syntax with placeholder values
21884
21960
  #
21885
21961
  # resp = client.describe_traffic_mirror_sessions({
21886
- # traffic_mirror_session_ids: ["String"],
21962
+ # traffic_mirror_session_ids: ["TrafficMirrorSessionId"],
21887
21963
  # dry_run: false,
21888
21964
  # filters: [
21889
21965
  # {
@@ -21964,7 +22040,7 @@ module Aws::EC2
21964
22040
  # @example Request syntax with placeholder values
21965
22041
  #
21966
22042
  # resp = client.describe_traffic_mirror_targets({
21967
- # traffic_mirror_target_ids: ["String"],
22043
+ # traffic_mirror_target_ids: ["TrafficMirrorTargetId"],
21968
22044
  # dry_run: false,
21969
22045
  # filters: [
21970
22046
  # {
@@ -22056,7 +22132,7 @@ module Aws::EC2
22056
22132
  # @example Request syntax with placeholder values
22057
22133
  #
22058
22134
  # resp = client.describe_transit_gateway_attachments({
22059
- # transit_gateway_attachment_ids: ["String"],
22135
+ # transit_gateway_attachment_ids: ["TransitGatewayAttachmentId"],
22060
22136
  # filters: [
22061
22137
  # {
22062
22138
  # name: "String",
@@ -22196,7 +22272,7 @@ module Aws::EC2
22196
22272
  # @example Request syntax with placeholder values
22197
22273
  #
22198
22274
  # resp = client.describe_transit_gateway_peering_attachments({
22199
- # transit_gateway_attachment_ids: ["String"],
22275
+ # transit_gateway_attachment_ids: ["TransitGatewayAttachmentId"],
22200
22276
  # filters: [
22201
22277
  # {
22202
22278
  # name: "String",
@@ -22361,7 +22437,7 @@ module Aws::EC2
22361
22437
  # @example Request syntax with placeholder values
22362
22438
  #
22363
22439
  # resp = client.describe_transit_gateway_vpc_attachments({
22364
- # transit_gateway_attachment_ids: ["String"],
22440
+ # transit_gateway_attachment_ids: ["TransitGatewayAttachmentId"],
22365
22441
  # filters: [
22366
22442
  # {
22367
22443
  # name: "String",
@@ -22467,7 +22543,7 @@ module Aws::EC2
22467
22543
  # @example Request syntax with placeholder values
22468
22544
  #
22469
22545
  # resp = client.describe_transit_gateways({
22470
- # transit_gateway_ids: ["String"],
22546
+ # transit_gateway_ids: ["TransitGatewayId"],
22471
22547
  # filters: [
22472
22548
  # {
22473
22549
  # name: "String",
@@ -22561,7 +22637,7 @@ module Aws::EC2
22561
22637
  #
22562
22638
  # resp = client.describe_volume_attribute({
22563
22639
  # attribute: "autoEnableIO", # required, accepts autoEnableIO, productCodes
22564
- # volume_id: "String", # required
22640
+ # volume_id: "VolumeId", # required
22565
22641
  # dry_run: false,
22566
22642
  # })
22567
22643
  #
@@ -22767,7 +22843,7 @@ module Aws::EC2
22767
22843
  # ],
22768
22844
  # max_results: 1,
22769
22845
  # next_token: "String",
22770
- # volume_ids: ["String"],
22846
+ # volume_ids: ["VolumeId"],
22771
22847
  # dry_run: false,
22772
22848
  # })
22773
22849
  #
@@ -22788,11 +22864,15 @@ module Aws::EC2
22788
22864
  # resp.volume_statuses[0].events[0].event_type #=> String
22789
22865
  # resp.volume_statuses[0].events[0].not_after #=> Time
22790
22866
  # resp.volume_statuses[0].events[0].not_before #=> Time
22867
+ # resp.volume_statuses[0].events[0].instance_id #=> String
22791
22868
  # resp.volume_statuses[0].volume_id #=> String
22792
22869
  # resp.volume_statuses[0].volume_status.details #=> Array
22793
22870
  # resp.volume_statuses[0].volume_status.details[0].name #=> String, one of "io-enabled", "io-performance"
22794
22871
  # resp.volume_statuses[0].volume_status.details[0].status #=> String
22795
22872
  # resp.volume_statuses[0].volume_status.status #=> String, one of "ok", "impaired", "insufficient-data"
22873
+ # resp.volume_statuses[0].attachment_statuses #=> Array
22874
+ # resp.volume_statuses[0].attachment_statuses[0].io_performance #=> String
22875
+ # resp.volume_statuses[0].attachment_statuses[0].instance_id #=> String
22796
22876
  #
22797
22877
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus AWS API Documentation
22798
22878
  #
@@ -22846,6 +22926,9 @@ module Aws::EC2
22846
22926
  # * `encrypted` - Indicates whether the volume is encrypted (`true` \|
22847
22927
  # `false`)
22848
22928
  #
22929
+ # * `multi-attach-enabled` - Indicates whether the volume is enabled for
22930
+ # Multi-Attach (`true` \| `false`)
22931
+ #
22849
22932
  # * `fast-restored` - Indicates whether the volume was created from a
22850
22933
  # snapshot that is enabled for fast snapshot restore (`true` \|
22851
22934
  # `false`).
@@ -22997,7 +23080,7 @@ module Aws::EC2
22997
23080
  # values: ["String"],
22998
23081
  # },
22999
23082
  # ],
23000
- # volume_ids: ["String"],
23083
+ # volume_ids: ["VolumeId"],
23001
23084
  # dry_run: false,
23002
23085
  # max_results: 1,
23003
23086
  # next_token: "String",
@@ -23028,6 +23111,7 @@ module Aws::EC2
23028
23111
  # resp.volumes[0].tags[0].value #=> String
23029
23112
  # resp.volumes[0].volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
23030
23113
  # resp.volumes[0].fast_restored #=> Boolean
23114
+ # resp.volumes[0].multi_attach_enabled #=> Boolean
23031
23115
  # resp.next_token #=> String
23032
23116
  #
23033
23117
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumes AWS API Documentation
@@ -23071,9 +23155,11 @@ module Aws::EC2
23071
23155
  # described.
23072
23156
  #
23073
23157
  # @option params [Array<Types::Filter>] :filters
23074
- # The filters. Supported filters: `volume-id`, `modification-state`,
23075
- # `target-size`, `target-iops`, `target-volume-type`, `original-size`,
23076
- # `original-iops`, `original-volume-type`, `start-time`.
23158
+ # The filters. Supported filters: `volume-id` \| `modification-state` \|
23159
+ # `target-size` \| `target-iops` \| `target-volume-type` \|
23160
+ # `original-size` \| `original-iops` \| `original-volume-type` \|
23161
+ # `start-time` \| `originalMultiAttachEnabled` \|
23162
+ # `targetMultiAttachEnabled`.
23077
23163
  #
23078
23164
  # @option params [String] :next_token
23079
23165
  # The `nextToken` value returned by a previous paginated request.
@@ -23091,7 +23177,7 @@ module Aws::EC2
23091
23177
  #
23092
23178
  # resp = client.describe_volumes_modifications({
23093
23179
  # dry_run: false,
23094
- # volume_ids: ["String"],
23180
+ # volume_ids: ["VolumeId"],
23095
23181
  # filters: [
23096
23182
  # {
23097
23183
  # name: "String",
@@ -23252,7 +23338,7 @@ module Aws::EC2
23252
23338
  # },
23253
23339
  # ],
23254
23340
  # dry_run: false,
23255
- # vpc_ids: ["String"],
23341
+ # vpc_ids: ["VpcId"],
23256
23342
  # })
23257
23343
  #
23258
23344
  # @example Response structure
@@ -23306,7 +23392,7 @@ module Aws::EC2
23306
23392
  # resp = client.describe_vpc_classic_link_dns_support({
23307
23393
  # max_results: 1,
23308
23394
  # next_token: "DescribeVpcClassicLinkDnsSupportNextToken",
23309
- # vpc_ids: ["String"],
23395
+ # vpc_ids: ["VpcId"],
23310
23396
  # })
23311
23397
  #
23312
23398
  # @example Response structure
@@ -23371,7 +23457,7 @@ module Aws::EC2
23371
23457
  #
23372
23458
  # resp = client.describe_vpc_endpoint_connection_notifications({
23373
23459
  # dry_run: false,
23374
- # connection_notification_id: "String",
23460
+ # connection_notification_id: "ConnectionNotificationId",
23375
23461
  # filters: [
23376
23462
  # {
23377
23463
  # name: "String",
@@ -23531,7 +23617,7 @@ module Aws::EC2
23531
23617
  #
23532
23618
  # resp = client.describe_vpc_endpoint_service_configurations({
23533
23619
  # dry_run: false,
23534
- # service_ids: ["String"],
23620
+ # service_ids: ["VpcEndpointServiceId"],
23535
23621
  # filters: [
23536
23622
  # {
23537
23623
  # name: "String",
@@ -23616,7 +23702,7 @@ module Aws::EC2
23616
23702
  #
23617
23703
  # resp = client.describe_vpc_endpoint_service_permissions({
23618
23704
  # dry_run: false,
23619
- # service_id: "String", # required
23705
+ # service_id: "VpcEndpointServiceId", # required
23620
23706
  # filters: [
23621
23707
  # {
23622
23708
  # name: "String",
@@ -23790,7 +23876,7 @@ module Aws::EC2
23790
23876
  #
23791
23877
  # resp = client.describe_vpc_endpoints({
23792
23878
  # dry_run: false,
23793
- # vpc_endpoint_ids: ["String"],
23879
+ # vpc_endpoint_ids: ["VpcEndpointId"],
23794
23880
  # filters: [
23795
23881
  # {
23796
23882
  # name: "String",
@@ -23919,7 +24005,7 @@ module Aws::EC2
23919
24005
  # },
23920
24006
  # ],
23921
24007
  # dry_run: false,
23922
- # vpc_peering_connection_ids: ["String"],
24008
+ # vpc_peering_connection_ids: ["VpcPeeringConnectionId"],
23923
24009
  # next_token: "String",
23924
24010
  # max_results: 1,
23925
24011
  # })
@@ -24082,7 +24168,7 @@ module Aws::EC2
24082
24168
  # values: ["String"],
24083
24169
  # },
24084
24170
  # ],
24085
- # vpc_ids: ["String"],
24171
+ # vpc_ids: ["VpcId"],
24086
24172
  # dry_run: false,
24087
24173
  # next_token: "String",
24088
24174
  # max_results: 1,
@@ -24102,8 +24188,8 @@ module Aws::EC2
24102
24188
  # resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
24103
24189
  # resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
24104
24190
  # resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
24105
- # resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
24106
24191
  # resp.vpcs[0].ipv_6_cidr_block_association_set[0].network_border_group #=> String
24192
+ # resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
24107
24193
  # resp.vpcs[0].cidr_block_association_set #=> Array
24108
24194
  # resp.vpcs[0].cidr_block_association_set[0].association_id #=> String
24109
24195
  # resp.vpcs[0].cidr_block_association_set[0].cidr_block #=> String
@@ -24200,7 +24286,7 @@ module Aws::EC2
24200
24286
  # values: ["String"],
24201
24287
  # },
24202
24288
  # ],
24203
- # vpn_connection_ids: ["String"],
24289
+ # vpn_connection_ids: ["VpnConnectionId"],
24204
24290
  # dry_run: false,
24205
24291
  # })
24206
24292
  #
@@ -24331,7 +24417,7 @@ module Aws::EC2
24331
24417
  # values: ["String"],
24332
24418
  # },
24333
24419
  # ],
24334
- # vpn_gateway_ids: ["String"],
24420
+ # vpn_gateway_ids: ["VpnGatewayId"],
24335
24421
  # dry_run: false,
24336
24422
  # })
24337
24423
  #
@@ -24541,7 +24627,8 @@ module Aws::EC2
24541
24627
  # procedures.
24542
24628
  #
24543
24629
  # @option params [String] :instance_id
24544
- # The ID of the instance.
24630
+ # The ID of the instance. If you are detaching a Multi-Attach enabled
24631
+ # volume, you must specify an instance ID.
24545
24632
  #
24546
24633
  # @option params [required, String] :volume_id
24547
24634
  # The ID of the volume.
@@ -24718,7 +24805,7 @@ module Aws::EC2
24718
24805
  #
24719
24806
  # resp = client.disable_fast_snapshot_restores({
24720
24807
  # availability_zones: ["String"], # required
24721
- # source_snapshot_ids: ["String"], # required
24808
+ # source_snapshot_ids: ["SnapshotId"], # required
24722
24809
  # dry_run: false,
24723
24810
  # })
24724
24811
  #
@@ -24774,8 +24861,8 @@ module Aws::EC2
24774
24861
  # @example Request syntax with placeholder values
24775
24862
  #
24776
24863
  # resp = client.disable_transit_gateway_route_table_propagation({
24777
- # transit_gateway_route_table_id: "String", # required
24778
- # transit_gateway_attachment_id: "String", # required
24864
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
24865
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
24779
24866
  # dry_run: false,
24780
24867
  # })
24781
24868
  #
@@ -24805,6 +24892,12 @@ module Aws::EC2
24805
24892
  # @option params [required, String] :route_table_id
24806
24893
  # The ID of the route table.
24807
24894
  #
24895
+ # @option params [Boolean] :dry_run
24896
+ # Checks whether you have the required permissions for the action,
24897
+ # without actually making the request, and provides an error response.
24898
+ # If you have the required permissions, the error response is
24899
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
24900
+ #
24808
24901
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
24809
24902
  #
24810
24903
  #
@@ -24822,6 +24915,7 @@ module Aws::EC2
24822
24915
  # resp = client.disable_vgw_route_propagation({
24823
24916
  # gateway_id: "VpnGatewayId", # required
24824
24917
  # route_table_id: "RouteTableId", # required
24918
+ # dry_run: false,
24825
24919
  # })
24826
24920
  #
24827
24921
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVgwRoutePropagation AWS API Documentation
@@ -25057,7 +25151,7 @@ module Aws::EC2
25057
25151
  # @example Request syntax with placeholder values
25058
25152
  #
25059
25153
  # resp = client.disassociate_iam_instance_profile({
25060
- # association_id: "String", # required
25154
+ # association_id: "IamInstanceProfileAssociationId", # required
25061
25155
  # })
25062
25156
  #
25063
25157
  # @example Response structure
@@ -25187,8 +25281,8 @@ module Aws::EC2
25187
25281
  # @example Request syntax with placeholder values
25188
25282
  #
25189
25283
  # resp = client.disassociate_transit_gateway_multicast_domain({
25190
- # transit_gateway_multicast_domain_id: "String",
25191
- # transit_gateway_attachment_id: "String",
25284
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
25285
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId",
25192
25286
  # subnet_ids: ["String"],
25193
25287
  # dry_run: false,
25194
25288
  # })
@@ -25234,8 +25328,8 @@ module Aws::EC2
25234
25328
  # @example Request syntax with placeholder values
25235
25329
  #
25236
25330
  # resp = client.disassociate_transit_gateway_route_table({
25237
- # transit_gateway_route_table_id: "String", # required
25238
- # transit_gateway_attachment_id: "String", # required
25331
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
25332
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
25239
25333
  # dry_run: false,
25240
25334
  # })
25241
25335
  #
@@ -25286,8 +25380,8 @@ module Aws::EC2
25286
25380
  # resp.ipv_6_cidr_block_association.ipv_6_cidr_block #=> String
25287
25381
  # resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
25288
25382
  # resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
25289
- # resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
25290
25383
  # resp.ipv_6_cidr_block_association.network_border_group #=> String
25384
+ # resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
25291
25385
  # resp.cidr_block_association.association_id #=> String
25292
25386
  # resp.cidr_block_association.cidr_block #=> String
25293
25387
  # resp.cidr_block_association.cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
@@ -25394,7 +25488,7 @@ module Aws::EC2
25394
25488
  #
25395
25489
  # resp = client.enable_fast_snapshot_restores({
25396
25490
  # availability_zones: ["String"], # required
25397
- # source_snapshot_ids: ["String"], # required
25491
+ # source_snapshot_ids: ["SnapshotId"], # required
25398
25492
  # dry_run: false,
25399
25493
  # })
25400
25494
  #
@@ -25450,8 +25544,8 @@ module Aws::EC2
25450
25544
  # @example Request syntax with placeholder values
25451
25545
  #
25452
25546
  # resp = client.enable_transit_gateway_route_table_propagation({
25453
- # transit_gateway_route_table_id: "String", # required
25454
- # transit_gateway_attachment_id: "String", # required
25547
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
25548
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
25455
25549
  # dry_run: false,
25456
25550
  # })
25457
25551
  #
@@ -25484,6 +25578,12 @@ module Aws::EC2
25484
25578
  # The ID of the route table. The routing table must be associated with
25485
25579
  # the same VPC that the virtual private gateway is attached to.
25486
25580
  #
25581
+ # @option params [Boolean] :dry_run
25582
+ # Checks whether you have the required permissions for the action,
25583
+ # without actually making the request, and provides an error response.
25584
+ # If you have the required permissions, the error response is
25585
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
25586
+ #
25487
25587
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
25488
25588
  #
25489
25589
  #
@@ -25501,6 +25601,7 @@ module Aws::EC2
25501
25601
  # resp = client.enable_vgw_route_propagation({
25502
25602
  # gateway_id: "VpnGatewayId", # required
25503
25603
  # route_table_id: "RouteTableId", # required
25604
+ # dry_run: false,
25504
25605
  # })
25505
25606
  #
25506
25607
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVgwRoutePropagation AWS API Documentation
@@ -25857,7 +25958,7 @@ module Aws::EC2
25857
25958
  # @example Request syntax with placeholder values
25858
25959
  #
25859
25960
  # resp = client.export_transit_gateway_routes({
25860
- # transit_gateway_route_table_id: "String", # required
25961
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
25861
25962
  # filters: [
25862
25963
  # {
25863
25964
  # name: "String",
@@ -25909,7 +26010,7 @@ module Aws::EC2
25909
26010
  # @example Request syntax with placeholder values
25910
26011
  #
25911
26012
  # resp = client.get_associated_ipv_6_pool_cidrs({
25912
- # pool_id: "String", # required
26013
+ # pool_id: "Ipv6PoolEc2Id", # required
25913
26014
  # next_token: "NextToken",
25914
26015
  # max_results: 1,
25915
26016
  # dry_run: false,
@@ -26047,7 +26148,7 @@ module Aws::EC2
26047
26148
  # @example Request syntax with placeholder values
26048
26149
  #
26049
26150
  # resp = client.get_coip_pool_usage({
26050
- # pool_id: "String", # required
26151
+ # pool_id: "CoipPoolId", # required
26051
26152
  # filters: [
26052
26153
  # {
26053
26154
  # name: "String",
@@ -26519,7 +26620,7 @@ module Aws::EC2
26519
26620
  # resp.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
26520
26621
  # resp.launch_template_data.user_data #=> String
26521
26622
  # resp.launch_template_data.tag_specifications #=> Array
26522
- # resp.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
26623
+ # resp.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "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"
26523
26624
  # resp.launch_template_data.tag_specifications[0].tags #=> Array
26524
26625
  # resp.launch_template_data.tag_specifications[0].tags[0].key #=> String
26525
26626
  # resp.launch_template_data.tag_specifications[0].tags[0].value #=> String
@@ -26659,11 +26760,11 @@ module Aws::EC2
26659
26760
  #
26660
26761
  # resp = client.get_reserved_instances_exchange_quote({
26661
26762
  # dry_run: false,
26662
- # reserved_instance_ids: ["String"], # required
26763
+ # reserved_instance_ids: ["ReservationId"], # required
26663
26764
  # target_configurations: [
26664
26765
  # {
26665
26766
  # instance_count: 1,
26666
- # offering_id: "String", # required
26767
+ # offering_id: "ReservedInstancesOfferingId", # required
26667
26768
  # },
26668
26769
  # ],
26669
26770
  # })
@@ -26738,7 +26839,7 @@ module Aws::EC2
26738
26839
  # @example Request syntax with placeholder values
26739
26840
  #
26740
26841
  # resp = client.get_transit_gateway_attachment_propagations({
26741
- # transit_gateway_attachment_id: "String", # required
26842
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
26742
26843
  # filters: [
26743
26844
  # {
26744
26845
  # name: "String",
@@ -26810,7 +26911,7 @@ module Aws::EC2
26810
26911
  # @example Request syntax with placeholder values
26811
26912
  #
26812
26913
  # resp = client.get_transit_gateway_multicast_domain_associations({
26813
- # transit_gateway_multicast_domain_id: "String",
26914
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
26814
26915
  # filters: [
26815
26916
  # {
26816
26917
  # name: "String",
@@ -26878,7 +26979,7 @@ module Aws::EC2
26878
26979
  # @example Request syntax with placeholder values
26879
26980
  #
26880
26981
  # resp = client.get_transit_gateway_route_table_associations({
26881
- # transit_gateway_route_table_id: "String", # required
26982
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
26882
26983
  # filters: [
26883
26984
  # {
26884
26985
  # name: "String",
@@ -26945,7 +27046,7 @@ module Aws::EC2
26945
27046
  # @example Request syntax with placeholder values
26946
27047
  #
26947
27048
  # resp = client.get_transit_gateway_route_table_propagations({
26948
- # transit_gateway_route_table_id: "String", # required
27049
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
26949
27050
  # filters: [
26950
27051
  # {
26951
27052
  # name: "String",
@@ -27174,7 +27275,7 @@ module Aws::EC2
27174
27275
  # description: "String",
27175
27276
  # device_name: "String",
27176
27277
  # format: "String",
27177
- # snapshot_id: "String",
27278
+ # snapshot_id: "SnapshotId",
27178
27279
  # url: "String",
27179
27280
  # user_bucket: {
27180
27281
  # s3_bucket: "String",
@@ -27290,8 +27391,8 @@ module Aws::EC2
27290
27391
  # launch_specification: {
27291
27392
  # additional_info: "String",
27292
27393
  # architecture: "i386", # accepts i386, x86_64, arm64
27293
- # group_ids: ["String"],
27294
- # group_names: ["String"],
27394
+ # group_ids: ["SecurityGroupId"],
27395
+ # group_names: ["SecurityGroupName"],
27295
27396
  # instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
27296
27397
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge
27297
27398
  # monitoring: false,
@@ -27393,7 +27494,7 @@ module Aws::EC2
27393
27494
  #
27394
27495
  # resp = client.import_key_pair({
27395
27496
  # dry_run: false,
27396
- # key_name: "KeyPairName", # required
27497
+ # key_name: "String", # required
27397
27498
  # public_key_material: "data", # required
27398
27499
  # })
27399
27500
  #
@@ -27706,9 +27807,7 @@ module Aws::EC2
27706
27807
  req.send_request(options)
27707
27808
  end
27708
27809
 
27709
- # Modifies the specified Client VPN endpoint. You can only modify an
27710
- # endpoint's server certificate information, client connection logging
27711
- # information, DNS server, and description. Modifying the DNS server
27810
+ # Modifies the specified Client VPN endpoint. Modifying the DNS server
27712
27811
  # resets existing client connections.
27713
27812
  #
27714
27813
  # @option params [required, String] :client_vpn_endpoint_id
@@ -27765,6 +27864,12 @@ module Aws::EC2
27765
27864
  # If you have the required permissions, the error response is
27766
27865
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
27767
27866
  #
27867
+ # @option params [Array<String>] :security_group_ids
27868
+ # The IDs of one or more security groups to apply to the target network.
27869
+ #
27870
+ # @option params [String] :vpc_id
27871
+ # The ID of the VPC to associate with the Client VPN endpoint.
27872
+ #
27768
27873
  # @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
27769
27874
  #
27770
27875
  # * {Types::ModifyClientVpnEndpointResult#return #return} => Boolean
@@ -27787,6 +27892,8 @@ module Aws::EC2
27787
27892
  # description: "String",
27788
27893
  # split_tunnel: false,
27789
27894
  # dry_run: false,
27895
+ # security_group_ids: ["String"],
27896
+ # vpc_id: "VpcId",
27790
27897
  # })
27791
27898
  #
27792
27899
  # @example Response structure
@@ -28170,7 +28277,7 @@ module Aws::EC2
28170
28277
  #
28171
28278
  # resp = client.modify_hosts({
28172
28279
  # auto_placement: "on", # accepts on, off
28173
- # host_ids: ["String"], # required
28280
+ # host_ids: ["DedicatedHostId"], # required
28174
28281
  # host_recovery: "on", # accepts on, off
28175
28282
  # instance_type: "String",
28176
28283
  # instance_family: "String",
@@ -28710,7 +28817,7 @@ module Aws::EC2
28710
28817
  # capacity_reservation_specification: { # required
28711
28818
  # capacity_reservation_preference: "open", # accepts open, none
28712
28819
  # capacity_reservation_target: {
28713
- # capacity_reservation_id: "String",
28820
+ # capacity_reservation_id: "CapacityReservationId",
28714
28821
  # },
28715
28822
  # },
28716
28823
  # dry_run: false,
@@ -28770,7 +28877,7 @@ module Aws::EC2
28770
28877
  # client_token: "String",
28771
28878
  # instance_credit_specifications: [ # required
28772
28879
  # {
28773
- # instance_id: "String",
28880
+ # instance_id: "InstanceId",
28774
28881
  # cpu_credits: "String",
28775
28882
  # },
28776
28883
  # ],
@@ -28907,7 +29014,7 @@ module Aws::EC2
28907
29014
  # @example Request syntax with placeholder values
28908
29015
  #
28909
29016
  # resp = client.modify_instance_metadata_options({
28910
- # instance_id: "String", # required
29017
+ # instance_id: "InstanceId", # required
28911
29018
  # http_tokens: "optional", # accepts optional, required
28912
29019
  # http_put_response_hop_limit: 1,
28913
29020
  # http_endpoint: "disabled", # accepts disabled, enabled
@@ -29198,12 +29305,12 @@ module Aws::EC2
29198
29305
  #
29199
29306
  # resp = client.modify_network_interface_attribute({
29200
29307
  # attachment: {
29201
- # attachment_id: "String",
29308
+ # attachment_id: "NetworkInterfaceAttachmentId",
29202
29309
  # delete_on_termination: false,
29203
29310
  # },
29204
29311
  # description: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
29205
29312
  # dry_run: false,
29206
- # groups: ["String"],
29313
+ # groups: ["SecurityGroupId"],
29207
29314
  # network_interface_id: "NetworkInterfaceId", # required
29208
29315
  # source_dest_check: {
29209
29316
  # value: false,
@@ -29253,7 +29360,7 @@ module Aws::EC2
29253
29360
  # @example Request syntax with placeholder values
29254
29361
  #
29255
29362
  # resp = client.modify_reserved_instances({
29256
- # reserved_instances_ids: ["String"], # required
29363
+ # reserved_instances_ids: ["ReservationId"], # required
29257
29364
  # client_token: "String",
29258
29365
  # target_configurations: [ # required
29259
29366
  # {
@@ -29379,7 +29486,7 @@ module Aws::EC2
29379
29486
  # },
29380
29487
  # ],
29381
29488
  # },
29382
- # group_names: ["String"],
29489
+ # group_names: ["SecurityGroupName"],
29383
29490
  # operation_type: "add", # accepts add, remove
29384
29491
  # snapshot_id: "SnapshotId", # required
29385
29492
  # user_ids: ["String"],
@@ -29873,9 +29980,9 @@ module Aws::EC2
29873
29980
  # @example Request syntax with placeholder values
29874
29981
  #
29875
29982
  # resp = client.modify_transit_gateway_vpc_attachment({
29876
- # transit_gateway_attachment_id: "String", # required
29877
- # add_subnet_ids: ["String"],
29878
- # remove_subnet_ids: ["String"],
29983
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
29984
+ # add_subnet_ids: ["SubnetId"],
29985
+ # remove_subnet_ids: ["SubnetId"],
29879
29986
  # options: {
29880
29987
  # dns_support: "enable", # accepts enable, disable
29881
29988
  # ipv_6_support: "enable", # accepts enable, disable
@@ -30231,12 +30338,12 @@ module Aws::EC2
30231
30338
  # vpc_endpoint_id: "VpcEndpointId", # required
30232
30339
  # reset_policy: false,
30233
30340
  # policy_document: "String",
30234
- # add_route_table_ids: ["String"],
30235
- # remove_route_table_ids: ["String"],
30236
- # add_subnet_ids: ["String"],
30237
- # remove_subnet_ids: ["String"],
30238
- # add_security_group_ids: ["String"],
30239
- # remove_security_group_ids: ["String"],
30341
+ # add_route_table_ids: ["RouteTableId"],
30342
+ # remove_route_table_ids: ["RouteTableId"],
30343
+ # add_subnet_ids: ["SubnetId"],
30344
+ # remove_subnet_ids: ["SubnetId"],
30345
+ # add_security_group_ids: ["SecurityGroupId"],
30346
+ # remove_security_group_ids: ["SecurityGroupId"],
30240
30347
  # private_dns_enabled: false,
30241
30348
  # })
30242
30349
  #
@@ -30348,7 +30455,7 @@ module Aws::EC2
30348
30455
  #
30349
30456
  # resp = client.modify_vpc_endpoint_service_configuration({
30350
30457
  # dry_run: false,
30351
- # service_id: "ServiceId", # required
30458
+ # service_id: "VpcEndpointServiceId", # required
30352
30459
  # private_dns_name: "String",
30353
30460
  # remove_private_dns_name: false,
30354
30461
  # acceptance_required: false,
@@ -30408,7 +30515,7 @@ module Aws::EC2
30408
30515
  #
30409
30516
  # resp = client.modify_vpc_endpoint_service_permissions({
30410
30517
  # dry_run: false,
30411
- # service_id: "String", # required
30518
+ # service_id: "VpcEndpointServiceId", # required
30412
30519
  # add_allowed_principals: ["String"],
30413
30520
  # remove_allowed_principals: ["String"],
30414
30521
  # })
@@ -30599,9 +30706,9 @@ module Aws::EC2
30599
30706
  # the transit gateway route table.
30600
30707
  #
30601
30708
  # After you perform this operation, the AWS VPN endpoint's IP addresses
30602
- # on the AWS side and the tunnel options remain intact. Your s2slong;
30603
- # connection will be temporarily unavailable for approximately 10
30604
- # minutes while we provision the new endpoints
30709
+ # on the AWS side and the tunnel options remain intact. Your AWS
30710
+ # Site-to-Site VPN connection will be temporarily unavailable for a
30711
+ # brief period while we provision the new endpoints.
30605
30712
  #
30606
30713
  #
30607
30714
  #
@@ -30956,7 +31063,7 @@ module Aws::EC2
30956
31063
  # @example Request syntax with placeholder values
30957
31064
  #
30958
31065
  # resp = client.monitor_instances({
30959
- # instance_ids: ["String"], # required
31066
+ # instance_ids: ["InstanceId"], # required
30960
31067
  # dry_run: false,
30961
31068
  # })
30962
31069
  #
@@ -31246,7 +31353,7 @@ module Aws::EC2
31246
31353
  #
31247
31354
  # resp = client.purchase_reserved_instances_offering({
31248
31355
  # instance_count: 1, # required
31249
- # reserved_instances_offering_id: "String", # required
31356
+ # reserved_instances_offering_id: "ReservedInstancesOfferingId", # required
31250
31357
  # dry_run: false,
31251
31358
  # limit_price: {
31252
31359
  # amount: 1.0,
@@ -31439,7 +31546,7 @@ module Aws::EC2
31439
31546
  # @example Request syntax with placeholder values
31440
31547
  #
31441
31548
  # resp = client.reboot_instances({
31442
- # instance_ids: ["String"], # required
31549
+ # instance_ids: ["InstanceId"], # required
31443
31550
  # dry_run: false,
31444
31551
  # })
31445
31552
  #
@@ -31665,9 +31772,9 @@ module Aws::EC2
31665
31772
  # @example Request syntax with placeholder values
31666
31773
  #
31667
31774
  # resp = client.register_transit_gateway_multicast_group_members({
31668
- # transit_gateway_multicast_domain_id: "String",
31775
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
31669
31776
  # group_ip_address: "String",
31670
- # network_interface_ids: ["String"],
31777
+ # network_interface_ids: ["NetworkInterfaceId"],
31671
31778
  # dry_run: false,
31672
31779
  # })
31673
31780
  #
@@ -31726,9 +31833,9 @@ module Aws::EC2
31726
31833
  # @example Request syntax with placeholder values
31727
31834
  #
31728
31835
  # resp = client.register_transit_gateway_multicast_group_sources({
31729
- # transit_gateway_multicast_domain_id: "String",
31836
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
31730
31837
  # group_ip_address: "String",
31731
- # network_interface_ids: ["String"],
31838
+ # network_interface_ids: ["NetworkInterfaceId"],
31732
31839
  # dry_run: false,
31733
31840
  # })
31734
31841
  #
@@ -31766,7 +31873,7 @@ module Aws::EC2
31766
31873
  # @example Request syntax with placeholder values
31767
31874
  #
31768
31875
  # resp = client.reject_transit_gateway_peering_attachment({
31769
- # transit_gateway_attachment_id: "String", # required
31876
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
31770
31877
  # dry_run: false,
31771
31878
  # })
31772
31879
  #
@@ -31819,7 +31926,7 @@ module Aws::EC2
31819
31926
  # @example Request syntax with placeholder values
31820
31927
  #
31821
31928
  # resp = client.reject_transit_gateway_vpc_attachment({
31822
- # transit_gateway_attachment_id: "String", # required
31929
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
31823
31930
  # dry_run: false,
31824
31931
  # })
31825
31932
  #
@@ -31871,8 +31978,8 @@ module Aws::EC2
31871
31978
  #
31872
31979
  # resp = client.reject_vpc_endpoint_connections({
31873
31980
  # dry_run: false,
31874
- # service_id: "ServiceId", # required
31875
- # vpc_endpoint_ids: ["String"], # required
31981
+ # service_id: "VpcEndpointServiceId", # required
31982
+ # vpc_endpoint_ids: ["VpcEndpointId"], # required
31876
31983
  # })
31877
31984
  #
31878
31985
  # @example Response structure
@@ -32045,7 +32152,7 @@ module Aws::EC2
32045
32152
  # @example Request syntax with placeholder values
32046
32153
  #
32047
32154
  # resp = client.release_hosts({
32048
- # host_ids: ["String"], # required
32155
+ # host_ids: ["DedicatedHostId"], # required
32049
32156
  # })
32050
32157
  #
32051
32158
  # @example Response structure
@@ -32090,7 +32197,7 @@ module Aws::EC2
32090
32197
  # arn: "String",
32091
32198
  # name: "String",
32092
32199
  # },
32093
- # association_id: "String", # required
32200
+ # association_id: "IamInstanceProfileAssociationId", # required
32094
32201
  # })
32095
32202
  #
32096
32203
  # @example Response structure
@@ -32360,12 +32467,12 @@ module Aws::EC2
32360
32467
  # destination_ipv_6_cidr_block: "String",
32361
32468
  # dry_run: false,
32362
32469
  # egress_only_internet_gateway_id: "EgressOnlyInternetGatewayId",
32363
- # gateway_id: "RouteTableGatewayId",
32470
+ # gateway_id: "RouteGatewayId",
32364
32471
  # instance_id: "InstanceId",
32365
32472
  # local_target: false,
32366
32473
  # nat_gateway_id: "NatGatewayId",
32367
32474
  # transit_gateway_id: "TransitGatewayId",
32368
- # local_gateway_id: "String",
32475
+ # local_gateway_id: "LocalGatewayId",
32369
32476
  # network_interface_id: "NetworkInterfaceId",
32370
32477
  # route_table_id: "RouteTableId", # required
32371
32478
  # vpc_peering_connection_id: "VpcPeeringConnectionId",
@@ -32479,8 +32586,8 @@ module Aws::EC2
32479
32586
  #
32480
32587
  # resp = client.replace_transit_gateway_route({
32481
32588
  # destination_cidr_block: "String", # required
32482
- # transit_gateway_route_table_id: "String", # required
32483
- # transit_gateway_attachment_id: "String",
32589
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
32590
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId",
32484
32591
  # blackhole: false,
32485
32592
  # dry_run: false,
32486
32593
  # })
@@ -32571,7 +32678,7 @@ module Aws::EC2
32571
32678
  # description: "String",
32572
32679
  # dry_run: false,
32573
32680
  # end_time: Time.now,
32574
- # instances: ["String"], # required
32681
+ # instances: ["InstanceId"], # required
32575
32682
  # reason_codes: ["instance-stuck-in-state"], # required, accepts instance-stuck-in-state, unresponsive, not-accepting-credentials, password-not-available, performance-network, performance-instance-store, performance-ebs-volume, performance-other, other
32576
32683
  # start_time: Time.now,
32577
32684
  # status: "ok", # required, accepts ok, impaired
@@ -32838,7 +32945,7 @@ module Aws::EC2
32838
32945
  # delete_on_termination: false,
32839
32946
  # description: "String",
32840
32947
  # device_index: 1,
32841
- # groups: ["String"],
32948
+ # groups: ["SecurityGroupId"],
32842
32949
  # ipv_6_address_count: 1,
32843
32950
  # ipv_6_addresses: [
32844
32951
  # {
@@ -32870,7 +32977,7 @@ module Aws::EC2
32870
32977
  # weighted_capacity: 1.0,
32871
32978
  # tag_specifications: [
32872
32979
  # {
32873
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
32980
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
32874
32981
  # tags: [
32875
32982
  # {
32876
32983
  # key: "String",
@@ -32930,7 +33037,7 @@ module Aws::EC2
32930
33037
  # instance_pools_to_use_count: 1,
32931
33038
  # tag_specifications: [
32932
33039
  # {
32933
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
33040
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
32934
33041
  # tags: [
32935
33042
  # {
32936
33043
  # key: "String",
@@ -33126,8 +33233,8 @@ module Aws::EC2
33126
33233
  # instance_count: 1,
33127
33234
  # launch_group: "String",
33128
33235
  # launch_specification: {
33129
- # security_group_ids: ["String"],
33130
- # security_groups: ["String"],
33236
+ # security_group_ids: ["SecurityGroupId"],
33237
+ # security_groups: ["SecurityGroupName"],
33131
33238
  # addressing_type: "String",
33132
33239
  # block_device_mappings: [
33133
33240
  # {
@@ -33150,10 +33257,10 @@ module Aws::EC2
33150
33257
  # arn: "String",
33151
33258
  # name: "String",
33152
33259
  # },
33153
- # image_id: "String",
33260
+ # image_id: "ImageId",
33154
33261
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge
33155
- # kernel_id: "String",
33156
- # key_name: "String",
33262
+ # kernel_id: "KernelId",
33263
+ # key_name: "KeyPairName",
33157
33264
  # monitoring: {
33158
33265
  # enabled: false, # required
33159
33266
  # },
@@ -33163,7 +33270,7 @@ module Aws::EC2
33163
33270
  # delete_on_termination: false,
33164
33271
  # description: "String",
33165
33272
  # device_index: 1,
33166
- # groups: ["String"],
33273
+ # groups: ["SecurityGroupId"],
33167
33274
  # ipv_6_address_count: 1,
33168
33275
  # ipv_6_addresses: [
33169
33276
  # {
@@ -33188,8 +33295,8 @@ module Aws::EC2
33188
33295
  # group_name: "String",
33189
33296
  # tenancy: "default", # accepts default, dedicated, host
33190
33297
  # },
33191
- # ramdisk_id: "String",
33192
- # subnet_id: "String",
33298
+ # ramdisk_id: "RamdiskId",
33299
+ # subnet_id: "SubnetId",
33193
33300
  # user_data: "String",
33194
33301
  # },
33195
33302
  # spot_price: "String",
@@ -33732,7 +33839,7 @@ module Aws::EC2
33732
33839
  #
33733
33840
  # resp = client.revoke_security_group_egress({
33734
33841
  # dry_run: false,
33735
- # group_id: "String", # required
33842
+ # group_id: "SecurityGroupId", # required
33736
33843
  # ip_permissions: [
33737
33844
  # {
33738
33845
  # from_port: 1,
@@ -33871,8 +33978,8 @@ module Aws::EC2
33871
33978
  # resp = client.revoke_security_group_ingress({
33872
33979
  # cidr_ip: "String",
33873
33980
  # from_port: 1,
33874
- # group_id: "String",
33875
- # group_name: "String",
33981
+ # group_id: "SecurityGroupId",
33982
+ # group_name: "SecurityGroupName",
33876
33983
  # ip_permissions: [
33877
33984
  # {
33878
33985
  # from_port: 1,
@@ -34381,7 +34488,7 @@ module Aws::EC2
34381
34488
  # },
34382
34489
  # ],
34383
34490
  # kernel_id: "String",
34384
- # key_name: "String",
34491
+ # key_name: "KeyPairName",
34385
34492
  # max_count: 1, # required
34386
34493
  # min_count: 1, # required
34387
34494
  # monitoring: {
@@ -34398,8 +34505,8 @@ module Aws::EC2
34398
34505
  # host_resource_group_arn: "String",
34399
34506
  # },
34400
34507
  # ramdisk_id: "String",
34401
- # security_group_ids: ["String"],
34402
- # security_groups: ["String"],
34508
+ # security_group_ids: ["SecurityGroupId"],
34509
+ # security_groups: ["SecurityGroupName"],
34403
34510
  # subnet_id: "String",
34404
34511
  # user_data: "String",
34405
34512
  # additional_info: "String",
@@ -34418,7 +34525,7 @@ module Aws::EC2
34418
34525
  # delete_on_termination: false,
34419
34526
  # description: "String",
34420
34527
  # device_index: 1,
34421
- # groups: ["String"],
34528
+ # groups: ["SecurityGroupId"],
34422
34529
  # ipv_6_address_count: 1,
34423
34530
  # ipv_6_addresses: [
34424
34531
  # {
@@ -34452,7 +34559,7 @@ module Aws::EC2
34452
34559
  # ],
34453
34560
  # tag_specifications: [
34454
34561
  # {
34455
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
34562
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, 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
34456
34563
  # tags: [
34457
34564
  # {
34458
34565
  # key: "String",
@@ -34462,7 +34569,7 @@ module Aws::EC2
34462
34569
  # },
34463
34570
  # ],
34464
34571
  # launch_template: {
34465
- # launch_template_id: "String",
34572
+ # launch_template_id: "LaunchTemplateId",
34466
34573
  # launch_template_name: "String",
34467
34574
  # version: "String",
34468
34575
  # },
@@ -34486,7 +34593,7 @@ module Aws::EC2
34486
34593
  # capacity_reservation_specification: {
34487
34594
  # capacity_reservation_preference: "open", # accepts open, none
34488
34595
  # capacity_reservation_target: {
34489
- # capacity_reservation_id: "String",
34596
+ # capacity_reservation_id: "CapacityReservationId",
34490
34597
  # },
34491
34598
  # },
34492
34599
  # hibernation_options: {
@@ -34765,7 +34872,7 @@ module Aws::EC2
34765
34872
  # delete_on_termination: false,
34766
34873
  # encrypted: false,
34767
34874
  # iops: 1,
34768
- # snapshot_id: "String",
34875
+ # snapshot_id: "SnapshotId",
34769
34876
  # volume_size: 1,
34770
34877
  # volume_type: "String",
34771
34878
  # },
@@ -34778,10 +34885,10 @@ module Aws::EC2
34778
34885
  # arn: "String",
34779
34886
  # name: "String",
34780
34887
  # },
34781
- # image_id: "String", # required
34888
+ # image_id: "ImageId", # required
34782
34889
  # instance_type: "String",
34783
- # kernel_id: "String",
34784
- # key_name: "String",
34890
+ # kernel_id: "KernelId",
34891
+ # key_name: "KeyPairName",
34785
34892
  # monitoring: {
34786
34893
  # enabled: false,
34787
34894
  # },
@@ -34791,14 +34898,14 @@ module Aws::EC2
34791
34898
  # delete_on_termination: false,
34792
34899
  # description: "String",
34793
34900
  # device_index: 1,
34794
- # groups: ["String"],
34901
+ # groups: ["SecurityGroupId"],
34795
34902
  # ipv_6_address_count: 1,
34796
34903
  # ipv_6_addresses: [
34797
34904
  # {
34798
34905
  # ipv_6_address: "Ipv6Address",
34799
34906
  # },
34800
34907
  # ],
34801
- # network_interface_id: "String",
34908
+ # network_interface_id: "NetworkInterfaceId",
34802
34909
  # private_ip_address: "String",
34803
34910
  # private_ip_address_configs: [
34804
34911
  # {
@@ -34807,16 +34914,16 @@ module Aws::EC2
34807
34914
  # },
34808
34915
  # ],
34809
34916
  # secondary_private_ip_address_count: 1,
34810
- # subnet_id: "String",
34917
+ # subnet_id: "SubnetId",
34811
34918
  # },
34812
34919
  # ],
34813
34920
  # placement: {
34814
34921
  # availability_zone: "String",
34815
- # group_name: "String",
34922
+ # group_name: "PlacementGroupName",
34816
34923
  # },
34817
- # ramdisk_id: "String",
34818
- # security_group_ids: ["String"],
34819
- # subnet_id: "String",
34924
+ # ramdisk_id: "RamdiskId",
34925
+ # security_group_ids: ["SecurityGroupId"],
34926
+ # subnet_id: "SubnetId",
34820
34927
  # user_data: "String",
34821
34928
  # },
34822
34929
  # scheduled_instance_id: "ScheduledInstanceId", # required
@@ -34866,7 +34973,7 @@ module Aws::EC2
34866
34973
  # @example Request syntax with placeholder values
34867
34974
  #
34868
34975
  # resp = client.search_local_gateway_routes({
34869
- # local_gateway_route_table_id: "String", # required
34976
+ # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
34870
34977
  # filters: [ # required
34871
34978
  # {
34872
34979
  # name: "String",
@@ -34956,7 +35063,7 @@ module Aws::EC2
34956
35063
  # @example Request syntax with placeholder values
34957
35064
  #
34958
35065
  # resp = client.search_transit_gateway_multicast_groups({
34959
- # transit_gateway_multicast_domain_id: "String",
35066
+ # transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
34960
35067
  # filters: [
34961
35068
  # {
34962
35069
  # name: "String",
@@ -35045,7 +35152,7 @@ module Aws::EC2
35045
35152
  # @example Request syntax with placeholder values
35046
35153
  #
35047
35154
  # resp = client.search_transit_gateway_routes({
35048
- # transit_gateway_route_table_id: "String", # required
35155
+ # transit_gateway_route_table_id: "TransitGatewayRouteTableId", # required
35049
35156
  # filters: [ # required
35050
35157
  # {
35051
35158
  # name: "String",
@@ -35206,7 +35313,7 @@ module Aws::EC2
35206
35313
  # @example Request syntax with placeholder values
35207
35314
  #
35208
35315
  # resp = client.start_instances({
35209
- # instance_ids: ["String"], # required
35316
+ # instance_ids: ["InstanceId"], # required
35210
35317
  # additional_info: "String",
35211
35318
  # dry_run: false,
35212
35319
  # })
@@ -35260,7 +35367,7 @@ module Aws::EC2
35260
35367
  #
35261
35368
  # resp = client.start_vpc_endpoint_service_private_dns_verification({
35262
35369
  # dry_run: false,
35263
- # service_id: "ServiceId", # required
35370
+ # service_id: "VpcEndpointServiceId", # required
35264
35371
  # })
35265
35372
  #
35266
35373
  # @example Response structure
@@ -35394,7 +35501,7 @@ module Aws::EC2
35394
35501
  # @example Request syntax with placeholder values
35395
35502
  #
35396
35503
  # resp = client.stop_instances({
35397
- # instance_ids: ["String"], # required
35504
+ # instance_ids: ["InstanceId"], # required
35398
35505
  # hibernate: false,
35399
35506
  # dry_run: false,
35400
35507
  # force: false,
@@ -35555,7 +35662,7 @@ module Aws::EC2
35555
35662
  # @example Request syntax with placeholder values
35556
35663
  #
35557
35664
  # resp = client.terminate_instances({
35558
- # instance_ids: ["String"], # required
35665
+ # instance_ids: ["InstanceId"], # required
35559
35666
  # dry_run: false,
35560
35667
  # })
35561
35668
  #
@@ -35677,7 +35784,7 @@ module Aws::EC2
35677
35784
  # @example Request syntax with placeholder values
35678
35785
  #
35679
35786
  # resp = client.unmonitor_instances({
35680
- # instance_ids: ["String"], # required
35787
+ # instance_ids: ["InstanceId"], # required
35681
35788
  # dry_run: false,
35682
35789
  # })
35683
35790
  #
@@ -35757,8 +35864,8 @@ module Aws::EC2
35757
35864
  #
35758
35865
  # resp = client.update_security_group_rule_descriptions_egress({
35759
35866
  # dry_run: false,
35760
- # group_id: "String",
35761
- # group_name: "String",
35867
+ # group_id: "SecurityGroupId",
35868
+ # group_name: "SecurityGroupName",
35762
35869
  # ip_permissions: [ # required
35763
35870
  # {
35764
35871
  # from_port: 1,
@@ -35871,8 +35978,8 @@ module Aws::EC2
35871
35978
  #
35872
35979
  # resp = client.update_security_group_rule_descriptions_ingress({
35873
35980
  # dry_run: false,
35874
- # group_id: "String",
35875
- # group_name: "String",
35981
+ # group_id: "SecurityGroupId",
35982
+ # group_name: "SecurityGroupName",
35876
35983
  # ip_permissions: [ # required
35877
35984
  # {
35878
35985
  # from_port: 1,
@@ -35982,7 +36089,7 @@ module Aws::EC2
35982
36089
  params: params,
35983
36090
  config: config)
35984
36091
  context[:gem_name] = 'aws-sdk-ec2'
35985
- context[:gem_version] = '1.142.0'
36092
+ context[:gem_version] = '1.147.0'
35986
36093
  Seahorse::Client::Request.new(handlers, context)
35987
36094
  end
35988
36095