aws-sdk-ec2 1.247.0 → 1.248.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,7 @@ module Aws::EC2
53
53
  data[:ip_permissions]
54
54
  end
55
55
 
56
- # The AWS account ID of the owner of the security group.
56
+ # The Amazon Web Services account ID of the owner of the security group.
57
57
  # @return [String]
58
58
  def owner_id
59
59
  data[:owner_id]
@@ -251,6 +251,17 @@ module Aws::EC2
251
251
  # ],
252
252
  # },
253
253
  # ],
254
+ # tag_specifications: [
255
+ # {
256
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
257
+ # tags: [
258
+ # {
259
+ # key: "String",
260
+ # value: "String",
261
+ # },
262
+ # ],
263
+ # },
264
+ # ],
254
265
  # cidr_ip: "String",
255
266
  # from_port: 1,
256
267
  # ip_protocol: "String",
@@ -267,6 +278,8 @@ module Aws::EC2
267
278
  # @option options [Array<Types::IpPermission>] :ip_permissions
268
279
  # The sets of IP permissions. You can't specify a destination security
269
280
  # group and a CIDR IP address range in the same set of permissions.
281
+ # @option options [Array<Types::TagSpecification>] :tag_specifications
282
+ # The tags applied to the security group rule.
270
283
  # @option options [String] :cidr_ip
271
284
  # Not supported. Use a set of IP permissions to specify the CIDR.
272
285
  # @option options [Integer] :from_port
@@ -282,7 +295,7 @@ module Aws::EC2
282
295
  # @option options [String] :source_security_group_owner_id
283
296
  # Not supported. Use a set of IP permissions to specify a destination
284
297
  # security group.
285
- # @return [EmptyStructure]
298
+ # @return [Types::AuthorizeSecurityGroupEgressResult]
286
299
  def authorize_egress(options = {})
287
300
  options = options.merge(group_id: @id)
288
301
  resp = @client.authorize_security_group_egress(options)
@@ -336,6 +349,17 @@ module Aws::EC2
336
349
  # source_security_group_owner_id: "String",
337
350
  # to_port: 1,
338
351
  # dry_run: false,
352
+ # tag_specifications: [
353
+ # {
354
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
355
+ # tags: [
356
+ # {
357
+ # key: "String",
358
+ # value: "String",
359
+ # },
360
+ # ],
361
+ # },
362
+ # ],
339
363
  # })
340
364
  # @param [Hash] options ({})
341
365
  # @option options [String] :cidr_ip
@@ -381,13 +405,14 @@ module Aws::EC2
381
405
  # IP protocol and port range, use a set of IP permissions instead. For
382
406
  # EC2-VPC, the source security group must be in the same VPC.
383
407
  # @option options [String] :source_security_group_owner_id
384
- # \[nondefault VPC\] The AWS account ID for the source security group,
385
- # if the source security group is in a different account. You can't
386
- # specify this parameter in combination with the following parameters:
387
- # the CIDR IP address range, the IP protocol, the start of the port
388
- # range, and the end of the port range. Creates rules that grant full
389
- # ICMP, UDP, and TCP access. To create a rule with a specific IP
390
- # protocol and port range, use a set of IP permissions instead.
408
+ # \[nondefault VPC\] The Amazon Web Services account ID for the source
409
+ # security group, if the source security group is in a different
410
+ # account. You can't specify this parameter in combination with the
411
+ # following parameters: the CIDR IP address range, the IP protocol, the
412
+ # start of the port range, and the end of the port range. Creates rules
413
+ # that grant full ICMP, UDP, and TCP access. To create a rule with a
414
+ # specific IP protocol and port range, use a set of IP permissions
415
+ # instead.
391
416
  # @option options [Integer] :to_port
392
417
  # The end of port range for the TCP and UDP protocols, or an ICMP code
393
418
  # number. For the ICMP code number, use `-1` to specify all codes. If
@@ -400,7 +425,9 @@ module Aws::EC2
400
425
  # without actually making the request, and provides an error response.
401
426
  # If you have the required permissions, the error response is
402
427
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
403
- # @return [EmptyStructure]
428
+ # @option options [Array<Types::TagSpecification>] :tag_specifications
429
+ # \[VPC Only\] The tags applied to the security group rule.
430
+ # @return [Types::AuthorizeSecurityGroupIngressResult]
404
431
  def authorize_ingress(options = {})
405
432
  options = options.merge(group_id: @id)
406
433
  resp = @client.authorize_security_group_ingress(options)
@@ -549,6 +576,7 @@ module Aws::EC2
549
576
  # ],
550
577
  # },
551
578
  # ],
579
+ # security_group_rule_ids: ["String"],
552
580
  # cidr_ip: "String",
553
581
  # from_port: 1,
554
582
  # ip_protocol: "String",
@@ -565,6 +593,8 @@ module Aws::EC2
565
593
  # @option options [Array<Types::IpPermission>] :ip_permissions
566
594
  # The sets of IP permissions. You can't specify a destination security
567
595
  # group and a CIDR IP address range in the same set of permissions.
596
+ # @option options [Array<String>] :security_group_rule_ids
597
+ # The IDs of the security group rules.
568
598
  # @option options [String] :cidr_ip
569
599
  # Not supported. Use a set of IP permissions to specify the CIDR.
570
600
  # @option options [Integer] :from_port
@@ -634,6 +664,7 @@ module Aws::EC2
634
664
  # source_security_group_owner_id: "String",
635
665
  # to_port: 1,
636
666
  # dry_run: false,
667
+ # security_group_rule_ids: ["String"],
637
668
  # })
638
669
  # @param [Hash] options ({})
639
670
  # @option options [String] :cidr_ip
@@ -665,12 +696,13 @@ module Aws::EC2
665
696
  # rule for an IP protocol and port range, use a set of IP permissions
666
697
  # instead.
667
698
  # @option options [String] :source_security_group_owner_id
668
- # \[EC2-Classic\] The AWS account ID of the source security group, if
669
- # the source security group is in a different account. You can't
670
- # specify this parameter in combination with the following parameters:
671
- # the CIDR IP address range, the IP protocol, the start of the port
672
- # range, and the end of the port range. To revoke a specific rule for an
673
- # IP protocol and port range, use a set of IP permissions instead.
699
+ # \[EC2-Classic\] The Amazon Web Services account ID of the source
700
+ # security group, if the source security group is in a different
701
+ # account. You can't specify this parameter in combination with the
702
+ # following parameters: the CIDR IP address range, the IP protocol, the
703
+ # start of the port range, and the end of the port range. To revoke a
704
+ # specific rule for an IP protocol and port range, use a set of IP
705
+ # permissions instead.
674
706
  # @option options [Integer] :to_port
675
707
  # The end of port range for the TCP and UDP protocols, or an ICMP code
676
708
  # number. For the ICMP code number, use `-1` to specify all ICMP codes
@@ -680,6 +712,8 @@ module Aws::EC2
680
712
  # without actually making the request, and provides an error response.
681
713
  # If you have the required permissions, the error response is
682
714
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
715
+ # @option options [Array<String>] :security_group_rule_ids
716
+ # The IDs of the security group rules.
683
717
  # @return [Types::RevokeSecurityGroupIngressResult]
684
718
  def revoke_ingress(options = {})
685
719
  options = options.merge(group_id: @id)
@@ -305,7 +305,7 @@ module Aws::EC2
305
305
  # source_region: "String", # required
306
306
  # tag_specifications: [
307
307
  # {
308
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
308
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
309
309
  # tags: [
310
310
  # {
311
311
  # key: "String",
@@ -374,7 +374,7 @@ module Aws::EC2
374
374
  # ],
375
375
  # tag_specifications: [
376
376
  # {
377
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
377
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
378
378
  # tags: [
379
379
  # {
380
380
  # key: "String",
@@ -759,7 +759,7 @@ module Aws::EC2
759
759
  # interface_type: "efa", # accepts efa, branch, trunk
760
760
  # tag_specifications: [
761
761
  # {
762
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
762
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
763
763
  # tags: [
764
764
  # {
765
765
  # key: "String",
@@ -550,7 +550,7 @@ module Aws::EC2
550
550
  # dry_run: false,
551
551
  # tag_specifications: [
552
552
  # {
553
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
553
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
554
554
  # tags: [
555
555
  # {
556
556
  # key: "String",
@@ -699,7 +699,7 @@ module Aws::EC2
699
699
  # quantity: 1, # required
700
700
  # tag_specifications: [
701
701
  # {
702
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
702
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
703
703
  # tags: [
704
704
  # {
705
705
  # key: "String",
@@ -1532,7 +1532,7 @@ module Aws::EC2
1532
1532
  # @return [String]
1533
1533
  #
1534
1534
  # @!attribute [rw] encryption_kms_key_id
1535
- # The ID of the AWS KMS CMK used to encrypt the private key of the
1535
+ # The ID of the KMS key used to encrypt the private key of the
1536
1536
  # certificate.
1537
1537
  # @return [String]
1538
1538
  #
@@ -2531,6 +2531,17 @@ module Aws::EC2
2531
2531
  # ],
2532
2532
  # },
2533
2533
  # ],
2534
+ # tag_specifications: [
2535
+ # {
2536
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
2537
+ # tags: [
2538
+ # {
2539
+ # key: "String",
2540
+ # value: "String",
2541
+ # },
2542
+ # ],
2543
+ # },
2544
+ # ],
2534
2545
  # cidr_ip: "String",
2535
2546
  # from_port: 1,
2536
2547
  # ip_protocol: "String",
@@ -2556,6 +2567,10 @@ module Aws::EC2
2556
2567
  # permissions.
2557
2568
  # @return [Array<Types::IpPermission>]
2558
2569
  #
2570
+ # @!attribute [rw] tag_specifications
2571
+ # The tags applied to the security group rule.
2572
+ # @return [Array<Types::TagSpecification>]
2573
+ #
2559
2574
  # @!attribute [rw] cidr_ip
2560
2575
  # Not supported. Use a set of IP permissions to specify the CIDR.
2561
2576
  # @return [String]
@@ -2589,6 +2604,7 @@ module Aws::EC2
2589
2604
  :dry_run,
2590
2605
  :group_id,
2591
2606
  :ip_permissions,
2607
+ :tag_specifications,
2592
2608
  :cidr_ip,
2593
2609
  :from_port,
2594
2610
  :ip_protocol,
@@ -2599,6 +2615,24 @@ module Aws::EC2
2599
2615
  include Aws::Structure
2600
2616
  end
2601
2617
 
2618
+ # @!attribute [rw] return
2619
+ # Returns `true` if the request succeeds; otherwise, returns an error.
2620
+ # @return [Boolean]
2621
+ #
2622
+ # @!attribute [rw] security_group_rules
2623
+ # Information about the outbound (egress) security group rules that
2624
+ # were added.
2625
+ # @return [Array<Types::SecurityGroupRule>]
2626
+ #
2627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressResult AWS API Documentation
2628
+ #
2629
+ class AuthorizeSecurityGroupEgressResult < Struct.new(
2630
+ :return,
2631
+ :security_group_rules)
2632
+ SENSITIVE = []
2633
+ include Aws::Structure
2634
+ end
2635
+
2602
2636
  # @note When making an API call, you may pass AuthorizeSecurityGroupIngressRequest
2603
2637
  # data as a hash:
2604
2638
  #
@@ -2648,6 +2682,17 @@ module Aws::EC2
2648
2682
  # source_security_group_owner_id: "String",
2649
2683
  # to_port: 1,
2650
2684
  # dry_run: false,
2685
+ # tag_specifications: [
2686
+ # {
2687
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
2688
+ # tags: [
2689
+ # {
2690
+ # key: "String",
2691
+ # value: "String",
2692
+ # },
2693
+ # ],
2694
+ # },
2695
+ # ],
2651
2696
  # }
2652
2697
  #
2653
2698
  # @!attribute [rw] cidr_ip
@@ -2712,13 +2757,14 @@ module Aws::EC2
2712
2757
  # @return [String]
2713
2758
  #
2714
2759
  # @!attribute [rw] source_security_group_owner_id
2715
- # \[nondefault VPC\] The AWS account ID for the source security group,
2716
- # if the source security group is in a different account. You can't
2717
- # specify this parameter in combination with the following parameters:
2718
- # the CIDR IP address range, the IP protocol, the start of the port
2719
- # range, and the end of the port range. Creates rules that grant full
2720
- # ICMP, UDP, and TCP access. To create a rule with a specific IP
2721
- # protocol and port range, use a set of IP permissions instead.
2760
+ # \[nondefault VPC\] The Amazon Web Services account ID for the source
2761
+ # security group, if the source security group is in a different
2762
+ # account. You can't specify this parameter in combination with the
2763
+ # following parameters: the CIDR IP address range, the IP protocol,
2764
+ # the start of the port range, and the end of the port range. Creates
2765
+ # rules that grant full ICMP, UDP, and TCP access. To create a rule
2766
+ # with a specific IP protocol and port range, use a set of IP
2767
+ # permissions instead.
2722
2768
  # @return [String]
2723
2769
  #
2724
2770
  # @!attribute [rw] to_port
@@ -2737,6 +2783,10 @@ module Aws::EC2
2737
2783
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
2738
2784
  # @return [Boolean]
2739
2785
  #
2786
+ # @!attribute [rw] tag_specifications
2787
+ # \[VPC Only\] The tags applied to the security group rule.
2788
+ # @return [Array<Types::TagSpecification>]
2789
+ #
2740
2790
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressRequest AWS API Documentation
2741
2791
  #
2742
2792
  class AuthorizeSecurityGroupIngressRequest < Struct.new(
@@ -2749,7 +2799,26 @@ module Aws::EC2
2749
2799
  :source_security_group_name,
2750
2800
  :source_security_group_owner_id,
2751
2801
  :to_port,
2752
- :dry_run)
2802
+ :dry_run,
2803
+ :tag_specifications)
2804
+ SENSITIVE = []
2805
+ include Aws::Structure
2806
+ end
2807
+
2808
+ # @!attribute [rw] return
2809
+ # Returns `true` if the request succeeds; otherwise, returns an error.
2810
+ # @return [Boolean]
2811
+ #
2812
+ # @!attribute [rw] security_group_rules
2813
+ # Information about the inbound (ingress) security group rules that
2814
+ # were added.
2815
+ # @return [Array<Types::SecurityGroupRule>]
2816
+ #
2817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressResult AWS API Documentation
2818
+ #
2819
+ class AuthorizeSecurityGroupIngressResult < Struct.new(
2820
+ :return,
2821
+ :security_group_rules)
2753
2822
  SENSITIVE = []
2754
2823
  include Aws::Structure
2755
2824
  end
@@ -5243,7 +5312,7 @@ module Aws::EC2
5243
5312
  # source_snapshot_id: "String", # required
5244
5313
  # tag_specifications: [
5245
5314
  # {
5246
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5315
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5247
5316
  # tags: [
5248
5317
  # {
5249
5318
  # key: "String",
@@ -5468,7 +5537,7 @@ module Aws::EC2
5468
5537
  # instance_match_criteria: "open", # accepts open, targeted
5469
5538
  # tag_specifications: [
5470
5539
  # {
5471
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5540
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5472
5541
  # tags: [
5473
5542
  # {
5474
5543
  # key: "String",
@@ -5647,7 +5716,7 @@ module Aws::EC2
5647
5716
  # vpc_id: "VpcId", # required
5648
5717
  # tag_specifications: [
5649
5718
  # {
5650
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5719
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5651
5720
  # tags: [
5652
5721
  # {
5653
5722
  # key: "String",
@@ -5746,7 +5815,7 @@ module Aws::EC2
5746
5815
  # client_token: "String",
5747
5816
  # tag_specifications: [
5748
5817
  # {
5749
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5818
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5750
5819
  # tags: [
5751
5820
  # {
5752
5821
  # key: "String",
@@ -6039,7 +6108,7 @@ module Aws::EC2
6039
6108
  # type: "ipsec.1", # required, accepts ipsec.1
6040
6109
  # tag_specifications: [
6041
6110
  # {
6042
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6111
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6043
6112
  # tags: [
6044
6113
  # {
6045
6114
  # key: "String",
@@ -6203,7 +6272,7 @@ module Aws::EC2
6203
6272
  # ],
6204
6273
  # tag_specifications: [
6205
6274
  # {
6206
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6275
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6207
6276
  # tags: [
6208
6277
  # {
6209
6278
  # key: "String",
@@ -6261,7 +6330,7 @@ module Aws::EC2
6261
6330
  # vpc_id: "VpcId", # required
6262
6331
  # tag_specifications: [
6263
6332
  # {
6264
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6333
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6265
6334
  # tags: [
6266
6335
  # {
6267
6336
  # key: "String",
@@ -6482,7 +6551,7 @@ module Aws::EC2
6482
6551
  # replace_unhealthy_instances: false,
6483
6552
  # tag_specifications: [
6484
6553
  # {
6485
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6554
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6486
6555
  # tags: [
6487
6556
  # {
6488
6557
  # key: "String",
@@ -6668,7 +6737,7 @@ module Aws::EC2
6668
6737
  # log_format: "String",
6669
6738
  # tag_specifications: [
6670
6739
  # {
6671
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6740
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6672
6741
  # tags: [
6673
6742
  # {
6674
6743
  # key: "String",
@@ -6862,7 +6931,7 @@ module Aws::EC2
6862
6931
  # client_token: "String",
6863
6932
  # tag_specifications: [
6864
6933
  # {
6865
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6934
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6866
6935
  # tags: [
6867
6936
  # {
6868
6937
  # key: "String",
@@ -6971,7 +7040,7 @@ module Aws::EC2
6971
7040
  # no_reboot: false,
6972
7041
  # tag_specifications: [
6973
7042
  # {
6974
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7043
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6975
7044
  # tags: [
6976
7045
  # {
6977
7046
  # key: "String",
@@ -7081,7 +7150,7 @@ module Aws::EC2
7081
7150
  # target_environment: "citrix", # required, accepts citrix, vmware, microsoft
7082
7151
  # tag_specifications: [
7083
7152
  # {
7084
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7153
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7085
7154
  # tags: [
7086
7155
  # {
7087
7156
  # key: "String",
@@ -7143,7 +7212,7 @@ module Aws::EC2
7143
7212
  # {
7144
7213
  # tag_specifications: [
7145
7214
  # {
7146
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7215
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7147
7216
  # tags: [
7148
7217
  # {
7149
7218
  # key: "String",
@@ -7195,7 +7264,7 @@ module Aws::EC2
7195
7264
  # dry_run: false,
7196
7265
  # tag_specifications: [
7197
7266
  # {
7198
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7267
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7199
7268
  # tags: [
7200
7269
  # {
7201
7270
  # key: "String",
@@ -7315,7 +7384,7 @@ module Aws::EC2
7315
7384
  # user_data: "String",
7316
7385
  # tag_specifications: [
7317
7386
  # {
7318
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7387
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7319
7388
  # tags: [
7320
7389
  # {
7321
7390
  # key: "String",
@@ -7380,7 +7449,7 @@ module Aws::EC2
7380
7449
  # },
7381
7450
  # tag_specifications: [
7382
7451
  # {
7383
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7452
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7384
7453
  # tags: [
7385
7454
  # {
7386
7455
  # key: "String",
@@ -7542,7 +7611,7 @@ module Aws::EC2
7542
7611
  # user_data: "String",
7543
7612
  # tag_specifications: [
7544
7613
  # {
7545
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7614
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7546
7615
  # tags: [
7547
7616
  # {
7548
7617
  # key: "String",
@@ -7747,7 +7816,7 @@ module Aws::EC2
7747
7816
  # vpc_id: "VpcId", # required
7748
7817
  # tag_specifications: [
7749
7818
  # {
7750
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7819
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7751
7820
  # tags: [
7752
7821
  # {
7753
7822
  # key: "String",
@@ -7816,7 +7885,7 @@ module Aws::EC2
7816
7885
  # max_entries: 1, # required
7817
7886
  # tag_specifications: [
7818
7887
  # {
7819
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7888
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7820
7889
  # tags: [
7821
7890
  # {
7822
7891
  # key: "String",
@@ -7912,7 +7981,7 @@ module Aws::EC2
7912
7981
  # subnet_id: "SubnetId", # required
7913
7982
  # tag_specifications: [
7914
7983
  # {
7915
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7984
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7916
7985
  # tags: [
7917
7986
  # {
7918
7987
  # key: "String",
@@ -8109,7 +8178,7 @@ module Aws::EC2
8109
8178
  # vpc_id: "VpcId", # required
8110
8179
  # tag_specifications: [
8111
8180
  # {
8112
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8181
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8113
8182
  # tags: [
8114
8183
  # {
8115
8184
  # key: "String",
@@ -8169,7 +8238,7 @@ module Aws::EC2
8169
8238
  # destination_port: 1,
8170
8239
  # tag_specifications: [
8171
8240
  # {
8172
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8241
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8173
8242
  # tags: [
8174
8243
  # {
8175
8244
  # key: "String",
@@ -8348,7 +8417,7 @@ module Aws::EC2
8348
8417
  # subnet_id: "SubnetId", # required
8349
8418
  # tag_specifications: [
8350
8419
  # {
8351
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8420
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8352
8421
  # tags: [
8353
8422
  # {
8354
8423
  # key: "String",
@@ -8503,7 +8572,7 @@ module Aws::EC2
8503
8572
  # partition_count: 1,
8504
8573
  # tag_specifications: [
8505
8574
  # {
8506
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8575
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8507
8576
  # tags: [
8508
8577
  # {
8509
8578
  # key: "String",
@@ -8575,7 +8644,7 @@ module Aws::EC2
8575
8644
  # dry_run: false,
8576
8645
  # tag_specifications: [
8577
8646
  # {
8578
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8647
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8579
8648
  # tags: [
8580
8649
  # {
8581
8650
  # key: "String",
@@ -8723,7 +8792,7 @@ module Aws::EC2
8723
8792
  # name: "String",
8724
8793
  # tag_specifications: [
8725
8794
  # {
8726
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8795
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8727
8796
  # tags: [
8728
8797
  # {
8729
8798
  # key: "String",
@@ -8929,7 +8998,7 @@ module Aws::EC2
8929
8998
  # vpc_id: "VpcId", # required
8930
8999
  # tag_specifications: [
8931
9000
  # {
8932
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9001
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8933
9002
  # tags: [
8934
9003
  # {
8935
9004
  # key: "String",
@@ -8986,7 +9055,7 @@ module Aws::EC2
8986
9055
  # vpc_id: "VpcId",
8987
9056
  # tag_specifications: [
8988
9057
  # {
8989
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9058
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8990
9059
  # tags: [
8991
9060
  # {
8992
9061
  # key: "String",
@@ -9074,7 +9143,7 @@ module Aws::EC2
9074
9143
  # volume_id: "VolumeId", # required
9075
9144
  # tag_specifications: [
9076
9145
  # {
9077
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9146
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9078
9147
  # tags: [
9079
9148
  # {
9080
9149
  # key: "String",
@@ -9153,7 +9222,7 @@ module Aws::EC2
9153
9222
  # outpost_arn: "String",
9154
9223
  # tag_specifications: [
9155
9224
  # {
9156
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9225
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9157
9226
  # tags: [
9158
9227
  # {
9159
9228
  # key: "String",
@@ -9365,7 +9434,7 @@ module Aws::EC2
9365
9434
  # {
9366
9435
  # tag_specifications: [
9367
9436
  # {
9368
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9437
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9369
9438
  # tags: [
9370
9439
  # {
9371
9440
  # key: "String",
@@ -9518,7 +9587,7 @@ module Aws::EC2
9518
9587
  # description: "String",
9519
9588
  # tag_specifications: [
9520
9589
  # {
9521
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9590
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9522
9591
  # tags: [
9523
9592
  # {
9524
9593
  # key: "String",
@@ -9741,7 +9810,7 @@ module Aws::EC2
9741
9810
  # description: "String",
9742
9811
  # tag_specifications: [
9743
9812
  # {
9744
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9813
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9745
9814
  # tags: [
9746
9815
  # {
9747
9816
  # key: "String",
@@ -9874,7 +9943,7 @@ module Aws::EC2
9874
9943
  # description: "String",
9875
9944
  # tag_specifications: [
9876
9945
  # {
9877
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9946
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9878
9947
  # tags: [
9879
9948
  # {
9880
9949
  # key: "String",
@@ -9973,7 +10042,7 @@ module Aws::EC2
9973
10042
  # inside_cidr_blocks: ["String"], # required
9974
10043
  # tag_specifications: [
9975
10044
  # {
9976
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10045
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9977
10046
  # tags: [
9978
10047
  # {
9979
10048
  # key: "String",
@@ -10060,7 +10129,7 @@ module Aws::EC2
10060
10129
  # },
10061
10130
  # tag_specifications: [
10062
10131
  # {
10063
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10132
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10064
10133
  # tags: [
10065
10134
  # {
10066
10135
  # key: "String",
@@ -10148,7 +10217,7 @@ module Aws::EC2
10148
10217
  # },
10149
10218
  # tag_specifications: [
10150
10219
  # {
10151
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10220
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10152
10221
  # tags: [
10153
10222
  # {
10154
10223
  # key: "String",
@@ -10249,7 +10318,7 @@ module Aws::EC2
10249
10318
  # peer_region: "String", # required
10250
10319
  # tag_specifications: [
10251
10320
  # {
10252
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10321
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10253
10322
  # tags: [
10254
10323
  # {
10255
10324
  # key: "String",
@@ -10389,7 +10458,7 @@ module Aws::EC2
10389
10458
  # },
10390
10459
  # tag_specifications: [
10391
10460
  # {
10392
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10461
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10393
10462
  # tags: [
10394
10463
  # {
10395
10464
  # key: "String",
@@ -10509,7 +10578,7 @@ module Aws::EC2
10509
10578
  # transit_gateway_id: "TransitGatewayId", # required
10510
10579
  # tag_specifications: [
10511
10580
  # {
10512
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10581
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10513
10582
  # tags: [
10514
10583
  # {
10515
10584
  # key: "String",
@@ -10572,7 +10641,7 @@ module Aws::EC2
10572
10641
  # },
10573
10642
  # tag_specifications: [
10574
10643
  # {
10575
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10644
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10576
10645
  # tags: [
10577
10646
  # {
10578
10647
  # key: "String",
@@ -10756,7 +10825,7 @@ module Aws::EC2
10756
10825
  # dry_run: false,
10757
10826
  # tag_specifications: [
10758
10827
  # {
10759
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10828
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10760
10829
  # tags: [
10761
10830
  # {
10762
10831
  # key: "String",
@@ -11039,7 +11108,7 @@ module Aws::EC2
11039
11108
  # private_dns_enabled: false,
11040
11109
  # tag_specifications: [
11041
11110
  # {
11042
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11111
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11043
11112
  # tags: [
11044
11113
  # {
11045
11114
  # key: "String",
@@ -11176,7 +11245,7 @@ module Aws::EC2
11176
11245
  # client_token: "String",
11177
11246
  # tag_specifications: [
11178
11247
  # {
11179
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11248
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11180
11249
  # tags: [
11181
11250
  # {
11182
11251
  # key: "String",
@@ -11272,7 +11341,7 @@ module Aws::EC2
11272
11341
  # peer_region: "String",
11273
11342
  # tag_specifications: [
11274
11343
  # {
11275
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11344
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11276
11345
  # tags: [
11277
11346
  # {
11278
11347
  # key: "String",
@@ -11355,7 +11424,7 @@ module Aws::EC2
11355
11424
  # ipv_6_cidr_block_network_border_group: "String",
11356
11425
  # tag_specifications: [
11357
11426
  # {
11358
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11427
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11359
11428
  # tags: [
11360
11429
  # {
11361
11430
  # key: "String",
@@ -11524,7 +11593,7 @@ module Aws::EC2
11524
11593
  # },
11525
11594
  # tag_specifications: [
11526
11595
  # {
11527
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11596
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11528
11597
  # tags: [
11529
11598
  # {
11530
11599
  # key: "String",
@@ -11634,7 +11703,7 @@ module Aws::EC2
11634
11703
  # type: "ipsec.1", # required, accepts ipsec.1
11635
11704
  # tag_specifications: [
11636
11705
  # {
11637
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11706
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11638
11707
  # tags: [
11639
11708
  # {
11640
11709
  # key: "String",
@@ -18753,7 +18822,7 @@ module Aws::EC2
18753
18822
  # @!attribute [rw] key_names
18754
18823
  # The key pair names.
18755
18824
  #
18756
- # Default: Describes all your key pairs.
18825
+ # Default: Describes all of your key pairs.
18757
18826
  # @return [Array<String>]
18758
18827
  #
18759
18828
  # @!attribute [rw] key_pair_ids
@@ -21701,6 +21770,88 @@ module Aws::EC2
21701
21770
  include Aws::Structure
21702
21771
  end
21703
21772
 
21773
+ # @note When making an API call, you may pass DescribeSecurityGroupRulesRequest
21774
+ # data as a hash:
21775
+ #
21776
+ # {
21777
+ # filters: [
21778
+ # {
21779
+ # name: "String",
21780
+ # values: ["String"],
21781
+ # },
21782
+ # ],
21783
+ # security_group_rule_ids: ["String"],
21784
+ # dry_run: false,
21785
+ # next_token: "String",
21786
+ # max_results: 1,
21787
+ # }
21788
+ #
21789
+ # @!attribute [rw] filters
21790
+ # One or more filters.
21791
+ #
21792
+ # * `group-id` - The ID of the security group.
21793
+ #
21794
+ # * `security-group-rule-id` - The ID of the security group rule.
21795
+ #
21796
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
21797
+ # to the resource. Use the tag key in the filter name and the tag
21798
+ # value as the filter value. For example, to find all resources that
21799
+ # have a tag with the key `Owner` and the value `TeamA`, specify
21800
+ # `tag:Owner` for the filter name and `TeamA` for the filter value.
21801
+ # @return [Array<Types::Filter>]
21802
+ #
21803
+ # @!attribute [rw] security_group_rule_ids
21804
+ # The IDs of the security group rules.
21805
+ # @return [Array<String>]
21806
+ #
21807
+ # @!attribute [rw] dry_run
21808
+ # Checks whether you have the required permissions for the action,
21809
+ # without actually making the request, and provides an error response.
21810
+ # If you have the required permissions, the error response is
21811
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
21812
+ # @return [Boolean]
21813
+ #
21814
+ # @!attribute [rw] next_token
21815
+ # The token for the next page of results.
21816
+ # @return [String]
21817
+ #
21818
+ # @!attribute [rw] max_results
21819
+ # The maximum number of results to return in a single call. To
21820
+ # retrieve the remaining results, make another request with the
21821
+ # returned `NextToken` value. This value can be between 5 and 1000. If
21822
+ # this parameter is not specified, then all results are returned.
21823
+ # @return [Integer]
21824
+ #
21825
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesRequest AWS API Documentation
21826
+ #
21827
+ class DescribeSecurityGroupRulesRequest < Struct.new(
21828
+ :filters,
21829
+ :security_group_rule_ids,
21830
+ :dry_run,
21831
+ :next_token,
21832
+ :max_results)
21833
+ SENSITIVE = []
21834
+ include Aws::Structure
21835
+ end
21836
+
21837
+ # @!attribute [rw] security_group_rules
21838
+ # Information about security group rules.
21839
+ # @return [Array<Types::SecurityGroupRule>]
21840
+ #
21841
+ # @!attribute [rw] next_token
21842
+ # The token to use to retrieve the next page of results. This value is
21843
+ # `null` when there are no more results to return.
21844
+ # @return [String]
21845
+ #
21846
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesResult AWS API Documentation
21847
+ #
21848
+ class DescribeSecurityGroupRulesResult < Struct.new(
21849
+ :security_group_rules,
21850
+ :next_token)
21851
+ SENSITIVE = []
21852
+ include Aws::Structure
21853
+ end
21854
+
21704
21855
  # @note When making an API call, you may pass DescribeSecurityGroupsRequest
21705
21856
  # data as a hash:
21706
21857
  #
@@ -21751,8 +21902,9 @@ module Aws::EC2
21751
21902
  # * `egress.ip-permission.to-port` - For an outbound rule, the end of
21752
21903
  # port range for the TCP and UDP protocols, or an ICMP code.
21753
21904
  #
21754
- # * `egress.ip-permission.user-id` - The ID of an AWS account that has
21755
- # been referenced in an outbound security group rule.
21905
+ # * `egress.ip-permission.user-id` - The ID of an Amazon Web Services
21906
+ # account that has been referenced in an outbound security group
21907
+ # rule.
21756
21908
  #
21757
21909
  # * `group-id` - The ID of the security group.
21758
21910
  #
@@ -21783,11 +21935,11 @@ module Aws::EC2
21783
21935
  # * `ip-permission.to-port` - For an inbound rule, the end of port
21784
21936
  # range for the TCP and UDP protocols, or an ICMP code.
21785
21937
  #
21786
- # * `ip-permission.user-id` - The ID of an AWS account that has been
21787
- # referenced in an inbound security group rule.
21938
+ # * `ip-permission.user-id` - The ID of an Amazon Web Services account
21939
+ # that has been referenced in an inbound security group rule.
21788
21940
  #
21789
- # * `owner-id` - The AWS account ID of the owner of the security
21790
- # group.
21941
+ # * `owner-id` - The Amazon Web Services account ID of the owner of
21942
+ # the security group.
21791
21943
  #
21792
21944
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
21793
21945
  # to the resource. Use the tag key in the filter name and the tag
@@ -21807,7 +21959,7 @@ module Aws::EC2
21807
21959
  # The IDs of the security groups. Required for security groups in a
21808
21960
  # nondefault VPC.
21809
21961
  #
21810
- # Default: Describes all your security groups.
21962
+ # Default: Describes all of your security groups.
21811
21963
  # @return [Array<String>]
21812
21964
  #
21813
21965
  # @!attribute [rw] group_names
@@ -21816,7 +21968,7 @@ module Aws::EC2
21816
21968
  # security group ID. For security groups in a nondefault VPC, use the
21817
21969
  # `group-name` filter to describe security groups by name.
21818
21970
  #
21819
- # Default: Describes all your security groups.
21971
+ # Default: Describes all of your security groups.
21820
21972
  # @return [Array<String>]
21821
21973
  #
21822
21974
  # @!attribute [rw] dry_run
@@ -28514,7 +28666,7 @@ module Aws::EC2
28514
28666
  # role_name: "String",
28515
28667
  # tag_specifications: [
28516
28668
  # {
28517
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
28669
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
28518
28670
  # tags: [
28519
28671
  # {
28520
28672
  # key: "String",
@@ -32504,7 +32656,7 @@ module Aws::EC2
32504
32656
  # ],
32505
32657
  # tag_specifications: [
32506
32658
  # {
32507
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
32659
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
32508
32660
  # tags: [
32509
32661
  # {
32510
32662
  # key: "String",
@@ -33110,7 +33262,7 @@ module Aws::EC2
33110
33262
  # public_key_material: "data", # required
33111
33263
  # tag_specifications: [
33112
33264
  # {
33113
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33265
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33114
33266
  # tags: [
33115
33267
  # {
33116
33268
  # key: "String",
@@ -33158,7 +33310,7 @@ module Aws::EC2
33158
33310
  # @return [String]
33159
33311
  #
33160
33312
  # @!attribute [rw] key_name
33161
- # The key pair name you provided.
33313
+ # The key pair name that you provided.
33162
33314
  # @return [String]
33163
33315
  #
33164
33316
  # @!attribute [rw] key_pair_id
@@ -33207,7 +33359,7 @@ module Aws::EC2
33207
33359
  # role_name: "String",
33208
33360
  # tag_specifications: [
33209
33361
  # {
33210
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33362
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33211
33363
  # tags: [
33212
33364
  # {
33213
33365
  # key: "String",
@@ -35319,7 +35471,7 @@ module Aws::EC2
35319
35471
  # @return [Integer]
35320
35472
  #
35321
35473
  # @!attribute [rw] user_id_group_pairs
35322
- # The security group and AWS account ID pairs.
35474
+ # The security group and Amazon Web Services account ID pairs.
35323
35475
  # @return [Array<Types::UserIdGroupPair>]
35324
35476
  #
35325
35477
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpPermission AWS API Documentation
@@ -35507,8 +35659,8 @@ module Aws::EC2
35507
35659
  # @!attribute [rw] key_fingerprint
35508
35660
  # If you used CreateKeyPair to create the key pair, this is the SHA-1
35509
35661
  # digest of the DER encoded private key. If you used ImportKeyPair to
35510
- # provide AWS the public key, this is the MD5 public key fingerprint
35511
- # as specified in section 4 of RFC4716.
35662
+ # provide Amazon Web Services the public key, this is the MD5 public
35663
+ # key fingerprint as specified in section 4 of RFC4716.
35512
35664
  # @return [String]
35513
35665
  #
35514
35666
  # @!attribute [rw] key_name
@@ -37179,7 +37331,7 @@ module Aws::EC2
37179
37331
  # data as a hash:
37180
37332
  #
37181
37333
  # {
37182
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
37334
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
37183
37335
  # tags: [
37184
37336
  # {
37185
37337
  # key: "String",
@@ -39550,6 +39702,66 @@ module Aws::EC2
39550
39702
  include Aws::Structure
39551
39703
  end
39552
39704
 
39705
+ # @note When making an API call, you may pass ModifySecurityGroupRulesRequest
39706
+ # data as a hash:
39707
+ #
39708
+ # {
39709
+ # group_id: "SecurityGroupId", # required
39710
+ # security_group_rules: [ # required
39711
+ # {
39712
+ # security_group_rule_id: "SecurityGroupRuleId",
39713
+ # security_group_rule: {
39714
+ # ip_protocol: "String",
39715
+ # from_port: 1,
39716
+ # to_port: 1,
39717
+ # cidr_ipv_4: "String",
39718
+ # cidr_ipv_6: "String",
39719
+ # prefix_list_id: "PrefixListResourceId",
39720
+ # referenced_group_id: "SecurityGroupId",
39721
+ # description: "String",
39722
+ # },
39723
+ # },
39724
+ # ],
39725
+ # dry_run: false,
39726
+ # }
39727
+ #
39728
+ # @!attribute [rw] group_id
39729
+ # The ID of the security group.
39730
+ # @return [String]
39731
+ #
39732
+ # @!attribute [rw] security_group_rules
39733
+ # Information about the security group properties to update.
39734
+ # @return [Array<Types::SecurityGroupRuleUpdate>]
39735
+ #
39736
+ # @!attribute [rw] dry_run
39737
+ # Checks whether you have the required permissions for the action,
39738
+ # without actually making the request, and provides an error response.
39739
+ # If you have the required permissions, the error response is
39740
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
39741
+ # @return [Boolean]
39742
+ #
39743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesRequest AWS API Documentation
39744
+ #
39745
+ class ModifySecurityGroupRulesRequest < Struct.new(
39746
+ :group_id,
39747
+ :security_group_rules,
39748
+ :dry_run)
39749
+ SENSITIVE = []
39750
+ include Aws::Structure
39751
+ end
39752
+
39753
+ # @!attribute [rw] return
39754
+ # Returns `true` if the request succeeds; otherwise, returns an error.
39755
+ # @return [Boolean]
39756
+ #
39757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesResult AWS API Documentation
39758
+ #
39759
+ class ModifySecurityGroupRulesResult < Struct.new(
39760
+ :return)
39761
+ SENSITIVE = []
39762
+ include Aws::Structure
39763
+ end
39764
+
39553
39765
  # @note When making an API call, you may pass ModifySnapshotAttributeRequest
39554
39766
  # data as a hash:
39555
39767
  #
@@ -43604,7 +43816,7 @@ module Aws::EC2
43604
43816
  # dry_run: false,
43605
43817
  # pool_tag_specifications: [
43606
43818
  # {
43607
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
43819
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
43608
43820
  # tags: [
43609
43821
  # {
43610
43822
  # key: "String",
@@ -43914,7 +44126,7 @@ module Aws::EC2
43914
44126
  # offering_id: "OfferingId", # required
43915
44127
  # tag_specifications: [
43916
44128
  # {
43917
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
44129
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
43918
44130
  # tags: [
43919
44131
  # {
43920
44132
  # key: "String",
@@ -44230,6 +44442,41 @@ module Aws::EC2
44230
44442
  include Aws::Structure
44231
44443
  end
44232
44444
 
44445
+ # Describes the security group that is referenced in the security group
44446
+ # rule.
44447
+ #
44448
+ # @!attribute [rw] group_id
44449
+ # The ID of the security group.
44450
+ # @return [String]
44451
+ #
44452
+ # @!attribute [rw] peering_status
44453
+ # The status of a VPC peering connection, if applicable.
44454
+ # @return [String]
44455
+ #
44456
+ # @!attribute [rw] user_id
44457
+ # The account ID.
44458
+ # @return [String]
44459
+ #
44460
+ # @!attribute [rw] vpc_id
44461
+ # The ID of the VPC.
44462
+ # @return [String]
44463
+ #
44464
+ # @!attribute [rw] vpc_peering_connection_id
44465
+ # The ID of the VPC peering connection.
44466
+ # @return [String]
44467
+ #
44468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReferencedSecurityGroup AWS API Documentation
44469
+ #
44470
+ class ReferencedSecurityGroup < Struct.new(
44471
+ :group_id,
44472
+ :peering_status,
44473
+ :user_id,
44474
+ :vpc_id,
44475
+ :vpc_peering_connection_id)
44476
+ SENSITIVE = []
44477
+ include Aws::Structure
44478
+ end
44479
+
44233
44480
  # Describes a Region.
44234
44481
  #
44235
44482
  # @!attribute [rw] endpoint
@@ -45588,7 +45835,7 @@ module Aws::EC2
45588
45835
  # user_data: "String",
45589
45836
  # tag_specifications: [
45590
45837
  # {
45591
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
45838
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
45592
45839
  # tags: [
45593
45840
  # {
45594
45841
  # key: "String",
@@ -46002,7 +46249,7 @@ module Aws::EC2
46002
46249
  # weighted_capacity: 1.0,
46003
46250
  # tag_specifications: [
46004
46251
  # {
46005
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46252
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46006
46253
  # tags: [
46007
46254
  # {
46008
46255
  # key: "String",
@@ -46063,7 +46310,7 @@ module Aws::EC2
46063
46310
  # context: "String",
46064
46311
  # tag_specifications: [
46065
46312
  # {
46066
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46313
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46067
46314
  # tags: [
46068
46315
  # {
46069
46316
  # key: "String",
@@ -46198,7 +46445,7 @@ module Aws::EC2
46198
46445
  # valid_until: Time.now,
46199
46446
  # tag_specifications: [
46200
46447
  # {
46201
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46448
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46202
46449
  # tags: [
46203
46450
  # {
46204
46451
  # key: "String",
@@ -47724,6 +47971,7 @@ module Aws::EC2
47724
47971
  # ],
47725
47972
  # },
47726
47973
  # ],
47974
+ # security_group_rule_ids: ["String"],
47727
47975
  # cidr_ip: "String",
47728
47976
  # from_port: 1,
47729
47977
  # ip_protocol: "String",
@@ -47749,6 +47997,10 @@ module Aws::EC2
47749
47997
  # permissions.
47750
47998
  # @return [Array<Types::IpPermission>]
47751
47999
  #
48000
+ # @!attribute [rw] security_group_rule_ids
48001
+ # The IDs of the security group rules.
48002
+ # @return [Array<String>]
48003
+ #
47752
48004
  # @!attribute [rw] cidr_ip
47753
48005
  # Not supported. Use a set of IP permissions to specify the CIDR.
47754
48006
  # @return [String]
@@ -47782,6 +48034,7 @@ module Aws::EC2
47782
48034
  :dry_run,
47783
48035
  :group_id,
47784
48036
  :ip_permissions,
48037
+ :security_group_rule_ids,
47785
48038
  :cidr_ip,
47786
48039
  :from_port,
47787
48040
  :ip_protocol,
@@ -47860,6 +48113,7 @@ module Aws::EC2
47860
48113
  # source_security_group_owner_id: "String",
47861
48114
  # to_port: 1,
47862
48115
  # dry_run: false,
48116
+ # security_group_rule_ids: ["String"],
47863
48117
  # }
47864
48118
  #
47865
48119
  # @!attribute [rw] cidr_ip
@@ -47910,12 +48164,13 @@ module Aws::EC2
47910
48164
  # @return [String]
47911
48165
  #
47912
48166
  # @!attribute [rw] source_security_group_owner_id
47913
- # \[EC2-Classic\] The AWS account ID of the source security group, if
47914
- # the source security group is in a different account. You can't
47915
- # specify this parameter in combination with the following parameters:
47916
- # the CIDR IP address range, the IP protocol, the start of the port
47917
- # range, and the end of the port range. To revoke a specific rule for
47918
- # an IP protocol and port range, use a set of IP permissions instead.
48167
+ # \[EC2-Classic\] The Amazon Web Services account ID of the source
48168
+ # security group, if the source security group is in a different
48169
+ # account. You can't specify this parameter in combination with the
48170
+ # following parameters: the CIDR IP address range, the IP protocol,
48171
+ # the start of the port range, and the end of the port range. To
48172
+ # revoke a specific rule for an IP protocol and port range, use a set
48173
+ # of IP permissions instead.
47919
48174
  # @return [String]
47920
48175
  #
47921
48176
  # @!attribute [rw] to_port
@@ -47931,6 +48186,10 @@ module Aws::EC2
47931
48186
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
47932
48187
  # @return [Boolean]
47933
48188
  #
48189
+ # @!attribute [rw] security_group_rule_ids
48190
+ # The IDs of the security group rules.
48191
+ # @return [Array<String>]
48192
+ #
47934
48193
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngressRequest AWS API Documentation
47935
48194
  #
47936
48195
  class RevokeSecurityGroupIngressRequest < Struct.new(
@@ -47943,7 +48202,8 @@ module Aws::EC2
47943
48202
  :source_security_group_name,
47944
48203
  :source_security_group_owner_id,
47945
48204
  :to_port,
47946
- :dry_run)
48205
+ :dry_run,
48206
+ :security_group_rule_ids)
47947
48207
  SENSITIVE = []
47948
48208
  include Aws::Structure
47949
48209
  end
@@ -48294,7 +48554,7 @@ module Aws::EC2
48294
48554
  # ],
48295
48555
  # tag_specifications: [
48296
48556
  # {
48297
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
48557
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
48298
48558
  # tags: [
48299
48559
  # {
48300
48560
  # key: "String",
@@ -50029,7 +50289,7 @@ module Aws::EC2
50029
50289
  include Aws::Structure
50030
50290
  end
50031
50291
 
50032
- # Describes a security group
50292
+ # Describes a security group.
50033
50293
  #
50034
50294
  # @!attribute [rw] description
50035
50295
  # A description of the security group.
@@ -50044,7 +50304,8 @@ module Aws::EC2
50044
50304
  # @return [Array<Types::IpPermission>]
50045
50305
  #
50046
50306
  # @!attribute [rw] owner_id
50047
- # The AWS account ID of the owner of the security group.
50307
+ # The Amazon Web Services account ID of the owner of the security
50308
+ # group.
50048
50309
  # @return [String]
50049
50310
  #
50050
50311
  # @!attribute [rw] group_id
@@ -50122,6 +50383,249 @@ module Aws::EC2
50122
50383
  include Aws::Structure
50123
50384
  end
50124
50385
 
50386
+ # Describes a security group rule.
50387
+ #
50388
+ # @!attribute [rw] security_group_rule_id
50389
+ # The ID of the security group rule.
50390
+ # @return [String]
50391
+ #
50392
+ # @!attribute [rw] group_id
50393
+ # The ID of the security group.
50394
+ # @return [String]
50395
+ #
50396
+ # @!attribute [rw] group_owner_id
50397
+ # The ID of the account that owns the security group.
50398
+ # @return [String]
50399
+ #
50400
+ # @!attribute [rw] is_egress
50401
+ # Indicates whether the security group rule is an outbound rule.
50402
+ # @return [Boolean]
50403
+ #
50404
+ # @!attribute [rw] ip_protocol
50405
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
50406
+ # [Protocol Numbers][1]).
50407
+ #
50408
+ # Use `-1` to specify all protocols.
50409
+ #
50410
+ #
50411
+ #
50412
+ # [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
50413
+ # @return [String]
50414
+ #
50415
+ # @!attribute [rw] from_port
50416
+ # The start of port range for the TCP and UDP protocols, or an
50417
+ # ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
50418
+ # you specify all ICMP/ICMPv6 types, you must specify all codes.
50419
+ # @return [Integer]
50420
+ #
50421
+ # @!attribute [rw] to_port
50422
+ # The end of port range for the TCP and UDP protocols, or an
50423
+ # ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
50424
+ # If you specify all ICMP/ICMPv6 types, you must specify all codes.
50425
+ # @return [Integer]
50426
+ #
50427
+ # @!attribute [rw] cidr_ipv_4
50428
+ # The IPv4 CIDR range.
50429
+ # @return [String]
50430
+ #
50431
+ # @!attribute [rw] cidr_ipv_6
50432
+ # The IPv6 CIDR range.
50433
+ # @return [String]
50434
+ #
50435
+ # @!attribute [rw] prefix_list_id
50436
+ # The ID of the prefix list.
50437
+ # @return [String]
50438
+ #
50439
+ # @!attribute [rw] referenced_group_info
50440
+ # Describes the security group that is referenced in the rule.
50441
+ # @return [Types::ReferencedSecurityGroup]
50442
+ #
50443
+ # @!attribute [rw] description
50444
+ # The security group rule description.
50445
+ # @return [String]
50446
+ #
50447
+ # @!attribute [rw] tags
50448
+ # The tags applied to the security group rule.
50449
+ # @return [Array<Types::Tag>]
50450
+ #
50451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRule AWS API Documentation
50452
+ #
50453
+ class SecurityGroupRule < Struct.new(
50454
+ :security_group_rule_id,
50455
+ :group_id,
50456
+ :group_owner_id,
50457
+ :is_egress,
50458
+ :ip_protocol,
50459
+ :from_port,
50460
+ :to_port,
50461
+ :cidr_ipv_4,
50462
+ :cidr_ipv_6,
50463
+ :prefix_list_id,
50464
+ :referenced_group_info,
50465
+ :description,
50466
+ :tags)
50467
+ SENSITIVE = []
50468
+ include Aws::Structure
50469
+ end
50470
+
50471
+ # Describes the description of a security group rule.
50472
+ #
50473
+ # You can use this when you want to update the security group rule
50474
+ # description for either an inbound or outbound rule.
50475
+ #
50476
+ # @note When making an API call, you may pass SecurityGroupRuleDescription
50477
+ # data as a hash:
50478
+ #
50479
+ # {
50480
+ # security_group_rule_id: "String",
50481
+ # description: "String",
50482
+ # }
50483
+ #
50484
+ # @!attribute [rw] security_group_rule_id
50485
+ # The ID of the security group rule.
50486
+ # @return [String]
50487
+ #
50488
+ # @!attribute [rw] description
50489
+ # The description of the security group rule.
50490
+ # @return [String]
50491
+ #
50492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleDescription AWS API Documentation
50493
+ #
50494
+ class SecurityGroupRuleDescription < Struct.new(
50495
+ :security_group_rule_id,
50496
+ :description)
50497
+ SENSITIVE = []
50498
+ include Aws::Structure
50499
+ end
50500
+
50501
+ # Describes a security group rule.
50502
+ #
50503
+ # You must specify exactly one of the following parameters, based on the
50504
+ # rule type:
50505
+ #
50506
+ # * CidrIpv4
50507
+ #
50508
+ # * CidrIpv6
50509
+ #
50510
+ # * PrefixListId
50511
+ #
50512
+ # * ReferencedGroupId
50513
+ #
50514
+ # When you modify a rule, you cannot change the rule type. For example,
50515
+ # if the rule uses an IPv4 address range, you must use `CidrIpv4` to
50516
+ # specify a new IPv4 address range.
50517
+ #
50518
+ # @note When making an API call, you may pass SecurityGroupRuleRequest
50519
+ # data as a hash:
50520
+ #
50521
+ # {
50522
+ # ip_protocol: "String",
50523
+ # from_port: 1,
50524
+ # to_port: 1,
50525
+ # cidr_ipv_4: "String",
50526
+ # cidr_ipv_6: "String",
50527
+ # prefix_list_id: "PrefixListResourceId",
50528
+ # referenced_group_id: "SecurityGroupId",
50529
+ # description: "String",
50530
+ # }
50531
+ #
50532
+ # @!attribute [rw] ip_protocol
50533
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
50534
+ # [Protocol Numbers][1]).
50535
+ #
50536
+ # Use `-1` to specify all protocols.
50537
+ #
50538
+ #
50539
+ #
50540
+ # [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
50541
+ # @return [String]
50542
+ #
50543
+ # @!attribute [rw] from_port
50544
+ # The start of port range for the TCP and UDP protocols, or an
50545
+ # ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
50546
+ # you specify all ICMP/ICMPv6 types, you must specify all codes.
50547
+ # @return [Integer]
50548
+ #
50549
+ # @!attribute [rw] to_port
50550
+ # The end of port range for the TCP and UDP protocols, or an
50551
+ # ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
50552
+ # If you specify all ICMP/ICMPv6 types, you must specify all codes.
50553
+ # @return [Integer]
50554
+ #
50555
+ # @!attribute [rw] cidr_ipv_4
50556
+ # The IPv4 CIDR range. To specify a single IPv4 address, use the /32
50557
+ # prefix length.
50558
+ # @return [String]
50559
+ #
50560
+ # @!attribute [rw] cidr_ipv_6
50561
+ # The IPv6 CIDR range. To specify a single IPv6 address, use the /128
50562
+ # prefix length.
50563
+ # @return [String]
50564
+ #
50565
+ # @!attribute [rw] prefix_list_id
50566
+ # The ID of the prefix list.
50567
+ # @return [String]
50568
+ #
50569
+ # @!attribute [rw] referenced_group_id
50570
+ # The ID of the security group that is referenced in the security
50571
+ # group rule.
50572
+ # @return [String]
50573
+ #
50574
+ # @!attribute [rw] description
50575
+ # The description of the security group rule.
50576
+ # @return [String]
50577
+ #
50578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleRequest AWS API Documentation
50579
+ #
50580
+ class SecurityGroupRuleRequest < Struct.new(
50581
+ :ip_protocol,
50582
+ :from_port,
50583
+ :to_port,
50584
+ :cidr_ipv_4,
50585
+ :cidr_ipv_6,
50586
+ :prefix_list_id,
50587
+ :referenced_group_id,
50588
+ :description)
50589
+ SENSITIVE = []
50590
+ include Aws::Structure
50591
+ end
50592
+
50593
+ # Describes an update to a security group rule.
50594
+ #
50595
+ # @note When making an API call, you may pass SecurityGroupRuleUpdate
50596
+ # data as a hash:
50597
+ #
50598
+ # {
50599
+ # security_group_rule_id: "SecurityGroupRuleId",
50600
+ # security_group_rule: {
50601
+ # ip_protocol: "String",
50602
+ # from_port: 1,
50603
+ # to_port: 1,
50604
+ # cidr_ipv_4: "String",
50605
+ # cidr_ipv_6: "String",
50606
+ # prefix_list_id: "PrefixListResourceId",
50607
+ # referenced_group_id: "SecurityGroupId",
50608
+ # description: "String",
50609
+ # },
50610
+ # }
50611
+ #
50612
+ # @!attribute [rw] security_group_rule_id
50613
+ # The ID of the security group rule.
50614
+ # @return [String]
50615
+ #
50616
+ # @!attribute [rw] security_group_rule
50617
+ # Information about the security group rule.
50618
+ # @return [Types::SecurityGroupRuleRequest]
50619
+ #
50620
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleUpdate AWS API Documentation
50621
+ #
50622
+ class SecurityGroupRuleUpdate < Struct.new(
50623
+ :security_group_rule_id,
50624
+ :security_group_rule)
50625
+ SENSITIVE = []
50626
+ include Aws::Structure
50627
+ end
50628
+
50125
50629
  # @note When making an API call, you may pass SendDiagnosticInterruptRequest
50126
50630
  # data as a hash:
50127
50631
  #
@@ -50901,7 +51405,7 @@ module Aws::EC2
50901
51405
  # weighted_capacity: 1.0,
50902
51406
  # tag_specifications: [
50903
51407
  # {
50904
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51408
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
50905
51409
  # tags: [
50906
51410
  # {
50907
51411
  # key: "String",
@@ -51215,7 +51719,7 @@ module Aws::EC2
51215
51719
  # weighted_capacity: 1.0,
51216
51720
  # tag_specifications: [
51217
51721
  # {
51218
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51722
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51219
51723
  # tags: [
51220
51724
  # {
51221
51725
  # key: "String",
@@ -51276,7 +51780,7 @@ module Aws::EC2
51276
51780
  # context: "String",
51277
51781
  # tag_specifications: [
51278
51782
  # {
51279
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51783
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51280
51784
  # tags: [
51281
51785
  # {
51282
51786
  # key: "String",
@@ -51557,7 +52061,7 @@ module Aws::EC2
51557
52061
  # data as a hash:
51558
52062
  #
51559
52063
  # {
51560
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52064
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51561
52065
  # tags: [
51562
52066
  # {
51563
52067
  # key: "String",
@@ -52293,7 +52797,7 @@ module Aws::EC2
52293
52797
  # dry_run: false,
52294
52798
  # tag_specifications: [
52295
52799
  # {
52296
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52800
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52297
52801
  # tags: [
52298
52802
  # {
52299
52803
  # key: "String",
@@ -52892,7 +53396,7 @@ module Aws::EC2
52892
53396
  # data as a hash:
52893
53397
  #
52894
53398
  # {
52895
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, 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-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
53399
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52896
53400
  # tags: [
52897
53401
  # {
52898
53402
  # key: "String",
@@ -55198,7 +55702,7 @@ module Aws::EC2
55198
55702
  # dry_run: false,
55199
55703
  # group_id: "SecurityGroupId",
55200
55704
  # group_name: "SecurityGroupName",
55201
- # ip_permissions: [ # required
55705
+ # ip_permissions: [
55202
55706
  # {
55203
55707
  # from_port: 1,
55204
55708
  # ip_protocol: "String",
@@ -55234,6 +55738,12 @@ module Aws::EC2
55234
55738
  # ],
55235
55739
  # },
55236
55740
  # ],
55741
+ # security_group_rule_descriptions: [
55742
+ # {
55743
+ # security_group_rule_id: "String",
55744
+ # description: "String",
55745
+ # },
55746
+ # ],
55237
55747
  # }
55238
55748
  #
55239
55749
  # @!attribute [rw] dry_run
@@ -55256,16 +55766,23 @@ module Aws::EC2
55256
55766
  # @return [String]
55257
55767
  #
55258
55768
  # @!attribute [rw] ip_permissions
55259
- # The IP permissions for the security group rule.
55769
+ # The IP permissions for the security group rule. You must specify
55770
+ # either the IP permissions or the description.
55260
55771
  # @return [Array<Types::IpPermission>]
55261
55772
  #
55773
+ # @!attribute [rw] security_group_rule_descriptions
55774
+ # The description for the egress security group rules. You must
55775
+ # specify either the description or the IP permissions.
55776
+ # @return [Array<Types::SecurityGroupRuleDescription>]
55777
+ #
55262
55778
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsEgressRequest AWS API Documentation
55263
55779
  #
55264
55780
  class UpdateSecurityGroupRuleDescriptionsEgressRequest < Struct.new(
55265
55781
  :dry_run,
55266
55782
  :group_id,
55267
55783
  :group_name,
55268
- :ip_permissions)
55784
+ :ip_permissions,
55785
+ :security_group_rule_descriptions)
55269
55786
  SENSITIVE = []
55270
55787
  include Aws::Structure
55271
55788
  end
@@ -55289,7 +55806,7 @@ module Aws::EC2
55289
55806
  # dry_run: false,
55290
55807
  # group_id: "SecurityGroupId",
55291
55808
  # group_name: "SecurityGroupName",
55292
- # ip_permissions: [ # required
55809
+ # ip_permissions: [
55293
55810
  # {
55294
55811
  # from_port: 1,
55295
55812
  # ip_protocol: "String",
@@ -55325,6 +55842,12 @@ module Aws::EC2
55325
55842
  # ],
55326
55843
  # },
55327
55844
  # ],
55845
+ # security_group_rule_descriptions: [
55846
+ # {
55847
+ # security_group_rule_id: "String",
55848
+ # description: "String",
55849
+ # },
55850
+ # ],
55328
55851
  # }
55329
55852
  #
55330
55853
  # @!attribute [rw] dry_run
@@ -55347,16 +55870,23 @@ module Aws::EC2
55347
55870
  # @return [String]
55348
55871
  #
55349
55872
  # @!attribute [rw] ip_permissions
55350
- # The IP permissions for the security group rule.
55873
+ # The IP permissions for the security group rule. You must specify
55874
+ # either IP permissions or a description.
55351
55875
  # @return [Array<Types::IpPermission>]
55352
55876
  #
55877
+ # @!attribute [rw] security_group_rule_descriptions
55878
+ # \[VPC only\] The description for the ingress security group rules.
55879
+ # You must specify either a description or IP permissions.
55880
+ # @return [Array<Types::SecurityGroupRuleDescription>]
55881
+ #
55353
55882
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsIngressRequest AWS API Documentation
55354
55883
  #
55355
55884
  class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
55356
55885
  :dry_run,
55357
55886
  :group_id,
55358
55887
  :group_name,
55359
- :ip_permissions)
55888
+ :ip_permissions,
55889
+ :security_group_rule_descriptions)
55360
55890
  SENSITIVE = []
55361
55891
  include Aws::Structure
55362
55892
  end
@@ -55442,7 +55972,7 @@ module Aws::EC2
55442
55972
  include Aws::Structure
55443
55973
  end
55444
55974
 
55445
- # Describes a security group and AWS account ID pair.
55975
+ # Describes a security group and Amazon Web Services account ID pair.
55446
55976
  #
55447
55977
  # @note When making an API call, you may pass UserIdGroupPair
55448
55978
  # data as a hash:
@@ -55483,14 +56013,14 @@ module Aws::EC2
55483
56013
  # @return [String]
55484
56014
  #
55485
56015
  # @!attribute [rw] user_id
55486
- # The ID of an AWS account.
56016
+ # The ID of an Amazon Web Services account.
55487
56017
  #
55488
56018
  # For a referenced security group in another VPC, the account ID of
55489
56019
  # the referenced security group is returned in the response. If the
55490
56020
  # referenced security group is deleted, this value is not returned.
55491
56021
  #
55492
56022
  # \[EC2-Classic\] Required when adding or removing rules that
55493
- # reference a security group in another AWS account.
56023
+ # reference a security group in another Amazon Web Services account.
55494
56024
  # @return [String]
55495
56025
  #
55496
56026
  # @!attribute [rw] vpc_id