aws-sdk-ec2 1.237.0 → 1.238.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +448 -113
- data/lib/aws-sdk-ec2/client_api.rb +128 -4
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +19 -19
- data/lib/aws-sdk-ec2/security_group.rb +51 -3
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +672 -86
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +7 -7
- metadata +2 -2
| @@ -223,18 +223,21 @@ module Aws::EC2 | |
| 223 223 | 
             
                #           {
         | 
| 224 224 | 
             
                #             cidr_ip: "String",
         | 
| 225 225 | 
             
                #             description: "String",
         | 
| 226 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 226 227 | 
             
                #           },
         | 
| 227 228 | 
             
                #         ],
         | 
| 228 229 | 
             
                #         ipv_6_ranges: [
         | 
| 229 230 | 
             
                #           {
         | 
| 230 231 | 
             
                #             cidr_ipv_6: "String",
         | 
| 231 232 | 
             
                #             description: "String",
         | 
| 233 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 232 234 | 
             
                #           },
         | 
| 233 235 | 
             
                #         ],
         | 
| 234 236 | 
             
                #         prefix_list_ids: [
         | 
| 235 237 | 
             
                #           {
         | 
| 236 238 | 
             
                #             description: "String",
         | 
| 237 239 | 
             
                #             prefix_list_id: "String",
         | 
| 240 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 238 241 | 
             
                #           },
         | 
| 239 242 | 
             
                #         ],
         | 
| 240 243 | 
             
                #         to_port: 1,
         | 
| @@ -247,6 +250,18 @@ module Aws::EC2 | |
| 247 250 | 
             
                #             user_id: "String",
         | 
| 248 251 | 
             
                #             vpc_id: "String",
         | 
| 249 252 | 
             
                #             vpc_peering_connection_id: "String",
         | 
| 253 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 254 | 
            +
                #           },
         | 
| 255 | 
            +
                #         ],
         | 
| 256 | 
            +
                #       },
         | 
| 257 | 
            +
                #     ],
         | 
| 258 | 
            +
                #     tag_specifications: [
         | 
| 259 | 
            +
                #       {
         | 
| 260 | 
            +
                #         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
         | 
| 261 | 
            +
                #         tags: [
         | 
| 262 | 
            +
                #           {
         | 
| 263 | 
            +
                #             key: "String",
         | 
| 264 | 
            +
                #             value: "String",
         | 
| 250 265 | 
             
                #           },
         | 
| 251 266 | 
             
                #         ],
         | 
| 252 267 | 
             
                #       },
         | 
| @@ -267,6 +282,8 @@ module Aws::EC2 | |
| 267 282 | 
             
                # @option options [Array<Types::IpPermission>] :ip_permissions
         | 
| 268 283 | 
             
                #   The sets of IP permissions. You can't specify a destination security
         | 
| 269 284 | 
             
                #   group and a CIDR IP address range in the same set of permissions.
         | 
| 285 | 
            +
                # @option options [Array<Types::TagSpecification>] :tag_specifications
         | 
| 286 | 
            +
                #   The tags applied to the security group rule.
         | 
| 270 287 | 
             
                # @option options [String] :cidr_ip
         | 
| 271 288 | 
             
                #   Not supported. Use a set of IP permissions to specify the CIDR.
         | 
| 272 289 | 
             
                # @option options [Integer] :from_port
         | 
| @@ -282,7 +299,7 @@ module Aws::EC2 | |
| 282 299 | 
             
                # @option options [String] :source_security_group_owner_id
         | 
| 283 300 | 
             
                #   Not supported. Use a set of IP permissions to specify a destination
         | 
| 284 301 | 
             
                #   security group.
         | 
| 285 | 
            -
                # @return [ | 
| 302 | 
            +
                # @return [Types::AuthorizeSecurityGroupEgressResult]
         | 
| 286 303 | 
             
                def authorize_egress(options = {})
         | 
| 287 304 | 
             
                  options = options.merge(group_id: @id)
         | 
| 288 305 | 
             
                  resp = @client.authorize_security_group_egress(options)
         | 
| @@ -303,18 +320,21 @@ module Aws::EC2 | |
| 303 320 | 
             
                #           {
         | 
| 304 321 | 
             
                #             cidr_ip: "String",
         | 
| 305 322 | 
             
                #             description: "String",
         | 
| 323 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 306 324 | 
             
                #           },
         | 
| 307 325 | 
             
                #         ],
         | 
| 308 326 | 
             
                #         ipv_6_ranges: [
         | 
| 309 327 | 
             
                #           {
         | 
| 310 328 | 
             
                #             cidr_ipv_6: "String",
         | 
| 311 329 | 
             
                #             description: "String",
         | 
| 330 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 312 331 | 
             
                #           },
         | 
| 313 332 | 
             
                #         ],
         | 
| 314 333 | 
             
                #         prefix_list_ids: [
         | 
| 315 334 | 
             
                #           {
         | 
| 316 335 | 
             
                #             description: "String",
         | 
| 317 336 | 
             
                #             prefix_list_id: "String",
         | 
| 337 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 318 338 | 
             
                #           },
         | 
| 319 339 | 
             
                #         ],
         | 
| 320 340 | 
             
                #         to_port: 1,
         | 
| @@ -327,6 +347,7 @@ module Aws::EC2 | |
| 327 347 | 
             
                #             user_id: "String",
         | 
| 328 348 | 
             
                #             vpc_id: "String",
         | 
| 329 349 | 
             
                #             vpc_peering_connection_id: "String",
         | 
| 350 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 330 351 | 
             
                #           },
         | 
| 331 352 | 
             
                #         ],
         | 
| 332 353 | 
             
                #       },
         | 
| @@ -336,6 +357,17 @@ module Aws::EC2 | |
| 336 357 | 
             
                #     source_security_group_owner_id: "String",
         | 
| 337 358 | 
             
                #     to_port: 1,
         | 
| 338 359 | 
             
                #     dry_run: false,
         | 
| 360 | 
            +
                #     tag_specifications: [
         | 
| 361 | 
            +
                #       {
         | 
| 362 | 
            +
                #         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
         | 
| 363 | 
            +
                #         tags: [
         | 
| 364 | 
            +
                #           {
         | 
| 365 | 
            +
                #             key: "String",
         | 
| 366 | 
            +
                #             value: "String",
         | 
| 367 | 
            +
                #           },
         | 
| 368 | 
            +
                #         ],
         | 
| 369 | 
            +
                #       },
         | 
| 370 | 
            +
                #     ],
         | 
| 339 371 | 
             
                #   })
         | 
| 340 372 | 
             
                # @param [Hash] options ({})
         | 
| 341 373 | 
             
                # @option options [String] :cidr_ip
         | 
| @@ -364,7 +396,7 @@ module Aws::EC2 | |
| 364 396 | 
             
                #
         | 
| 365 397 | 
             
                #   \[VPC only\] Use `-1` to specify all protocols. If you specify `-1` or
         | 
| 366 398 | 
             
                #   a protocol other than `tcp`, `udp`, or `icmp`, traffic on all ports is
         | 
| 367 | 
            -
                #   allowed, regardless of any ports you specify.
         | 
| 399 | 
            +
                #   allowed, regardless of any ports that you specify.
         | 
| 368 400 | 
             
                #
         | 
| 369 401 | 
             
                #   Alternatively, use a set of IP permissions to specify multiple rules
         | 
| 370 402 | 
             
                #   and a description for the rule.
         | 
| @@ -400,7 +432,9 @@ module Aws::EC2 | |
| 400 432 | 
             
                #   without actually making the request, and provides an error response.
         | 
| 401 433 | 
             
                #   If you have the required permissions, the error response is
         | 
| 402 434 | 
             
                #   `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
         | 
| 403 | 
            -
                # @ | 
| 435 | 
            +
                # @option options [Array<Types::TagSpecification>] :tag_specifications
         | 
| 436 | 
            +
                #   \[VPC Only\] The tags applied to the security group rule.
         | 
| 437 | 
            +
                # @return [Types::AuthorizeSecurityGroupIngressResult]
         | 
| 404 438 | 
             
                def authorize_ingress(options = {})
         | 
| 405 439 | 
             
                  options = options.merge(group_id: @id)
         | 
| 406 440 | 
             
                  resp = @client.authorize_security_group_ingress(options)
         | 
| @@ -521,18 +555,21 @@ module Aws::EC2 | |
| 521 555 | 
             
                #           {
         | 
| 522 556 | 
             
                #             cidr_ip: "String",
         | 
| 523 557 | 
             
                #             description: "String",
         | 
| 558 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 524 559 | 
             
                #           },
         | 
| 525 560 | 
             
                #         ],
         | 
| 526 561 | 
             
                #         ipv_6_ranges: [
         | 
| 527 562 | 
             
                #           {
         | 
| 528 563 | 
             
                #             cidr_ipv_6: "String",
         | 
| 529 564 | 
             
                #             description: "String",
         | 
| 565 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 530 566 | 
             
                #           },
         | 
| 531 567 | 
             
                #         ],
         | 
| 532 568 | 
             
                #         prefix_list_ids: [
         | 
| 533 569 | 
             
                #           {
         | 
| 534 570 | 
             
                #             description: "String",
         | 
| 535 571 | 
             
                #             prefix_list_id: "String",
         | 
| 572 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 536 573 | 
             
                #           },
         | 
| 537 574 | 
             
                #         ],
         | 
| 538 575 | 
             
                #         to_port: 1,
         | 
| @@ -545,10 +582,12 @@ module Aws::EC2 | |
| 545 582 | 
             
                #             user_id: "String",
         | 
| 546 583 | 
             
                #             vpc_id: "String",
         | 
| 547 584 | 
             
                #             vpc_peering_connection_id: "String",
         | 
| 585 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 548 586 | 
             
                #           },
         | 
| 549 587 | 
             
                #         ],
         | 
| 550 588 | 
             
                #       },
         | 
| 551 589 | 
             
                #     ],
         | 
| 590 | 
            +
                #     security_group_rule_ids: ["String"],
         | 
| 552 591 | 
             
                #     cidr_ip: "String",
         | 
| 553 592 | 
             
                #     from_port: 1,
         | 
| 554 593 | 
             
                #     ip_protocol: "String",
         | 
| @@ -565,6 +604,8 @@ module Aws::EC2 | |
| 565 604 | 
             
                # @option options [Array<Types::IpPermission>] :ip_permissions
         | 
| 566 605 | 
             
                #   The sets of IP permissions. You can't specify a destination security
         | 
| 567 606 | 
             
                #   group and a CIDR IP address range in the same set of permissions.
         | 
| 607 | 
            +
                # @option options [Array<String>] :security_group_rule_ids
         | 
| 608 | 
            +
                #   The IDs of the security group rules.
         | 
| 568 609 | 
             
                # @option options [String] :cidr_ip
         | 
| 569 610 | 
             
                #   Not supported. Use a set of IP permissions to specify the CIDR.
         | 
| 570 611 | 
             
                # @option options [Integer] :from_port
         | 
| @@ -601,18 +642,21 @@ module Aws::EC2 | |
| 601 642 | 
             
                #           {
         | 
| 602 643 | 
             
                #             cidr_ip: "String",
         | 
| 603 644 | 
             
                #             description: "String",
         | 
| 645 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 604 646 | 
             
                #           },
         | 
| 605 647 | 
             
                #         ],
         | 
| 606 648 | 
             
                #         ipv_6_ranges: [
         | 
| 607 649 | 
             
                #           {
         | 
| 608 650 | 
             
                #             cidr_ipv_6: "String",
         | 
| 609 651 | 
             
                #             description: "String",
         | 
| 652 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 610 653 | 
             
                #           },
         | 
| 611 654 | 
             
                #         ],
         | 
| 612 655 | 
             
                #         prefix_list_ids: [
         | 
| 613 656 | 
             
                #           {
         | 
| 614 657 | 
             
                #             description: "String",
         | 
| 615 658 | 
             
                #             prefix_list_id: "String",
         | 
| 659 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 616 660 | 
             
                #           },
         | 
| 617 661 | 
             
                #         ],
         | 
| 618 662 | 
             
                #         to_port: 1,
         | 
| @@ -625,6 +669,7 @@ module Aws::EC2 | |
| 625 669 | 
             
                #             user_id: "String",
         | 
| 626 670 | 
             
                #             vpc_id: "String",
         | 
| 627 671 | 
             
                #             vpc_peering_connection_id: "String",
         | 
| 672 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 628 673 | 
             
                #           },
         | 
| 629 674 | 
             
                #         ],
         | 
| 630 675 | 
             
                #       },
         | 
| @@ -634,6 +679,7 @@ module Aws::EC2 | |
| 634 679 | 
             
                #     source_security_group_owner_id: "String",
         | 
| 635 680 | 
             
                #     to_port: 1,
         | 
| 636 681 | 
             
                #     dry_run: false,
         | 
| 682 | 
            +
                #     security_group_rule_ids: ["String"],
         | 
| 637 683 | 
             
                #   })
         | 
| 638 684 | 
             
                # @param [Hash] options ({})
         | 
| 639 685 | 
             
                # @option options [String] :cidr_ip
         | 
| @@ -680,6 +726,8 @@ module Aws::EC2 | |
| 680 726 | 
             
                #   without actually making the request, and provides an error response.
         | 
| 681 727 | 
             
                #   If you have the required permissions, the error response is
         | 
| 682 728 | 
             
                #   `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
         | 
| 729 | 
            +
                # @option options [Array<String>] :security_group_rule_ids
         | 
| 730 | 
            +
                #   The IDs of the security group rules.
         | 
| 683 731 | 
             
                # @return [Types::RevokeSecurityGroupIngressResult]
         | 
| 684 732 | 
             
                def revoke_ingress(options = {})
         | 
| 685 733 | 
             
                  options = options.merge(group_id: @id)
         | 
    
        data/lib/aws-sdk-ec2/snapshot.rb
    CHANGED
    
    | @@ -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",
         | 
    
        data/lib/aws-sdk-ec2/subnet.rb
    CHANGED
    
    | @@ -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",
         | 
| @@ -757,7 +757,7 @@ module Aws::EC2 | |
| 757 757 | 
             
                #     interface_type: "efa", # accepts efa
         | 
| 758 758 | 
             
                #     tag_specifications: [
         | 
| 759 759 | 
             
                #       {
         | 
| 760 | 
            -
                #         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
         | 
| 760 | 
            +
                #         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
         | 
| 761 761 | 
             
                #         tags: [
         | 
| 762 762 | 
             
                #           {
         | 
| 763 763 | 
             
                #             key: "String",
         | 
    
        data/lib/aws-sdk-ec2/types.rb
    CHANGED
    
    | @@ -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",
         | 
| @@ -698,7 +698,7 @@ module Aws::EC2 | |
| 698 698 | 
             
                #         quantity: 1, # required
         | 
| 699 699 | 
             
                #         tag_specifications: [
         | 
| 700 700 | 
             
                #           {
         | 
| 701 | 
            -
                #             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
         | 
| 701 | 
            +
                #             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
         | 
| 702 702 | 
             
                #             tags: [
         | 
| 703 703 | 
             
                #               {
         | 
| 704 704 | 
             
                #                 key: "String",
         | 
| @@ -2417,18 +2417,21 @@ module Aws::EC2 | |
| 2417 2417 | 
             
                #               {
         | 
| 2418 2418 | 
             
                #                 cidr_ip: "String",
         | 
| 2419 2419 | 
             
                #                 description: "String",
         | 
| 2420 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2420 2421 | 
             
                #               },
         | 
| 2421 2422 | 
             
                #             ],
         | 
| 2422 2423 | 
             
                #             ipv_6_ranges: [
         | 
| 2423 2424 | 
             
                #               {
         | 
| 2424 2425 | 
             
                #                 cidr_ipv_6: "String",
         | 
| 2425 2426 | 
             
                #                 description: "String",
         | 
| 2427 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2426 2428 | 
             
                #               },
         | 
| 2427 2429 | 
             
                #             ],
         | 
| 2428 2430 | 
             
                #             prefix_list_ids: [
         | 
| 2429 2431 | 
             
                #               {
         | 
| 2430 2432 | 
             
                #                 description: "String",
         | 
| 2431 2433 | 
             
                #                 prefix_list_id: "String",
         | 
| 2434 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2432 2435 | 
             
                #               },
         | 
| 2433 2436 | 
             
                #             ],
         | 
| 2434 2437 | 
             
                #             to_port: 1,
         | 
| @@ -2441,6 +2444,18 @@ module Aws::EC2 | |
| 2441 2444 | 
             
                #                 user_id: "String",
         | 
| 2442 2445 | 
             
                #                 vpc_id: "String",
         | 
| 2443 2446 | 
             
                #                 vpc_peering_connection_id: "String",
         | 
| 2447 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2448 | 
            +
                #               },
         | 
| 2449 | 
            +
                #             ],
         | 
| 2450 | 
            +
                #           },
         | 
| 2451 | 
            +
                #         ],
         | 
| 2452 | 
            +
                #         tag_specifications: [
         | 
| 2453 | 
            +
                #           {
         | 
| 2454 | 
            +
                #             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
         | 
| 2455 | 
            +
                #             tags: [
         | 
| 2456 | 
            +
                #               {
         | 
| 2457 | 
            +
                #                 key: "String",
         | 
| 2458 | 
            +
                #                 value: "String",
         | 
| 2444 2459 | 
             
                #               },
         | 
| 2445 2460 | 
             
                #             ],
         | 
| 2446 2461 | 
             
                #           },
         | 
| @@ -2470,6 +2485,10 @@ module Aws::EC2 | |
| 2470 2485 | 
             
                #   permissions.
         | 
| 2471 2486 | 
             
                #   @return [Array<Types::IpPermission>]
         | 
| 2472 2487 | 
             
                #
         | 
| 2488 | 
            +
                # @!attribute [rw] tag_specifications
         | 
| 2489 | 
            +
                #   The tags applied to the security group rule.
         | 
| 2490 | 
            +
                #   @return [Array<Types::TagSpecification>]
         | 
| 2491 | 
            +
                #
         | 
| 2473 2492 | 
             
                # @!attribute [rw] cidr_ip
         | 
| 2474 2493 | 
             
                #   Not supported. Use a set of IP permissions to specify the CIDR.
         | 
| 2475 2494 | 
             
                #   @return [String]
         | 
| @@ -2503,6 +2522,7 @@ module Aws::EC2 | |
| 2503 2522 | 
             
                  :dry_run,
         | 
| 2504 2523 | 
             
                  :group_id,
         | 
| 2505 2524 | 
             
                  :ip_permissions,
         | 
| 2525 | 
            +
                  :tag_specifications,
         | 
| 2506 2526 | 
             
                  :cidr_ip,
         | 
| 2507 2527 | 
             
                  :from_port,
         | 
| 2508 2528 | 
             
                  :ip_protocol,
         | 
| @@ -2513,6 +2533,24 @@ module Aws::EC2 | |
| 2513 2533 | 
             
                  include Aws::Structure
         | 
| 2514 2534 | 
             
                end
         | 
| 2515 2535 |  | 
| 2536 | 
            +
                # @!attribute [rw] return
         | 
| 2537 | 
            +
                #   Returns `true` if the request succeeds; otherwise, returns an error.
         | 
| 2538 | 
            +
                #   @return [Boolean]
         | 
| 2539 | 
            +
                #
         | 
| 2540 | 
            +
                # @!attribute [rw] security_group_rules
         | 
| 2541 | 
            +
                #   Information about the outbound (egress) security group rules that
         | 
| 2542 | 
            +
                #   were added.
         | 
| 2543 | 
            +
                #   @return [Array<Types::SecurityGroupRule>]
         | 
| 2544 | 
            +
                #
         | 
| 2545 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressResult AWS API Documentation
         | 
| 2546 | 
            +
                #
         | 
| 2547 | 
            +
                class AuthorizeSecurityGroupEgressResult < Struct.new(
         | 
| 2548 | 
            +
                  :return,
         | 
| 2549 | 
            +
                  :security_group_rules)
         | 
| 2550 | 
            +
                  SENSITIVE = []
         | 
| 2551 | 
            +
                  include Aws::Structure
         | 
| 2552 | 
            +
                end
         | 
| 2553 | 
            +
             | 
| 2516 2554 | 
             
                # @note When making an API call, you may pass AuthorizeSecurityGroupIngressRequest
         | 
| 2517 2555 | 
             
                #   data as a hash:
         | 
| 2518 2556 | 
             
                #
         | 
| @@ -2529,18 +2567,21 @@ module Aws::EC2 | |
| 2529 2567 | 
             
                #               {
         | 
| 2530 2568 | 
             
                #                 cidr_ip: "String",
         | 
| 2531 2569 | 
             
                #                 description: "String",
         | 
| 2570 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2532 2571 | 
             
                #               },
         | 
| 2533 2572 | 
             
                #             ],
         | 
| 2534 2573 | 
             
                #             ipv_6_ranges: [
         | 
| 2535 2574 | 
             
                #               {
         | 
| 2536 2575 | 
             
                #                 cidr_ipv_6: "String",
         | 
| 2537 2576 | 
             
                #                 description: "String",
         | 
| 2577 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2538 2578 | 
             
                #               },
         | 
| 2539 2579 | 
             
                #             ],
         | 
| 2540 2580 | 
             
                #             prefix_list_ids: [
         | 
| 2541 2581 | 
             
                #               {
         | 
| 2542 2582 | 
             
                #                 description: "String",
         | 
| 2543 2583 | 
             
                #                 prefix_list_id: "String",
         | 
| 2584 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2544 2585 | 
             
                #               },
         | 
| 2545 2586 | 
             
                #             ],
         | 
| 2546 2587 | 
             
                #             to_port: 1,
         | 
| @@ -2553,6 +2594,7 @@ module Aws::EC2 | |
| 2553 2594 | 
             
                #                 user_id: "String",
         | 
| 2554 2595 | 
             
                #                 vpc_id: "String",
         | 
| 2555 2596 | 
             
                #                 vpc_peering_connection_id: "String",
         | 
| 2597 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 2556 2598 | 
             
                #               },
         | 
| 2557 2599 | 
             
                #             ],
         | 
| 2558 2600 | 
             
                #           },
         | 
| @@ -2562,6 +2604,17 @@ module Aws::EC2 | |
| 2562 2604 | 
             
                #         source_security_group_owner_id: "String",
         | 
| 2563 2605 | 
             
                #         to_port: 1,
         | 
| 2564 2606 | 
             
                #         dry_run: false,
         | 
| 2607 | 
            +
                #         tag_specifications: [
         | 
| 2608 | 
            +
                #           {
         | 
| 2609 | 
            +
                #             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
         | 
| 2610 | 
            +
                #             tags: [
         | 
| 2611 | 
            +
                #               {
         | 
| 2612 | 
            +
                #                 key: "String",
         | 
| 2613 | 
            +
                #                 value: "String",
         | 
| 2614 | 
            +
                #               },
         | 
| 2615 | 
            +
                #             ],
         | 
| 2616 | 
            +
                #           },
         | 
| 2617 | 
            +
                #         ],
         | 
| 2565 2618 | 
             
                #       }
         | 
| 2566 2619 | 
             
                #
         | 
| 2567 2620 | 
             
                # @!attribute [rw] cidr_ip
         | 
| @@ -2604,7 +2657,7 @@ module Aws::EC2 | |
| 2604 2657 | 
             
                #
         | 
| 2605 2658 | 
             
                #   \[VPC only\] Use `-1` to specify all protocols. If you specify `-1`
         | 
| 2606 2659 | 
             
                #   or a protocol other than `tcp`, `udp`, or `icmp`, traffic on all
         | 
| 2607 | 
            -
                #   ports is allowed, regardless of any ports you specify.
         | 
| 2660 | 
            +
                #   ports is allowed, regardless of any ports that you specify.
         | 
| 2608 2661 | 
             
                #
         | 
| 2609 2662 | 
             
                #   Alternatively, use a set of IP permissions to specify multiple rules
         | 
| 2610 2663 | 
             
                #   and a description for the rule.
         | 
| @@ -2651,6 +2704,10 @@ module Aws::EC2 | |
| 2651 2704 | 
             
                #   `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
         | 
| 2652 2705 | 
             
                #   @return [Boolean]
         | 
| 2653 2706 | 
             
                #
         | 
| 2707 | 
            +
                # @!attribute [rw] tag_specifications
         | 
| 2708 | 
            +
                #   \[VPC Only\] The tags applied to the security group rule.
         | 
| 2709 | 
            +
                #   @return [Array<Types::TagSpecification>]
         | 
| 2710 | 
            +
                #
         | 
| 2654 2711 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressRequest AWS API Documentation
         | 
| 2655 2712 | 
             
                #
         | 
| 2656 2713 | 
             
                class AuthorizeSecurityGroupIngressRequest < Struct.new(
         | 
| @@ -2663,7 +2720,26 @@ module Aws::EC2 | |
| 2663 2720 | 
             
                  :source_security_group_name,
         | 
| 2664 2721 | 
             
                  :source_security_group_owner_id,
         | 
| 2665 2722 | 
             
                  :to_port,
         | 
| 2666 | 
            -
                  :dry_run | 
| 2723 | 
            +
                  :dry_run,
         | 
| 2724 | 
            +
                  :tag_specifications)
         | 
| 2725 | 
            +
                  SENSITIVE = []
         | 
| 2726 | 
            +
                  include Aws::Structure
         | 
| 2727 | 
            +
                end
         | 
| 2728 | 
            +
             | 
| 2729 | 
            +
                # @!attribute [rw] return
         | 
| 2730 | 
            +
                #   Returns `true` if the request succeeds; otherwise, returns an error.
         | 
| 2731 | 
            +
                #   @return [Boolean]
         | 
| 2732 | 
            +
                #
         | 
| 2733 | 
            +
                # @!attribute [rw] security_group_rules
         | 
| 2734 | 
            +
                #   Information about the inbound (ingress) security group rules that
         | 
| 2735 | 
            +
                #   were added.
         | 
| 2736 | 
            +
                #   @return [Array<Types::SecurityGroupRule>]
         | 
| 2737 | 
            +
                #
         | 
| 2738 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressResult AWS API Documentation
         | 
| 2739 | 
            +
                #
         | 
| 2740 | 
            +
                class AuthorizeSecurityGroupIngressResult < Struct.new(
         | 
| 2741 | 
            +
                  :return,
         | 
| 2742 | 
            +
                  :security_group_rules)
         | 
| 2667 2743 | 
             
                  SENSITIVE = []
         | 
| 2668 2744 | 
             
                  include Aws::Structure
         | 
| 2669 2745 | 
             
                end
         | 
| @@ -5156,7 +5232,7 @@ module Aws::EC2 | |
| 5156 5232 | 
             
                #         source_snapshot_id: "String", # required
         | 
| 5157 5233 | 
             
                #         tag_specifications: [
         | 
| 5158 5234 | 
             
                #           {
         | 
| 5159 | 
            -
                #             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
         | 
| 5235 | 
            +
                #             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
         | 
| 5160 5236 | 
             
                #             tags: [
         | 
| 5161 5237 | 
             
                #               {
         | 
| 5162 5238 | 
             
                #                 key: "String",
         | 
| @@ -5381,7 +5457,7 @@ module Aws::EC2 | |
| 5381 5457 | 
             
                #         instance_match_criteria: "open", # accepts open, targeted
         | 
| 5382 5458 | 
             
                #         tag_specifications: [
         | 
| 5383 5459 | 
             
                #           {
         | 
| 5384 | 
            -
                #             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
         | 
| 5460 | 
            +
                #             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
         | 
| 5385 5461 | 
             
                #             tags: [
         | 
| 5386 5462 | 
             
                #               {
         | 
| 5387 5463 | 
             
                #                 key: "String",
         | 
| @@ -5560,7 +5636,7 @@ module Aws::EC2 | |
| 5560 5636 | 
             
                #         vpc_id: "VpcId", # required
         | 
| 5561 5637 | 
             
                #         tag_specifications: [
         | 
| 5562 5638 | 
             
                #           {
         | 
| 5563 | 
            -
                #             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
         | 
| 5639 | 
            +
                #             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
         | 
| 5564 5640 | 
             
                #             tags: [
         | 
| 5565 5641 | 
             
                #               {
         | 
| 5566 5642 | 
             
                #                 key: "String",
         | 
| @@ -5659,7 +5735,7 @@ module Aws::EC2 | |
| 5659 5735 | 
             
                #         client_token: "String",
         | 
| 5660 5736 | 
             
                #         tag_specifications: [
         | 
| 5661 5737 | 
             
                #           {
         | 
| 5662 | 
            -
                #             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
         | 
| 5738 | 
            +
                #             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
         | 
| 5663 5739 | 
             
                #             tags: [
         | 
| 5664 5740 | 
             
                #               {
         | 
| 5665 5741 | 
             
                #                 key: "String",
         | 
| @@ -5952,7 +6028,7 @@ module Aws::EC2 | |
| 5952 6028 | 
             
                #         type: "ipsec.1", # required, accepts ipsec.1
         | 
| 5953 6029 | 
             
                #         tag_specifications: [
         | 
| 5954 6030 | 
             
                #           {
         | 
| 5955 | 
            -
                #             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
         | 
| 6031 | 
            +
                #             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
         | 
| 5956 6032 | 
             
                #             tags: [
         | 
| 5957 6033 | 
             
                #               {
         | 
| 5958 6034 | 
             
                #                 key: "String",
         | 
| @@ -6116,7 +6192,7 @@ module Aws::EC2 | |
| 6116 6192 | 
             
                #         ],
         | 
| 6117 6193 | 
             
                #         tag_specifications: [
         | 
| 6118 6194 | 
             
                #           {
         | 
| 6119 | 
            -
                #             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
         | 
| 6195 | 
            +
                #             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
         | 
| 6120 6196 | 
             
                #             tags: [
         | 
| 6121 6197 | 
             
                #               {
         | 
| 6122 6198 | 
             
                #                 key: "String",
         | 
| @@ -6174,7 +6250,7 @@ module Aws::EC2 | |
| 6174 6250 | 
             
                #         vpc_id: "VpcId", # required
         | 
| 6175 6251 | 
             
                #         tag_specifications: [
         | 
| 6176 6252 | 
             
                #           {
         | 
| 6177 | 
            -
                #             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
         | 
| 6253 | 
            +
                #             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
         | 
| 6178 6254 | 
             
                #             tags: [
         | 
| 6179 6255 | 
             
                #               {
         | 
| 6180 6256 | 
             
                #                 key: "String",
         | 
| @@ -6395,7 +6471,7 @@ module Aws::EC2 | |
| 6395 6471 | 
             
                #         replace_unhealthy_instances: false,
         | 
| 6396 6472 | 
             
                #         tag_specifications: [
         | 
| 6397 6473 | 
             
                #           {
         | 
| 6398 | 
            -
                #             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
         | 
| 6474 | 
            +
                #             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
         | 
| 6399 6475 | 
             
                #             tags: [
         | 
| 6400 6476 | 
             
                #               {
         | 
| 6401 6477 | 
             
                #                 key: "String",
         | 
| @@ -6570,7 +6646,7 @@ module Aws::EC2 | |
| 6570 6646 | 
             
                #         log_format: "String",
         | 
| 6571 6647 | 
             
                #         tag_specifications: [
         | 
| 6572 6648 | 
             
                #           {
         | 
| 6573 | 
            -
                #             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
         | 
| 6649 | 
            +
                #             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
         | 
| 6574 6650 | 
             
                #             tags: [
         | 
| 6575 6651 | 
             
                #               {
         | 
| 6576 6652 | 
             
                #                 key: "String",
         | 
| @@ -6764,7 +6840,7 @@ module Aws::EC2 | |
| 6764 6840 | 
             
                #         client_token: "String",
         | 
| 6765 6841 | 
             
                #         tag_specifications: [
         | 
| 6766 6842 | 
             
                #           {
         | 
| 6767 | 
            -
                #             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
         | 
| 6843 | 
            +
                #             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
         | 
| 6768 6844 | 
             
                #             tags: [
         | 
| 6769 6845 | 
             
                #               {
         | 
| 6770 6846 | 
             
                #                 key: "String",
         | 
| @@ -6873,7 +6949,7 @@ module Aws::EC2 | |
| 6873 6949 | 
             
                #         no_reboot: false,
         | 
| 6874 6950 | 
             
                #         tag_specifications: [
         | 
| 6875 6951 | 
             
                #           {
         | 
| 6876 | 
            -
                #             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
         | 
| 6952 | 
            +
                #             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
         | 
| 6877 6953 | 
             
                #             tags: [
         | 
| 6878 6954 | 
             
                #               {
         | 
| 6879 6955 | 
             
                #                 key: "String",
         | 
| @@ -6983,7 +7059,7 @@ module Aws::EC2 | |
| 6983 7059 | 
             
                #         target_environment: "citrix", # required, accepts citrix, vmware, microsoft
         | 
| 6984 7060 | 
             
                #         tag_specifications: [
         | 
| 6985 7061 | 
             
                #           {
         | 
| 6986 | 
            -
                #             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
         | 
| 7062 | 
            +
                #             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
         | 
| 6987 7063 | 
             
                #             tags: [
         | 
| 6988 7064 | 
             
                #               {
         | 
| 6989 7065 | 
             
                #                 key: "String",
         | 
| @@ -7045,7 +7121,7 @@ module Aws::EC2 | |
| 7045 7121 | 
             
                #       {
         | 
| 7046 7122 | 
             
                #         tag_specifications: [
         | 
| 7047 7123 | 
             
                #           {
         | 
| 7048 | 
            -
                #             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
         | 
| 7124 | 
            +
                #             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
         | 
| 7049 7125 | 
             
                #             tags: [
         | 
| 7050 7126 | 
             
                #               {
         | 
| 7051 7127 | 
             
                #                 key: "String",
         | 
| @@ -7097,7 +7173,7 @@ module Aws::EC2 | |
| 7097 7173 | 
             
                #         dry_run: false,
         | 
| 7098 7174 | 
             
                #         tag_specifications: [
         | 
| 7099 7175 | 
             
                #           {
         | 
| 7100 | 
            -
                #             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
         | 
| 7176 | 
            +
                #             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
         | 
| 7101 7177 | 
             
                #             tags: [
         | 
| 7102 7178 | 
             
                #               {
         | 
| 7103 7179 | 
             
                #                 key: "String",
         | 
| @@ -7217,7 +7293,7 @@ module Aws::EC2 | |
| 7217 7293 | 
             
                #           user_data: "String",
         | 
| 7218 7294 | 
             
                #           tag_specifications: [
         | 
| 7219 7295 | 
             
                #             {
         | 
| 7220 | 
            -
                #               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
         | 
| 7296 | 
            +
                #               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
         | 
| 7221 7297 | 
             
                #               tags: [
         | 
| 7222 7298 | 
             
                #                 {
         | 
| 7223 7299 | 
             
                #                   key: "String",
         | 
| @@ -7282,7 +7358,7 @@ module Aws::EC2 | |
| 7282 7358 | 
             
                #         },
         | 
| 7283 7359 | 
             
                #         tag_specifications: [
         | 
| 7284 7360 | 
             
                #           {
         | 
| 7285 | 
            -
                #             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
         | 
| 7361 | 
            +
                #             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
         | 
| 7286 7362 | 
             
                #             tags: [
         | 
| 7287 7363 | 
             
                #               {
         | 
| 7288 7364 | 
             
                #                 key: "String",
         | 
| @@ -7444,7 +7520,7 @@ module Aws::EC2 | |
| 7444 7520 | 
             
                #           user_data: "String",
         | 
| 7445 7521 | 
             
                #           tag_specifications: [
         | 
| 7446 7522 | 
             
                #             {
         | 
| 7447 | 
            -
                #               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
         | 
| 7523 | 
            +
                #               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
         | 
| 7448 7524 | 
             
                #               tags: [
         | 
| 7449 7525 | 
             
                #                 {
         | 
| 7450 7526 | 
             
                #                   key: "String",
         | 
| @@ -7649,7 +7725,7 @@ module Aws::EC2 | |
| 7649 7725 | 
             
                #         vpc_id: "VpcId", # required
         | 
| 7650 7726 | 
             
                #         tag_specifications: [
         | 
| 7651 7727 | 
             
                #           {
         | 
| 7652 | 
            -
                #             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
         | 
| 7728 | 
            +
                #             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
         | 
| 7653 7729 | 
             
                #             tags: [
         | 
| 7654 7730 | 
             
                #               {
         | 
| 7655 7731 | 
             
                #                 key: "String",
         | 
| @@ -7718,7 +7794,7 @@ module Aws::EC2 | |
| 7718 7794 | 
             
                #         max_entries: 1, # required
         | 
| 7719 7795 | 
             
                #         tag_specifications: [
         | 
| 7720 7796 | 
             
                #           {
         | 
| 7721 | 
            -
                #             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
         | 
| 7797 | 
            +
                #             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
         | 
| 7722 7798 | 
             
                #             tags: [
         | 
| 7723 7799 | 
             
                #               {
         | 
| 7724 7800 | 
             
                #                 key: "String",
         | 
| @@ -7813,7 +7889,7 @@ module Aws::EC2 | |
| 7813 7889 | 
             
                #         subnet_id: "SubnetId", # required
         | 
| 7814 7890 | 
             
                #         tag_specifications: [
         | 
| 7815 7891 | 
             
                #           {
         | 
| 7816 | 
            -
                #             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
         | 
| 7892 | 
            +
                #             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
         | 
| 7817 7893 | 
             
                #             tags: [
         | 
| 7818 7894 | 
             
                #               {
         | 
| 7819 7895 | 
             
                #                 key: "String",
         | 
| @@ -8002,7 +8078,7 @@ module Aws::EC2 | |
| 8002 8078 | 
             
                #         vpc_id: "VpcId", # required
         | 
| 8003 8079 | 
             
                #         tag_specifications: [
         | 
| 8004 8080 | 
             
                #           {
         | 
| 8005 | 
            -
                #             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
         | 
| 8081 | 
            +
                #             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
         | 
| 8006 8082 | 
             
                #             tags: [
         | 
| 8007 8083 | 
             
                #               {
         | 
| 8008 8084 | 
             
                #                 key: "String",
         | 
| @@ -8062,7 +8138,7 @@ module Aws::EC2 | |
| 8062 8138 | 
             
                #         destination_port: 1,
         | 
| 8063 8139 | 
             
                #         tag_specifications: [
         | 
| 8064 8140 | 
             
                #           {
         | 
| 8065 | 
            -
                #             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
         | 
| 8141 | 
            +
                #             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
         | 
| 8066 8142 | 
             
                #             tags: [
         | 
| 8067 8143 | 
             
                #               {
         | 
| 8068 8144 | 
             
                #                 key: "String",
         | 
| @@ -8241,7 +8317,7 @@ module Aws::EC2 | |
| 8241 8317 | 
             
                #         subnet_id: "SubnetId", # required
         | 
| 8242 8318 | 
             
                #         tag_specifications: [
         | 
| 8243 8319 | 
             
                #           {
         | 
| 8244 | 
            -
                #             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
         | 
| 8320 | 
            +
                #             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
         | 
| 8245 8321 | 
             
                #             tags: [
         | 
| 8246 8322 | 
             
                #               {
         | 
| 8247 8323 | 
             
                #                 key: "String",
         | 
| @@ -8371,7 +8447,7 @@ module Aws::EC2 | |
| 8371 8447 | 
             
                #         partition_count: 1,
         | 
| 8372 8448 | 
             
                #         tag_specifications: [
         | 
| 8373 8449 | 
             
                #           {
         | 
| 8374 | 
            -
                #             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
         | 
| 8450 | 
            +
                #             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
         | 
| 8375 8451 | 
             
                #             tags: [
         | 
| 8376 8452 | 
             
                #               {
         | 
| 8377 8453 | 
             
                #                 key: "String",
         | 
| @@ -8443,7 +8519,7 @@ module Aws::EC2 | |
| 8443 8519 | 
             
                #         dry_run: false,
         | 
| 8444 8520 | 
             
                #         tag_specifications: [
         | 
| 8445 8521 | 
             
                #           {
         | 
| 8446 | 
            -
                #             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
         | 
| 8522 | 
            +
                #             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
         | 
| 8447 8523 | 
             
                #             tags: [
         | 
| 8448 8524 | 
             
                #               {
         | 
| 8449 8525 | 
             
                #                 key: "String",
         | 
| @@ -8591,7 +8667,7 @@ module Aws::EC2 | |
| 8591 8667 | 
             
                #         name: "String",
         | 
| 8592 8668 | 
             
                #         tag_specifications: [
         | 
| 8593 8669 | 
             
                #           {
         | 
| 8594 | 
            -
                #             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
         | 
| 8670 | 
            +
                #             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
         | 
| 8595 8671 | 
             
                #             tags: [
         | 
| 8596 8672 | 
             
                #               {
         | 
| 8597 8673 | 
             
                #                 key: "String",
         | 
| @@ -8797,7 +8873,7 @@ module Aws::EC2 | |
| 8797 8873 | 
             
                #         vpc_id: "VpcId", # required
         | 
| 8798 8874 | 
             
                #         tag_specifications: [
         | 
| 8799 8875 | 
             
                #           {
         | 
| 8800 | 
            -
                #             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
         | 
| 8876 | 
            +
                #             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
         | 
| 8801 8877 | 
             
                #             tags: [
         | 
| 8802 8878 | 
             
                #               {
         | 
| 8803 8879 | 
             
                #                 key: "String",
         | 
| @@ -8854,7 +8930,7 @@ module Aws::EC2 | |
| 8854 8930 | 
             
                #         vpc_id: "VpcId",
         | 
| 8855 8931 | 
             
                #         tag_specifications: [
         | 
| 8856 8932 | 
             
                #           {
         | 
| 8857 | 
            -
                #             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
         | 
| 8933 | 
            +
                #             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
         | 
| 8858 8934 | 
             
                #             tags: [
         | 
| 8859 8935 | 
             
                #               {
         | 
| 8860 8936 | 
             
                #                 key: "String",
         | 
| @@ -8942,7 +9018,7 @@ module Aws::EC2 | |
| 8942 9018 | 
             
                #         volume_id: "VolumeId", # required
         | 
| 8943 9019 | 
             
                #         tag_specifications: [
         | 
| 8944 9020 | 
             
                #           {
         | 
| 8945 | 
            -
                #             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
         | 
| 9021 | 
            +
                #             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
         | 
| 8946 9022 | 
             
                #             tags: [
         | 
| 8947 9023 | 
             
                #               {
         | 
| 8948 9024 | 
             
                #                 key: "String",
         | 
| @@ -9021,7 +9097,7 @@ module Aws::EC2 | |
| 9021 9097 | 
             
                #         outpost_arn: "String",
         | 
| 9022 9098 | 
             
                #         tag_specifications: [
         | 
| 9023 9099 | 
             
                #           {
         | 
| 9024 | 
            -
                #             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
         | 
| 9100 | 
            +
                #             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
         | 
| 9025 9101 | 
             
                #             tags: [
         | 
| 9026 9102 | 
             
                #               {
         | 
| 9027 9103 | 
             
                #                 key: "String",
         | 
| @@ -9233,7 +9309,7 @@ module Aws::EC2 | |
| 9233 9309 | 
             
                #       {
         | 
| 9234 9310 | 
             
                #         tag_specifications: [
         | 
| 9235 9311 | 
             
                #           {
         | 
| 9236 | 
            -
                #             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
         | 
| 9312 | 
            +
                #             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
         | 
| 9237 9313 | 
             
                #             tags: [
         | 
| 9238 9314 | 
             
                #               {
         | 
| 9239 9315 | 
             
                #                 key: "String",
         | 
| @@ -9386,7 +9462,7 @@ module Aws::EC2 | |
| 9386 9462 | 
             
                #         description: "String",
         | 
| 9387 9463 | 
             
                #         tag_specifications: [
         | 
| 9388 9464 | 
             
                #           {
         | 
| 9389 | 
            -
                #             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
         | 
| 9465 | 
            +
                #             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
         | 
| 9390 9466 | 
             
                #             tags: [
         | 
| 9391 9467 | 
             
                #               {
         | 
| 9392 9468 | 
             
                #                 key: "String",
         | 
| @@ -9609,7 +9685,7 @@ module Aws::EC2 | |
| 9609 9685 | 
             
                #         description: "String",
         | 
| 9610 9686 | 
             
                #         tag_specifications: [
         | 
| 9611 9687 | 
             
                #           {
         | 
| 9612 | 
            -
                #             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
         | 
| 9688 | 
            +
                #             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
         | 
| 9613 9689 | 
             
                #             tags: [
         | 
| 9614 9690 | 
             
                #               {
         | 
| 9615 9691 | 
             
                #                 key: "String",
         | 
| @@ -9742,7 +9818,7 @@ module Aws::EC2 | |
| 9742 9818 | 
             
                #         description: "String",
         | 
| 9743 9819 | 
             
                #         tag_specifications: [
         | 
| 9744 9820 | 
             
                #           {
         | 
| 9745 | 
            -
                #             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
         | 
| 9821 | 
            +
                #             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
         | 
| 9746 9822 | 
             
                #             tags: [
         | 
| 9747 9823 | 
             
                #               {
         | 
| 9748 9824 | 
             
                #                 key: "String",
         | 
| @@ -9841,7 +9917,7 @@ module Aws::EC2 | |
| 9841 9917 | 
             
                #         inside_cidr_blocks: ["String"], # required
         | 
| 9842 9918 | 
             
                #         tag_specifications: [
         | 
| 9843 9919 | 
             
                #           {
         | 
| 9844 | 
            -
                #             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
         | 
| 9920 | 
            +
                #             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
         | 
| 9845 9921 | 
             
                #             tags: [
         | 
| 9846 9922 | 
             
                #               {
         | 
| 9847 9923 | 
             
                #                 key: "String",
         | 
| @@ -9928,7 +10004,7 @@ module Aws::EC2 | |
| 9928 10004 | 
             
                #         },
         | 
| 9929 10005 | 
             
                #         tag_specifications: [
         | 
| 9930 10006 | 
             
                #           {
         | 
| 9931 | 
            -
                #             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
         | 
| 10007 | 
            +
                #             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
         | 
| 9932 10008 | 
             
                #             tags: [
         | 
| 9933 10009 | 
             
                #               {
         | 
| 9934 10010 | 
             
                #                 key: "String",
         | 
| @@ -10016,7 +10092,7 @@ module Aws::EC2 | |
| 10016 10092 | 
             
                #         },
         | 
| 10017 10093 | 
             
                #         tag_specifications: [
         | 
| 10018 10094 | 
             
                #           {
         | 
| 10019 | 
            -
                #             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
         | 
| 10095 | 
            +
                #             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
         | 
| 10020 10096 | 
             
                #             tags: [
         | 
| 10021 10097 | 
             
                #               {
         | 
| 10022 10098 | 
             
                #                 key: "String",
         | 
| @@ -10117,7 +10193,7 @@ module Aws::EC2 | |
| 10117 10193 | 
             
                #         peer_region: "String", # required
         | 
| 10118 10194 | 
             
                #         tag_specifications: [
         | 
| 10119 10195 | 
             
                #           {
         | 
| 10120 | 
            -
                #             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
         | 
| 10196 | 
            +
                #             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
         | 
| 10121 10197 | 
             
                #             tags: [
         | 
| 10122 10198 | 
             
                #               {
         | 
| 10123 10199 | 
             
                #                 key: "String",
         | 
| @@ -10257,7 +10333,7 @@ module Aws::EC2 | |
| 10257 10333 | 
             
                #         },
         | 
| 10258 10334 | 
             
                #         tag_specifications: [
         | 
| 10259 10335 | 
             
                #           {
         | 
| 10260 | 
            -
                #             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
         | 
| 10336 | 
            +
                #             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
         | 
| 10261 10337 | 
             
                #             tags: [
         | 
| 10262 10338 | 
             
                #               {
         | 
| 10263 10339 | 
             
                #                 key: "String",
         | 
| @@ -10377,7 +10453,7 @@ module Aws::EC2 | |
| 10377 10453 | 
             
                #         transit_gateway_id: "TransitGatewayId", # required
         | 
| 10378 10454 | 
             
                #         tag_specifications: [
         | 
| 10379 10455 | 
             
                #           {
         | 
| 10380 | 
            -
                #             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
         | 
| 10456 | 
            +
                #             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
         | 
| 10381 10457 | 
             
                #             tags: [
         | 
| 10382 10458 | 
             
                #               {
         | 
| 10383 10459 | 
             
                #                 key: "String",
         | 
| @@ -10440,7 +10516,7 @@ module Aws::EC2 | |
| 10440 10516 | 
             
                #         },
         | 
| 10441 10517 | 
             
                #         tag_specifications: [
         | 
| 10442 10518 | 
             
                #           {
         | 
| 10443 | 
            -
                #             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
         | 
| 10519 | 
            +
                #             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
         | 
| 10444 10520 | 
             
                #             tags: [
         | 
| 10445 10521 | 
             
                #               {
         | 
| 10446 10522 | 
             
                #                 key: "String",
         | 
| @@ -10624,7 +10700,7 @@ module Aws::EC2 | |
| 10624 10700 | 
             
                #         dry_run: false,
         | 
| 10625 10701 | 
             
                #         tag_specifications: [
         | 
| 10626 10702 | 
             
                #           {
         | 
| 10627 | 
            -
                #             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
         | 
| 10703 | 
            +
                #             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
         | 
| 10628 10704 | 
             
                #             tags: [
         | 
| 10629 10705 | 
             
                #               {
         | 
| 10630 10706 | 
             
                #                 key: "String",
         | 
| @@ -10907,7 +10983,7 @@ module Aws::EC2 | |
| 10907 10983 | 
             
                #         private_dns_enabled: false,
         | 
| 10908 10984 | 
             
                #         tag_specifications: [
         | 
| 10909 10985 | 
             
                #           {
         | 
| 10910 | 
            -
                #             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
         | 
| 10986 | 
            +
                #             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
         | 
| 10911 10987 | 
             
                #             tags: [
         | 
| 10912 10988 | 
             
                #               {
         | 
| 10913 10989 | 
             
                #                 key: "String",
         | 
| @@ -11044,7 +11120,7 @@ module Aws::EC2 | |
| 11044 11120 | 
             
                #         client_token: "String",
         | 
| 11045 11121 | 
             
                #         tag_specifications: [
         | 
| 11046 11122 | 
             
                #           {
         | 
| 11047 | 
            -
                #             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
         | 
| 11123 | 
            +
                #             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
         | 
| 11048 11124 | 
             
                #             tags: [
         | 
| 11049 11125 | 
             
                #               {
         | 
| 11050 11126 | 
             
                #                 key: "String",
         | 
| @@ -11140,7 +11216,7 @@ module Aws::EC2 | |
| 11140 11216 | 
             
                #         peer_region: "String",
         | 
| 11141 11217 | 
             
                #         tag_specifications: [
         | 
| 11142 11218 | 
             
                #           {
         | 
| 11143 | 
            -
                #             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
         | 
| 11219 | 
            +
                #             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
         | 
| 11144 11220 | 
             
                #             tags: [
         | 
| 11145 11221 | 
             
                #               {
         | 
| 11146 11222 | 
             
                #                 key: "String",
         | 
| @@ -11223,7 +11299,7 @@ module Aws::EC2 | |
| 11223 11299 | 
             
                #         ipv_6_cidr_block_network_border_group: "String",
         | 
| 11224 11300 | 
             
                #         tag_specifications: [
         | 
| 11225 11301 | 
             
                #           {
         | 
| 11226 | 
            -
                #             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
         | 
| 11302 | 
            +
                #             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
         | 
| 11227 11303 | 
             
                #             tags: [
         | 
| 11228 11304 | 
             
                #               {
         | 
| 11229 11305 | 
             
                #                 key: "String",
         | 
| @@ -11392,7 +11468,7 @@ module Aws::EC2 | |
| 11392 11468 | 
             
                #         },
         | 
| 11393 11469 | 
             
                #         tag_specifications: [
         | 
| 11394 11470 | 
             
                #           {
         | 
| 11395 | 
            -
                #             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
         | 
| 11471 | 
            +
                #             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
         | 
| 11396 11472 | 
             
                #             tags: [
         | 
| 11397 11473 | 
             
                #               {
         | 
| 11398 11474 | 
             
                #                 key: "String",
         | 
| @@ -11502,7 +11578,7 @@ module Aws::EC2 | |
| 11502 11578 | 
             
                #         type: "ipsec.1", # required, accepts ipsec.1
         | 
| 11503 11579 | 
             
                #         tag_specifications: [
         | 
| 11504 11580 | 
             
                #           {
         | 
| 11505 | 
            -
                #             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
         | 
| 11581 | 
            +
                #             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
         | 
| 11506 11582 | 
             
                #             tags: [
         | 
| 11507 11583 | 
             
                #               {
         | 
| 11508 11584 | 
             
                #                 key: "String",
         | 
| @@ -18607,7 +18683,7 @@ module Aws::EC2 | |
| 18607 18683 | 
             
                # @!attribute [rw] key_names
         | 
| 18608 18684 | 
             
                #   The key pair names.
         | 
| 18609 18685 | 
             
                #
         | 
| 18610 | 
            -
                #   Default: Describes all your key pairs.
         | 
| 18686 | 
            +
                #   Default: Describes all of your key pairs.
         | 
| 18611 18687 | 
             
                #   @return [Array<String>]
         | 
| 18612 18688 | 
             
                #
         | 
| 18613 18689 | 
             
                # @!attribute [rw] key_pair_ids
         | 
| @@ -21555,6 +21631,88 @@ module Aws::EC2 | |
| 21555 21631 | 
             
                  include Aws::Structure
         | 
| 21556 21632 | 
             
                end
         | 
| 21557 21633 |  | 
| 21634 | 
            +
                # @note When making an API call, you may pass DescribeSecurityGroupRulesRequest
         | 
| 21635 | 
            +
                #   data as a hash:
         | 
| 21636 | 
            +
                #
         | 
| 21637 | 
            +
                #       {
         | 
| 21638 | 
            +
                #         filters: [
         | 
| 21639 | 
            +
                #           {
         | 
| 21640 | 
            +
                #             name: "String",
         | 
| 21641 | 
            +
                #             values: ["String"],
         | 
| 21642 | 
            +
                #           },
         | 
| 21643 | 
            +
                #         ],
         | 
| 21644 | 
            +
                #         security_group_rule_ids: ["String"],
         | 
| 21645 | 
            +
                #         dry_run: false,
         | 
| 21646 | 
            +
                #         next_token: "String",
         | 
| 21647 | 
            +
                #         max_results: 1,
         | 
| 21648 | 
            +
                #       }
         | 
| 21649 | 
            +
                #
         | 
| 21650 | 
            +
                # @!attribute [rw] filters
         | 
| 21651 | 
            +
                #   One or more filters.
         | 
| 21652 | 
            +
                #
         | 
| 21653 | 
            +
                #   * `group-id` - The ID of the security group.
         | 
| 21654 | 
            +
                #
         | 
| 21655 | 
            +
                #   * `security-group-rule-id` - The ID of the security group rule.
         | 
| 21656 | 
            +
                #
         | 
| 21657 | 
            +
                #   * `tag`\:<key> - The key/value combination of a tag assigned
         | 
| 21658 | 
            +
                #     to the resource. Use the tag key in the filter name and the tag
         | 
| 21659 | 
            +
                #     value as the filter value. For example, to find all resources that
         | 
| 21660 | 
            +
                #     have a tag with the key `Owner` and the value `TeamA`, specify
         | 
| 21661 | 
            +
                #     `tag:Owner` for the filter name and `TeamA` for the filter value.
         | 
| 21662 | 
            +
                #   @return [Array<Types::Filter>]
         | 
| 21663 | 
            +
                #
         | 
| 21664 | 
            +
                # @!attribute [rw] security_group_rule_ids
         | 
| 21665 | 
            +
                #   The IDs of the security group rules.
         | 
| 21666 | 
            +
                #   @return [Array<String>]
         | 
| 21667 | 
            +
                #
         | 
| 21668 | 
            +
                # @!attribute [rw] dry_run
         | 
| 21669 | 
            +
                #   Checks whether you have the required permissions for the action,
         | 
| 21670 | 
            +
                #   without actually making the request, and provides an error response.
         | 
| 21671 | 
            +
                #   If you have the required permissions, the error response is
         | 
| 21672 | 
            +
                #   `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
         | 
| 21673 | 
            +
                #   @return [Boolean]
         | 
| 21674 | 
            +
                #
         | 
| 21675 | 
            +
                # @!attribute [rw] next_token
         | 
| 21676 | 
            +
                #   The token for the next page of results.
         | 
| 21677 | 
            +
                #   @return [String]
         | 
| 21678 | 
            +
                #
         | 
| 21679 | 
            +
                # @!attribute [rw] max_results
         | 
| 21680 | 
            +
                #   The maximum number of results to return in a single call. To
         | 
| 21681 | 
            +
                #   retrieve the remaining results, make another request with the
         | 
| 21682 | 
            +
                #   returned `NextToken` value. This value can be between 5 and 1000. If
         | 
| 21683 | 
            +
                #   this parameter is not specified, then all results are returned.
         | 
| 21684 | 
            +
                #   @return [Integer]
         | 
| 21685 | 
            +
                #
         | 
| 21686 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesRequest AWS API Documentation
         | 
| 21687 | 
            +
                #
         | 
| 21688 | 
            +
                class DescribeSecurityGroupRulesRequest < Struct.new(
         | 
| 21689 | 
            +
                  :filters,
         | 
| 21690 | 
            +
                  :security_group_rule_ids,
         | 
| 21691 | 
            +
                  :dry_run,
         | 
| 21692 | 
            +
                  :next_token,
         | 
| 21693 | 
            +
                  :max_results)
         | 
| 21694 | 
            +
                  SENSITIVE = []
         | 
| 21695 | 
            +
                  include Aws::Structure
         | 
| 21696 | 
            +
                end
         | 
| 21697 | 
            +
             | 
| 21698 | 
            +
                # @!attribute [rw] security_group_rules
         | 
| 21699 | 
            +
                #   Information about security group rules.
         | 
| 21700 | 
            +
                #   @return [Array<Types::SecurityGroupRule>]
         | 
| 21701 | 
            +
                #
         | 
| 21702 | 
            +
                # @!attribute [rw] next_token
         | 
| 21703 | 
            +
                #   The token to use to retrieve the next page of results. This value is
         | 
| 21704 | 
            +
                #   `null` when there are no more results to return.
         | 
| 21705 | 
            +
                #   @return [String]
         | 
| 21706 | 
            +
                #
         | 
| 21707 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesResult AWS API Documentation
         | 
| 21708 | 
            +
                #
         | 
| 21709 | 
            +
                class DescribeSecurityGroupRulesResult < Struct.new(
         | 
| 21710 | 
            +
                  :security_group_rules,
         | 
| 21711 | 
            +
                  :next_token)
         | 
| 21712 | 
            +
                  SENSITIVE = []
         | 
| 21713 | 
            +
                  include Aws::Structure
         | 
| 21714 | 
            +
                end
         | 
| 21715 | 
            +
             | 
| 21558 21716 | 
             
                # @note When making an API call, you may pass DescribeSecurityGroupsRequest
         | 
| 21559 21717 | 
             
                #   data as a hash:
         | 
| 21560 21718 | 
             
                #
         | 
| @@ -21661,7 +21819,7 @@ module Aws::EC2 | |
| 21661 21819 | 
             
                #   The IDs of the security groups. Required for security groups in a
         | 
| 21662 21820 | 
             
                #   nondefault VPC.
         | 
| 21663 21821 | 
             
                #
         | 
| 21664 | 
            -
                #   Default: Describes all your security groups.
         | 
| 21822 | 
            +
                #   Default: Describes all of your security groups.
         | 
| 21665 21823 | 
             
                #   @return [Array<String>]
         | 
| 21666 21824 | 
             
                #
         | 
| 21667 21825 | 
             
                # @!attribute [rw] group_names
         | 
| @@ -21670,7 +21828,7 @@ module Aws::EC2 | |
| 21670 21828 | 
             
                #   security group ID. For security groups in a nondefault VPC, use the
         | 
| 21671 21829 | 
             
                #   `group-name` filter to describe security groups by name.
         | 
| 21672 21830 | 
             
                #
         | 
| 21673 | 
            -
                #   Default: Describes all your security groups.
         | 
| 21831 | 
            +
                #   Default: Describes all of your security groups.
         | 
| 21674 21832 | 
             
                #   @return [Array<String>]
         | 
| 21675 21833 | 
             
                #
         | 
| 21676 21834 | 
             
                # @!attribute [rw] dry_run
         | 
| @@ -28129,7 +28287,7 @@ module Aws::EC2 | |
| 28129 28287 | 
             
                #         role_name: "String",
         | 
| 28130 28288 | 
             
                #         tag_specifications: [
         | 
| 28131 28289 | 
             
                #           {
         | 
| 28132 | 
            -
                #             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
         | 
| 28290 | 
            +
                #             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
         | 
| 28133 28291 | 
             
                #             tags: [
         | 
| 28134 28292 | 
             
                #               {
         | 
| 28135 28293 | 
             
                #                 key: "String",
         | 
| @@ -32107,7 +32265,7 @@ module Aws::EC2 | |
| 32107 32265 | 
             
                #         ],
         | 
| 32108 32266 | 
             
                #         tag_specifications: [
         | 
| 32109 32267 | 
             
                #           {
         | 
| 32110 | 
            -
                #             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
         | 
| 32268 | 
            +
                #             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
         | 
| 32111 32269 | 
             
                #             tags: [
         | 
| 32112 32270 | 
             
                #               {
         | 
| 32113 32271 | 
             
                #                 key: "String",
         | 
| @@ -32713,7 +32871,7 @@ module Aws::EC2 | |
| 32713 32871 | 
             
                #         public_key_material: "data", # required
         | 
| 32714 32872 | 
             
                #         tag_specifications: [
         | 
| 32715 32873 | 
             
                #           {
         | 
| 32716 | 
            -
                #             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
         | 
| 32874 | 
            +
                #             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
         | 
| 32717 32875 | 
             
                #             tags: [
         | 
| 32718 32876 | 
             
                #               {
         | 
| 32719 32877 | 
             
                #                 key: "String",
         | 
| @@ -32761,7 +32919,7 @@ module Aws::EC2 | |
| 32761 32919 | 
             
                #   @return [String]
         | 
| 32762 32920 | 
             
                #
         | 
| 32763 32921 | 
             
                # @!attribute [rw] key_name
         | 
| 32764 | 
            -
                #   The key pair name you provided.
         | 
| 32922 | 
            +
                #   The key pair name that you provided.
         | 
| 32765 32923 | 
             
                #   @return [String]
         | 
| 32766 32924 | 
             
                #
         | 
| 32767 32925 | 
             
                # @!attribute [rw] key_pair_id
         | 
| @@ -32810,7 +32968,7 @@ module Aws::EC2 | |
| 32810 32968 | 
             
                #         role_name: "String",
         | 
| 32811 32969 | 
             
                #         tag_specifications: [
         | 
| 32812 32970 | 
             
                #           {
         | 
| 32813 | 
            -
                #             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
         | 
| 32971 | 
            +
                #             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
         | 
| 32814 32972 | 
             
                #             tags: [
         | 
| 32815 32973 | 
             
                #               {
         | 
| 32816 32974 | 
             
                #                 key: "String",
         | 
| @@ -34853,18 +35011,21 @@ module Aws::EC2 | |
| 34853 35011 | 
             
                #           {
         | 
| 34854 35012 | 
             
                #             cidr_ip: "String",
         | 
| 34855 35013 | 
             
                #             description: "String",
         | 
| 35014 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 34856 35015 | 
             
                #           },
         | 
| 34857 35016 | 
             
                #         ],
         | 
| 34858 35017 | 
             
                #         ipv_6_ranges: [
         | 
| 34859 35018 | 
             
                #           {
         | 
| 34860 35019 | 
             
                #             cidr_ipv_6: "String",
         | 
| 34861 35020 | 
             
                #             description: "String",
         | 
| 35021 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 34862 35022 | 
             
                #           },
         | 
| 34863 35023 | 
             
                #         ],
         | 
| 34864 35024 | 
             
                #         prefix_list_ids: [
         | 
| 34865 35025 | 
             
                #           {
         | 
| 34866 35026 | 
             
                #             description: "String",
         | 
| 34867 35027 | 
             
                #             prefix_list_id: "String",
         | 
| 35028 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 34868 35029 | 
             
                #           },
         | 
| 34869 35030 | 
             
                #         ],
         | 
| 34870 35031 | 
             
                #         to_port: 1,
         | 
| @@ -34877,6 +35038,7 @@ module Aws::EC2 | |
| 34877 35038 | 
             
                #             user_id: "String",
         | 
| 34878 35039 | 
             
                #             vpc_id: "String",
         | 
| 34879 35040 | 
             
                #             vpc_peering_connection_id: "String",
         | 
| 35041 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 34880 35042 | 
             
                #           },
         | 
| 34881 35043 | 
             
                #         ],
         | 
| 34882 35044 | 
             
                #       }
         | 
| @@ -34949,6 +35111,7 @@ module Aws::EC2 | |
| 34949 35111 | 
             
                #       {
         | 
| 34950 35112 | 
             
                #         cidr_ip: "String",
         | 
| 34951 35113 | 
             
                #         description: "String",
         | 
| 35114 | 
            +
                #         security_group_rule_id: "SecurityGroupRuleId",
         | 
| 34952 35115 | 
             
                #       }
         | 
| 34953 35116 | 
             
                #
         | 
| 34954 35117 | 
             
                # @!attribute [rw] cidr_ip
         | 
| @@ -34965,11 +35128,16 @@ module Aws::EC2 | |
| 34965 35128 | 
             
                #   a-z, A-Z, 0-9, spaces, and .\_-:/()#,@\[\]+=&;\\\{\\}!$*
         | 
| 34966 35129 | 
             
                #   @return [String]
         | 
| 34967 35130 | 
             
                #
         | 
| 35131 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 35132 | 
            +
                #   The ID of the security group rule.
         | 
| 35133 | 
            +
                #   @return [String]
         | 
| 35134 | 
            +
                #
         | 
| 34968 35135 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpRange AWS API Documentation
         | 
| 34969 35136 | 
             
                #
         | 
| 34970 35137 | 
             
                class IpRange < Struct.new(
         | 
| 34971 35138 | 
             
                  :cidr_ip,
         | 
| 34972 | 
            -
                  :description | 
| 35139 | 
            +
                  :description,
         | 
| 35140 | 
            +
                  :security_group_rule_id)
         | 
| 34973 35141 | 
             
                  SENSITIVE = []
         | 
| 34974 35142 | 
             
                  include Aws::Structure
         | 
| 34975 35143 | 
             
                end
         | 
| @@ -35044,6 +35212,7 @@ module Aws::EC2 | |
| 35044 35212 | 
             
                #       {
         | 
| 35045 35213 | 
             
                #         cidr_ipv_6: "String",
         | 
| 35046 35214 | 
             
                #         description: "String",
         | 
| 35215 | 
            +
                #         security_group_rule_id: "SecurityGroupRuleId",
         | 
| 35047 35216 | 
             
                #       }
         | 
| 35048 35217 | 
             
                #
         | 
| 35049 35218 | 
             
                # @!attribute [rw] cidr_ipv_6
         | 
| @@ -35060,11 +35229,16 @@ module Aws::EC2 | |
| 35060 35229 | 
             
                #   a-z, A-Z, 0-9, spaces, and .\_-:/()#,@\[\]+=&;\\\{\\}!$*
         | 
| 35061 35230 | 
             
                #   @return [String]
         | 
| 35062 35231 | 
             
                #
         | 
| 35232 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 35233 | 
            +
                #   The ID of the security group rule.
         | 
| 35234 | 
            +
                #   @return [String]
         | 
| 35235 | 
            +
                #
         | 
| 35063 35236 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6Range AWS API Documentation
         | 
| 35064 35237 | 
             
                #
         | 
| 35065 35238 | 
             
                class Ipv6Range < Struct.new(
         | 
| 35066 35239 | 
             
                  :cidr_ipv_6,
         | 
| 35067 | 
            -
                  :description | 
| 35240 | 
            +
                  :description,
         | 
| 35241 | 
            +
                  :security_group_rule_id)
         | 
| 35068 35242 | 
             
                  SENSITIVE = []
         | 
| 35069 35243 | 
             
                  include Aws::Structure
         | 
| 35070 35244 | 
             
                end
         | 
| @@ -36784,7 +36958,7 @@ module Aws::EC2 | |
| 36784 36958 | 
             
                #   data as a hash:
         | 
| 36785 36959 | 
             
                #
         | 
| 36786 36960 | 
             
                #       {
         | 
| 36787 | 
            -
                #         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
         | 
| 36961 | 
            +
                #         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
         | 
| 36788 36962 | 
             
                #         tags: [
         | 
| 36789 36963 | 
             
                #           {
         | 
| 36790 36964 | 
             
                #             key: "String",
         | 
| @@ -39149,6 +39323,66 @@ module Aws::EC2 | |
| 39149 39323 | 
             
                  include Aws::Structure
         | 
| 39150 39324 | 
             
                end
         | 
| 39151 39325 |  | 
| 39326 | 
            +
                # @note When making an API call, you may pass ModifySecurityGroupRulesRequest
         | 
| 39327 | 
            +
                #   data as a hash:
         | 
| 39328 | 
            +
                #
         | 
| 39329 | 
            +
                #       {
         | 
| 39330 | 
            +
                #         group_id: "SecurityGroupId", # required
         | 
| 39331 | 
            +
                #         security_group_rules: [ # required
         | 
| 39332 | 
            +
                #           {
         | 
| 39333 | 
            +
                #             security_group_rule_id: "SecurityGroupRuleId",
         | 
| 39334 | 
            +
                #             security_group_rule: {
         | 
| 39335 | 
            +
                #               ip_protocol: "String",
         | 
| 39336 | 
            +
                #               from_port: 1,
         | 
| 39337 | 
            +
                #               to_port: 1,
         | 
| 39338 | 
            +
                #               cidr_ipv_4: "String",
         | 
| 39339 | 
            +
                #               cidr_ipv_6: "String",
         | 
| 39340 | 
            +
                #               prefix_list_id: "PrefixListResourceId",
         | 
| 39341 | 
            +
                #               referenced_group_id: "SecurityGroupId",
         | 
| 39342 | 
            +
                #               description: "String",
         | 
| 39343 | 
            +
                #             },
         | 
| 39344 | 
            +
                #           },
         | 
| 39345 | 
            +
                #         ],
         | 
| 39346 | 
            +
                #         dry_run: false,
         | 
| 39347 | 
            +
                #       }
         | 
| 39348 | 
            +
                #
         | 
| 39349 | 
            +
                # @!attribute [rw] group_id
         | 
| 39350 | 
            +
                #   The ID of the security group.
         | 
| 39351 | 
            +
                #   @return [String]
         | 
| 39352 | 
            +
                #
         | 
| 39353 | 
            +
                # @!attribute [rw] security_group_rules
         | 
| 39354 | 
            +
                #   Information about the security group properties to update.
         | 
| 39355 | 
            +
                #   @return [Array<Types::SecurityGroupRuleUpdate>]
         | 
| 39356 | 
            +
                #
         | 
| 39357 | 
            +
                # @!attribute [rw] dry_run
         | 
| 39358 | 
            +
                #   Checks whether you have the required permissions for the action,
         | 
| 39359 | 
            +
                #   without actually making the request, and provides an error response.
         | 
| 39360 | 
            +
                #   If you have the required permissions, the error response is
         | 
| 39361 | 
            +
                #   `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
         | 
| 39362 | 
            +
                #   @return [Boolean]
         | 
| 39363 | 
            +
                #
         | 
| 39364 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesRequest AWS API Documentation
         | 
| 39365 | 
            +
                #
         | 
| 39366 | 
            +
                class ModifySecurityGroupRulesRequest < Struct.new(
         | 
| 39367 | 
            +
                  :group_id,
         | 
| 39368 | 
            +
                  :security_group_rules,
         | 
| 39369 | 
            +
                  :dry_run)
         | 
| 39370 | 
            +
                  SENSITIVE = []
         | 
| 39371 | 
            +
                  include Aws::Structure
         | 
| 39372 | 
            +
                end
         | 
| 39373 | 
            +
             | 
| 39374 | 
            +
                # @!attribute [rw] return
         | 
| 39375 | 
            +
                #   Returns `true` if the request succeeds; otherwise, returns an error.
         | 
| 39376 | 
            +
                #   @return [Boolean]
         | 
| 39377 | 
            +
                #
         | 
| 39378 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesResult AWS API Documentation
         | 
| 39379 | 
            +
                #
         | 
| 39380 | 
            +
                class ModifySecurityGroupRulesResult < Struct.new(
         | 
| 39381 | 
            +
                  :return)
         | 
| 39382 | 
            +
                  SENSITIVE = []
         | 
| 39383 | 
            +
                  include Aws::Structure
         | 
| 39384 | 
            +
                end
         | 
| 39385 | 
            +
             | 
| 39152 39386 | 
             
                # @note When making an API call, you may pass ModifySnapshotAttributeRequest
         | 
| 39153 39387 | 
             
                #   data as a hash:
         | 
| 39154 39388 | 
             
                #
         | 
| @@ -42901,6 +43135,7 @@ module Aws::EC2 | |
| 42901 43135 | 
             
                #       {
         | 
| 42902 43136 | 
             
                #         description: "String",
         | 
| 42903 43137 | 
             
                #         prefix_list_id: "String",
         | 
| 43138 | 
            +
                #         security_group_rule_id: "SecurityGroupRuleId",
         | 
| 42904 43139 | 
             
                #       }
         | 
| 42905 43140 | 
             
                #
         | 
| 42906 43141 | 
             
                # @!attribute [rw] description
         | 
| @@ -42915,11 +43150,16 @@ module Aws::EC2 | |
| 42915 43150 | 
             
                #   The ID of the prefix.
         | 
| 42916 43151 | 
             
                #   @return [String]
         | 
| 42917 43152 | 
             
                #
         | 
| 43153 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 43154 | 
            +
                #   The ID of the security group rule.
         | 
| 43155 | 
            +
                #   @return [String]
         | 
| 43156 | 
            +
                #
         | 
| 42918 43157 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrefixListId AWS API Documentation
         | 
| 42919 43158 | 
             
                #
         | 
| 42920 43159 | 
             
                class PrefixListId < Struct.new(
         | 
| 42921 43160 | 
             
                  :description,
         | 
| 42922 | 
            -
                  :prefix_list_id | 
| 43161 | 
            +
                  :prefix_list_id,
         | 
| 43162 | 
            +
                  :security_group_rule_id)
         | 
| 42923 43163 | 
             
                  SENSITIVE = []
         | 
| 42924 43164 | 
             
                  include Aws::Structure
         | 
| 42925 43165 | 
             
                end
         | 
| @@ -43189,7 +43429,7 @@ module Aws::EC2 | |
| 43189 43429 | 
             
                #         dry_run: false,
         | 
| 43190 43430 | 
             
                #         pool_tag_specifications: [
         | 
| 43191 43431 | 
             
                #           {
         | 
| 43192 | 
            -
                #             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
         | 
| 43432 | 
            +
                #             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
         | 
| 43193 43433 | 
             
                #             tags: [
         | 
| 43194 43434 | 
             
                #               {
         | 
| 43195 43435 | 
             
                #                 key: "String",
         | 
| @@ -43492,7 +43732,7 @@ module Aws::EC2 | |
| 43492 43732 | 
             
                #         offering_id: "OfferingId", # required
         | 
| 43493 43733 | 
             
                #         tag_specifications: [
         | 
| 43494 43734 | 
             
                #           {
         | 
| 43495 | 
            -
                #             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
         | 
| 43735 | 
            +
                #             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
         | 
| 43496 43736 | 
             
                #             tags: [
         | 
| 43497 43737 | 
             
                #               {
         | 
| 43498 43738 | 
             
                #                 key: "String",
         | 
| @@ -43801,6 +44041,41 @@ module Aws::EC2 | |
| 43801 44041 | 
             
                  include Aws::Structure
         | 
| 43802 44042 | 
             
                end
         | 
| 43803 44043 |  | 
| 44044 | 
            +
                # Describes the security group that is referenced in the security group
         | 
| 44045 | 
            +
                # rule.
         | 
| 44046 | 
            +
                #
         | 
| 44047 | 
            +
                # @!attribute [rw] group_id
         | 
| 44048 | 
            +
                #   The ID of the security group.
         | 
| 44049 | 
            +
                #   @return [String]
         | 
| 44050 | 
            +
                #
         | 
| 44051 | 
            +
                # @!attribute [rw] peering_status
         | 
| 44052 | 
            +
                #   The status of a VPC peering connection, if applicable.
         | 
| 44053 | 
            +
                #   @return [String]
         | 
| 44054 | 
            +
                #
         | 
| 44055 | 
            +
                # @!attribute [rw] user_id
         | 
| 44056 | 
            +
                #   The AWS account ID.
         | 
| 44057 | 
            +
                #   @return [String]
         | 
| 44058 | 
            +
                #
         | 
| 44059 | 
            +
                # @!attribute [rw] vpc_id
         | 
| 44060 | 
            +
                #   The ID of the VPC.
         | 
| 44061 | 
            +
                #   @return [String]
         | 
| 44062 | 
            +
                #
         | 
| 44063 | 
            +
                # @!attribute [rw] vpc_peering_connection_id
         | 
| 44064 | 
            +
                #   The ID of the VPC peering connection.
         | 
| 44065 | 
            +
                #   @return [String]
         | 
| 44066 | 
            +
                #
         | 
| 44067 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReferencedSecurityGroup AWS API Documentation
         | 
| 44068 | 
            +
                #
         | 
| 44069 | 
            +
                class ReferencedSecurityGroup < Struct.new(
         | 
| 44070 | 
            +
                  :group_id,
         | 
| 44071 | 
            +
                  :peering_status,
         | 
| 44072 | 
            +
                  :user_id,
         | 
| 44073 | 
            +
                  :vpc_id,
         | 
| 44074 | 
            +
                  :vpc_peering_connection_id)
         | 
| 44075 | 
            +
                  SENSITIVE = []
         | 
| 44076 | 
            +
                  include Aws::Structure
         | 
| 44077 | 
            +
                end
         | 
| 44078 | 
            +
             | 
| 43804 44079 | 
             
                # Describes a Region.
         | 
| 43805 44080 | 
             
                #
         | 
| 43806 44081 | 
             
                # @!attribute [rw] endpoint
         | 
| @@ -45159,7 +45434,7 @@ module Aws::EC2 | |
| 45159 45434 | 
             
                #         user_data: "String",
         | 
| 45160 45435 | 
             
                #         tag_specifications: [
         | 
| 45161 45436 | 
             
                #           {
         | 
| 45162 | 
            -
                #             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
         | 
| 45437 | 
            +
                #             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
         | 
| 45163 45438 | 
             
                #             tags: [
         | 
| 45164 45439 | 
             
                #               {
         | 
| 45165 45440 | 
             
                #                 key: "String",
         | 
| @@ -45573,7 +45848,7 @@ module Aws::EC2 | |
| 45573 45848 | 
             
                #               weighted_capacity: 1.0,
         | 
| 45574 45849 | 
             
                #               tag_specifications: [
         | 
| 45575 45850 | 
             
                #                 {
         | 
| 45576 | 
            -
                #                   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
         | 
| 45851 | 
            +
                #                   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
         | 
| 45577 45852 | 
             
                #                   tags: [
         | 
| 45578 45853 | 
             
                #                     {
         | 
| 45579 45854 | 
             
                #                       key: "String",
         | 
| @@ -45633,7 +45908,7 @@ module Aws::EC2 | |
| 45633 45908 | 
             
                #           instance_pools_to_use_count: 1,
         | 
| 45634 45909 | 
             
                #           tag_specifications: [
         | 
| 45635 45910 | 
             
                #             {
         | 
| 45636 | 
            -
                #               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
         | 
| 45911 | 
            +
                #               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
         | 
| 45637 45912 | 
             
                #               tags: [
         | 
| 45638 45913 | 
             
                #                 {
         | 
| 45639 45914 | 
             
                #                   key: "String",
         | 
| @@ -45768,7 +46043,7 @@ module Aws::EC2 | |
| 45768 46043 | 
             
                #         valid_until: Time.now,
         | 
| 45769 46044 | 
             
                #         tag_specifications: [
         | 
| 45770 46045 | 
             
                #           {
         | 
| 45771 | 
            -
                #             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
         | 
| 46046 | 
            +
                #             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
         | 
| 45772 46047 | 
             
                #             tags: [
         | 
| 45773 46048 | 
             
                #               {
         | 
| 45774 46049 | 
             
                #                 key: "String",
         | 
| @@ -47281,18 +47556,21 @@ module Aws::EC2 | |
| 47281 47556 | 
             
                #               {
         | 
| 47282 47557 | 
             
                #                 cidr_ip: "String",
         | 
| 47283 47558 | 
             
                #                 description: "String",
         | 
| 47559 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47284 47560 | 
             
                #               },
         | 
| 47285 47561 | 
             
                #             ],
         | 
| 47286 47562 | 
             
                #             ipv_6_ranges: [
         | 
| 47287 47563 | 
             
                #               {
         | 
| 47288 47564 | 
             
                #                 cidr_ipv_6: "String",
         | 
| 47289 47565 | 
             
                #                 description: "String",
         | 
| 47566 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47290 47567 | 
             
                #               },
         | 
| 47291 47568 | 
             
                #             ],
         | 
| 47292 47569 | 
             
                #             prefix_list_ids: [
         | 
| 47293 47570 | 
             
                #               {
         | 
| 47294 47571 | 
             
                #                 description: "String",
         | 
| 47295 47572 | 
             
                #                 prefix_list_id: "String",
         | 
| 47573 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47296 47574 | 
             
                #               },
         | 
| 47297 47575 | 
             
                #             ],
         | 
| 47298 47576 | 
             
                #             to_port: 1,
         | 
| @@ -47305,10 +47583,12 @@ module Aws::EC2 | |
| 47305 47583 | 
             
                #                 user_id: "String",
         | 
| 47306 47584 | 
             
                #                 vpc_id: "String",
         | 
| 47307 47585 | 
             
                #                 vpc_peering_connection_id: "String",
         | 
| 47586 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47308 47587 | 
             
                #               },
         | 
| 47309 47588 | 
             
                #             ],
         | 
| 47310 47589 | 
             
                #           },
         | 
| 47311 47590 | 
             
                #         ],
         | 
| 47591 | 
            +
                #         security_group_rule_ids: ["String"],
         | 
| 47312 47592 | 
             
                #         cidr_ip: "String",
         | 
| 47313 47593 | 
             
                #         from_port: 1,
         | 
| 47314 47594 | 
             
                #         ip_protocol: "String",
         | 
| @@ -47334,6 +47614,10 @@ module Aws::EC2 | |
| 47334 47614 | 
             
                #   permissions.
         | 
| 47335 47615 | 
             
                #   @return [Array<Types::IpPermission>]
         | 
| 47336 47616 | 
             
                #
         | 
| 47617 | 
            +
                # @!attribute [rw] security_group_rule_ids
         | 
| 47618 | 
            +
                #   The IDs of the security group rules.
         | 
| 47619 | 
            +
                #   @return [Array<String>]
         | 
| 47620 | 
            +
                #
         | 
| 47337 47621 | 
             
                # @!attribute [rw] cidr_ip
         | 
| 47338 47622 | 
             
                #   Not supported. Use a set of IP permissions to specify the CIDR.
         | 
| 47339 47623 | 
             
                #   @return [String]
         | 
| @@ -47367,6 +47651,7 @@ module Aws::EC2 | |
| 47367 47651 | 
             
                  :dry_run,
         | 
| 47368 47652 | 
             
                  :group_id,
         | 
| 47369 47653 | 
             
                  :ip_permissions,
         | 
| 47654 | 
            +
                  :security_group_rule_ids,
         | 
| 47370 47655 | 
             
                  :cidr_ip,
         | 
| 47371 47656 | 
             
                  :from_port,
         | 
| 47372 47657 | 
             
                  :ip_protocol,
         | 
| @@ -47412,18 +47697,21 @@ module Aws::EC2 | |
| 47412 47697 | 
             
                #               {
         | 
| 47413 47698 | 
             
                #                 cidr_ip: "String",
         | 
| 47414 47699 | 
             
                #                 description: "String",
         | 
| 47700 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47415 47701 | 
             
                #               },
         | 
| 47416 47702 | 
             
                #             ],
         | 
| 47417 47703 | 
             
                #             ipv_6_ranges: [
         | 
| 47418 47704 | 
             
                #               {
         | 
| 47419 47705 | 
             
                #                 cidr_ipv_6: "String",
         | 
| 47420 47706 | 
             
                #                 description: "String",
         | 
| 47707 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47421 47708 | 
             
                #               },
         | 
| 47422 47709 | 
             
                #             ],
         | 
| 47423 47710 | 
             
                #             prefix_list_ids: [
         | 
| 47424 47711 | 
             
                #               {
         | 
| 47425 47712 | 
             
                #                 description: "String",
         | 
| 47426 47713 | 
             
                #                 prefix_list_id: "String",
         | 
| 47714 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47427 47715 | 
             
                #               },
         | 
| 47428 47716 | 
             
                #             ],
         | 
| 47429 47717 | 
             
                #             to_port: 1,
         | 
| @@ -47436,6 +47724,7 @@ module Aws::EC2 | |
| 47436 47724 | 
             
                #                 user_id: "String",
         | 
| 47437 47725 | 
             
                #                 vpc_id: "String",
         | 
| 47438 47726 | 
             
                #                 vpc_peering_connection_id: "String",
         | 
| 47727 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 47439 47728 | 
             
                #               },
         | 
| 47440 47729 | 
             
                #             ],
         | 
| 47441 47730 | 
             
                #           },
         | 
| @@ -47445,6 +47734,7 @@ module Aws::EC2 | |
| 47445 47734 | 
             
                #         source_security_group_owner_id: "String",
         | 
| 47446 47735 | 
             
                #         to_port: 1,
         | 
| 47447 47736 | 
             
                #         dry_run: false,
         | 
| 47737 | 
            +
                #         security_group_rule_ids: ["String"],
         | 
| 47448 47738 | 
             
                #       }
         | 
| 47449 47739 | 
             
                #
         | 
| 47450 47740 | 
             
                # @!attribute [rw] cidr_ip
         | 
| @@ -47516,6 +47806,10 @@ module Aws::EC2 | |
| 47516 47806 | 
             
                #   `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
         | 
| 47517 47807 | 
             
                #   @return [Boolean]
         | 
| 47518 47808 | 
             
                #
         | 
| 47809 | 
            +
                # @!attribute [rw] security_group_rule_ids
         | 
| 47810 | 
            +
                #   The IDs of the security group rules.
         | 
| 47811 | 
            +
                #   @return [Array<String>]
         | 
| 47812 | 
            +
                #
         | 
| 47519 47813 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngressRequest AWS API Documentation
         | 
| 47520 47814 | 
             
                #
         | 
| 47521 47815 | 
             
                class RevokeSecurityGroupIngressRequest < Struct.new(
         | 
| @@ -47528,7 +47822,8 @@ module Aws::EC2 | |
| 47528 47822 | 
             
                  :source_security_group_name,
         | 
| 47529 47823 | 
             
                  :source_security_group_owner_id,
         | 
| 47530 47824 | 
             
                  :to_port,
         | 
| 47531 | 
            -
                  :dry_run | 
| 47825 | 
            +
                  :dry_run,
         | 
| 47826 | 
            +
                  :security_group_rule_ids)
         | 
| 47532 47827 | 
             
                  SENSITIVE = []
         | 
| 47533 47828 | 
             
                  include Aws::Structure
         | 
| 47534 47829 | 
             
                end
         | 
| @@ -47879,7 +48174,7 @@ module Aws::EC2 | |
| 47879 48174 | 
             
                #         ],
         | 
| 47880 48175 | 
             
                #         tag_specifications: [
         | 
| 47881 48176 | 
             
                #           {
         | 
| 47882 | 
            -
                #             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
         | 
| 48177 | 
            +
                #             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
         | 
| 47883 48178 | 
             
                #             tags: [
         | 
| 47884 48179 | 
             
                #               {
         | 
| 47885 48180 | 
             
                #                 key: "String",
         | 
| @@ -49613,7 +49908,7 @@ module Aws::EC2 | |
| 49613 49908 | 
             
                  include Aws::Structure
         | 
| 49614 49909 | 
             
                end
         | 
| 49615 49910 |  | 
| 49616 | 
            -
                # Describes a security group
         | 
| 49911 | 
            +
                # Describes a security group.
         | 
| 49617 49912 | 
             
                #
         | 
| 49618 49913 | 
             
                # @!attribute [rw] description
         | 
| 49619 49914 | 
             
                #   A description of the security group.
         | 
| @@ -49706,6 +50001,254 @@ module Aws::EC2 | |
| 49706 50001 | 
             
                  include Aws::Structure
         | 
| 49707 50002 | 
             
                end
         | 
| 49708 50003 |  | 
| 50004 | 
            +
                # Describes a security group rule.
         | 
| 50005 | 
            +
                #
         | 
| 50006 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 50007 | 
            +
                #   The ID of the security group rule.
         | 
| 50008 | 
            +
                #   @return [String]
         | 
| 50009 | 
            +
                #
         | 
| 50010 | 
            +
                # @!attribute [rw] group_id
         | 
| 50011 | 
            +
                #   The ID of the security group.
         | 
| 50012 | 
            +
                #   @return [String]
         | 
| 50013 | 
            +
                #
         | 
| 50014 | 
            +
                # @!attribute [rw] group_owner_id
         | 
| 50015 | 
            +
                #   The ID of the AWS account that owns the security group.
         | 
| 50016 | 
            +
                #   @return [String]
         | 
| 50017 | 
            +
                #
         | 
| 50018 | 
            +
                # @!attribute [rw] is_egress
         | 
| 50019 | 
            +
                #   Indicates whether the security group rule is an outbound rule.
         | 
| 50020 | 
            +
                #   @return [Boolean]
         | 
| 50021 | 
            +
                #
         | 
| 50022 | 
            +
                # @!attribute [rw] ip_protocol
         | 
| 50023 | 
            +
                #   The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
         | 
| 50024 | 
            +
                #   [Protocol Numbers][1]).
         | 
| 50025 | 
            +
                #
         | 
| 50026 | 
            +
                #   Use `-1` to specify all protocols.
         | 
| 50027 | 
            +
                #
         | 
| 50028 | 
            +
                #
         | 
| 50029 | 
            +
                #
         | 
| 50030 | 
            +
                #   [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
         | 
| 50031 | 
            +
                #   @return [String]
         | 
| 50032 | 
            +
                #
         | 
| 50033 | 
            +
                # @!attribute [rw] from_port
         | 
| 50034 | 
            +
                #   The start of port range for the TCP and UDP protocols, or an
         | 
| 50035 | 
            +
                #   ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
         | 
| 50036 | 
            +
                #   you specify all ICMP/ICMPv6 types, you must specify all codes.
         | 
| 50037 | 
            +
                #   @return [Integer]
         | 
| 50038 | 
            +
                #
         | 
| 50039 | 
            +
                # @!attribute [rw] to_port
         | 
| 50040 | 
            +
                #   The end of port range for the TCP and UDP protocols, or an
         | 
| 50041 | 
            +
                #   ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
         | 
| 50042 | 
            +
                #   If you specify all ICMP/ICMPv6 types, you must specify all codes.
         | 
| 50043 | 
            +
                #   @return [Integer]
         | 
| 50044 | 
            +
                #
         | 
| 50045 | 
            +
                # @!attribute [rw] cidr_ipv_4
         | 
| 50046 | 
            +
                #   The IPv4 CIDR range.
         | 
| 50047 | 
            +
                #   @return [String]
         | 
| 50048 | 
            +
                #
         | 
| 50049 | 
            +
                # @!attribute [rw] cidr_ipv_6
         | 
| 50050 | 
            +
                #   The IPv6 CIDR range.
         | 
| 50051 | 
            +
                #   @return [String]
         | 
| 50052 | 
            +
                #
         | 
| 50053 | 
            +
                # @!attribute [rw] prefix_list_id
         | 
| 50054 | 
            +
                #   The ID of the prefix list.
         | 
| 50055 | 
            +
                #   @return [String]
         | 
| 50056 | 
            +
                #
         | 
| 50057 | 
            +
                # @!attribute [rw] referenced_group_info
         | 
| 50058 | 
            +
                #   Describes the security group that is referenced in the rule.
         | 
| 50059 | 
            +
                #   @return [Types::ReferencedSecurityGroup]
         | 
| 50060 | 
            +
                #
         | 
| 50061 | 
            +
                # @!attribute [rw] description
         | 
| 50062 | 
            +
                #   The security group rule description.
         | 
| 50063 | 
            +
                #   @return [String]
         | 
| 50064 | 
            +
                #
         | 
| 50065 | 
            +
                # @!attribute [rw] tags
         | 
| 50066 | 
            +
                #   The tags applied to the security group rule.
         | 
| 50067 | 
            +
                #   @return [Array<Types::Tag>]
         | 
| 50068 | 
            +
                #
         | 
| 50069 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRule AWS API Documentation
         | 
| 50070 | 
            +
                #
         | 
| 50071 | 
            +
                class SecurityGroupRule < Struct.new(
         | 
| 50072 | 
            +
                  :security_group_rule_id,
         | 
| 50073 | 
            +
                  :group_id,
         | 
| 50074 | 
            +
                  :group_owner_id,
         | 
| 50075 | 
            +
                  :is_egress,
         | 
| 50076 | 
            +
                  :ip_protocol,
         | 
| 50077 | 
            +
                  :from_port,
         | 
| 50078 | 
            +
                  :to_port,
         | 
| 50079 | 
            +
                  :cidr_ipv_4,
         | 
| 50080 | 
            +
                  :cidr_ipv_6,
         | 
| 50081 | 
            +
                  :prefix_list_id,
         | 
| 50082 | 
            +
                  :referenced_group_info,
         | 
| 50083 | 
            +
                  :description,
         | 
| 50084 | 
            +
                  :tags)
         | 
| 50085 | 
            +
                  SENSITIVE = []
         | 
| 50086 | 
            +
                  include Aws::Structure
         | 
| 50087 | 
            +
                end
         | 
| 50088 | 
            +
             | 
| 50089 | 
            +
                # Describes the description of a security group rule.
         | 
| 50090 | 
            +
                #
         | 
| 50091 | 
            +
                # You can use this when you want to update the security group rule
         | 
| 50092 | 
            +
                # description for either an inbound or outbound rule.
         | 
| 50093 | 
            +
                #
         | 
| 50094 | 
            +
                # @note When making an API call, you may pass SecurityGroupRuleDescription
         | 
| 50095 | 
            +
                #   data as a hash:
         | 
| 50096 | 
            +
                #
         | 
| 50097 | 
            +
                #       {
         | 
| 50098 | 
            +
                #         security_group_rule_id: "String",
         | 
| 50099 | 
            +
                #         description: "String",
         | 
| 50100 | 
            +
                #       }
         | 
| 50101 | 
            +
                #
         | 
| 50102 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 50103 | 
            +
                #   The ID of the security group rule.
         | 
| 50104 | 
            +
                #   @return [String]
         | 
| 50105 | 
            +
                #
         | 
| 50106 | 
            +
                # @!attribute [rw] description
         | 
| 50107 | 
            +
                #   The description of the security group rule.
         | 
| 50108 | 
            +
                #   @return [String]
         | 
| 50109 | 
            +
                #
         | 
| 50110 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleDescription AWS API Documentation
         | 
| 50111 | 
            +
                #
         | 
| 50112 | 
            +
                class SecurityGroupRuleDescription < Struct.new(
         | 
| 50113 | 
            +
                  :security_group_rule_id,
         | 
| 50114 | 
            +
                  :description)
         | 
| 50115 | 
            +
                  SENSITIVE = []
         | 
| 50116 | 
            +
                  include Aws::Structure
         | 
| 50117 | 
            +
                end
         | 
| 50118 | 
            +
             | 
| 50119 | 
            +
                # Describes a security group rule.
         | 
| 50120 | 
            +
                #
         | 
| 50121 | 
            +
                # You can only use one of the following to specify the rule:
         | 
| 50122 | 
            +
                #
         | 
| 50123 | 
            +
                # * CidrIpv4
         | 
| 50124 | 
            +
                #
         | 
| 50125 | 
            +
                # * CidrIpv6
         | 
| 50126 | 
            +
                #
         | 
| 50127 | 
            +
                # * PrefixListId
         | 
| 50128 | 
            +
                #
         | 
| 50129 | 
            +
                # * ReferencedGroupId
         | 
| 50130 | 
            +
                #
         | 
| 50131 | 
            +
                # <note markdown="1"> When you run the [ModifySecurityGroupRules][1] command, you cannot
         | 
| 50132 | 
            +
                # change the rule type. For example if the rules references `CidrIpv4`,
         | 
| 50133 | 
            +
                # then you must use `CidrIpv4` to reference the rule.
         | 
| 50134 | 
            +
                #
         | 
| 50135 | 
            +
                #  </note>
         | 
| 50136 | 
            +
                #
         | 
| 50137 | 
            +
                #
         | 
| 50138 | 
            +
                #
         | 
| 50139 | 
            +
                # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySecurityGroupRules.html
         | 
| 50140 | 
            +
                #
         | 
| 50141 | 
            +
                # @note When making an API call, you may pass SecurityGroupRuleRequest
         | 
| 50142 | 
            +
                #   data as a hash:
         | 
| 50143 | 
            +
                #
         | 
| 50144 | 
            +
                #       {
         | 
| 50145 | 
            +
                #         ip_protocol: "String",
         | 
| 50146 | 
            +
                #         from_port: 1,
         | 
| 50147 | 
            +
                #         to_port: 1,
         | 
| 50148 | 
            +
                #         cidr_ipv_4: "String",
         | 
| 50149 | 
            +
                #         cidr_ipv_6: "String",
         | 
| 50150 | 
            +
                #         prefix_list_id: "PrefixListResourceId",
         | 
| 50151 | 
            +
                #         referenced_group_id: "SecurityGroupId",
         | 
| 50152 | 
            +
                #         description: "String",
         | 
| 50153 | 
            +
                #       }
         | 
| 50154 | 
            +
                #
         | 
| 50155 | 
            +
                # @!attribute [rw] ip_protocol
         | 
| 50156 | 
            +
                #   The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
         | 
| 50157 | 
            +
                #   [Protocol Numbers][1]).
         | 
| 50158 | 
            +
                #
         | 
| 50159 | 
            +
                #   Use `-1` to specify all protocols.
         | 
| 50160 | 
            +
                #
         | 
| 50161 | 
            +
                #
         | 
| 50162 | 
            +
                #
         | 
| 50163 | 
            +
                #   [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
         | 
| 50164 | 
            +
                #   @return [String]
         | 
| 50165 | 
            +
                #
         | 
| 50166 | 
            +
                # @!attribute [rw] from_port
         | 
| 50167 | 
            +
                #   The start of port range for the TCP and UDP protocols, or an
         | 
| 50168 | 
            +
                #   ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
         | 
| 50169 | 
            +
                #   you specify all ICMP/ICMPv6 types, you must specify all codes.
         | 
| 50170 | 
            +
                #   @return [Integer]
         | 
| 50171 | 
            +
                #
         | 
| 50172 | 
            +
                # @!attribute [rw] to_port
         | 
| 50173 | 
            +
                #   The end of port range for the TCP and UDP protocols, or an
         | 
| 50174 | 
            +
                #   ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
         | 
| 50175 | 
            +
                #   If you specify all ICMP/ICMPv6 types, you must specify all codes.
         | 
| 50176 | 
            +
                #   @return [Integer]
         | 
| 50177 | 
            +
                #
         | 
| 50178 | 
            +
                # @!attribute [rw] cidr_ipv_4
         | 
| 50179 | 
            +
                #   The IPv4 CIDR range. To specify a single IPv4 address, use the /32
         | 
| 50180 | 
            +
                #   prefix length.
         | 
| 50181 | 
            +
                #   @return [String]
         | 
| 50182 | 
            +
                #
         | 
| 50183 | 
            +
                # @!attribute [rw] cidr_ipv_6
         | 
| 50184 | 
            +
                #   The IPv6 CIDR range. To specify a single IPv6 address, use the /128
         | 
| 50185 | 
            +
                #   prefix length.
         | 
| 50186 | 
            +
                #   @return [String]
         | 
| 50187 | 
            +
                #
         | 
| 50188 | 
            +
                # @!attribute [rw] prefix_list_id
         | 
| 50189 | 
            +
                #   The ID of the prefix list.
         | 
| 50190 | 
            +
                #   @return [String]
         | 
| 50191 | 
            +
                #
         | 
| 50192 | 
            +
                # @!attribute [rw] referenced_group_id
         | 
| 50193 | 
            +
                #   The ID of the security group that is referenced in the security
         | 
| 50194 | 
            +
                #   group rule.
         | 
| 50195 | 
            +
                #   @return [String]
         | 
| 50196 | 
            +
                #
         | 
| 50197 | 
            +
                # @!attribute [rw] description
         | 
| 50198 | 
            +
                #   The description of the security group rule.
         | 
| 50199 | 
            +
                #   @return [String]
         | 
| 50200 | 
            +
                #
         | 
| 50201 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleRequest AWS API Documentation
         | 
| 50202 | 
            +
                #
         | 
| 50203 | 
            +
                class SecurityGroupRuleRequest < Struct.new(
         | 
| 50204 | 
            +
                  :ip_protocol,
         | 
| 50205 | 
            +
                  :from_port,
         | 
| 50206 | 
            +
                  :to_port,
         | 
| 50207 | 
            +
                  :cidr_ipv_4,
         | 
| 50208 | 
            +
                  :cidr_ipv_6,
         | 
| 50209 | 
            +
                  :prefix_list_id,
         | 
| 50210 | 
            +
                  :referenced_group_id,
         | 
| 50211 | 
            +
                  :description)
         | 
| 50212 | 
            +
                  SENSITIVE = []
         | 
| 50213 | 
            +
                  include Aws::Structure
         | 
| 50214 | 
            +
                end
         | 
| 50215 | 
            +
             | 
| 50216 | 
            +
                # Describes an update to a security group rule.
         | 
| 50217 | 
            +
                #
         | 
| 50218 | 
            +
                # @note When making an API call, you may pass SecurityGroupRuleUpdate
         | 
| 50219 | 
            +
                #   data as a hash:
         | 
| 50220 | 
            +
                #
         | 
| 50221 | 
            +
                #       {
         | 
| 50222 | 
            +
                #         security_group_rule_id: "SecurityGroupRuleId",
         | 
| 50223 | 
            +
                #         security_group_rule: {
         | 
| 50224 | 
            +
                #           ip_protocol: "String",
         | 
| 50225 | 
            +
                #           from_port: 1,
         | 
| 50226 | 
            +
                #           to_port: 1,
         | 
| 50227 | 
            +
                #           cidr_ipv_4: "String",
         | 
| 50228 | 
            +
                #           cidr_ipv_6: "String",
         | 
| 50229 | 
            +
                #           prefix_list_id: "PrefixListResourceId",
         | 
| 50230 | 
            +
                #           referenced_group_id: "SecurityGroupId",
         | 
| 50231 | 
            +
                #           description: "String",
         | 
| 50232 | 
            +
                #         },
         | 
| 50233 | 
            +
                #       }
         | 
| 50234 | 
            +
                #
         | 
| 50235 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 50236 | 
            +
                #   The ID of the security group rule.
         | 
| 50237 | 
            +
                #   @return [String]
         | 
| 50238 | 
            +
                #
         | 
| 50239 | 
            +
                # @!attribute [rw] security_group_rule
         | 
| 50240 | 
            +
                #   Information about the security group rule.
         | 
| 50241 | 
            +
                #   @return [Types::SecurityGroupRuleRequest]
         | 
| 50242 | 
            +
                #
         | 
| 50243 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleUpdate AWS API Documentation
         | 
| 50244 | 
            +
                #
         | 
| 50245 | 
            +
                class SecurityGroupRuleUpdate < Struct.new(
         | 
| 50246 | 
            +
                  :security_group_rule_id,
         | 
| 50247 | 
            +
                  :security_group_rule)
         | 
| 50248 | 
            +
                  SENSITIVE = []
         | 
| 50249 | 
            +
                  include Aws::Structure
         | 
| 50250 | 
            +
                end
         | 
| 50251 | 
            +
             | 
| 49709 50252 | 
             
                # @note When making an API call, you may pass SendDiagnosticInterruptRequest
         | 
| 49710 50253 | 
             
                #   data as a hash:
         | 
| 49711 50254 | 
             
                #
         | 
| @@ -50485,7 +51028,7 @@ module Aws::EC2 | |
| 50485 51028 | 
             
                #         weighted_capacity: 1.0,
         | 
| 50486 51029 | 
             
                #         tag_specifications: [
         | 
| 50487 51030 | 
             
                #           {
         | 
| 50488 | 
            -
                #             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
         | 
| 51031 | 
            +
                #             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
         | 
| 50489 51032 | 
             
                #             tags: [
         | 
| 50490 51033 | 
             
                #               {
         | 
| 50491 51034 | 
             
                #                 key: "String",
         | 
| @@ -50798,7 +51341,7 @@ module Aws::EC2 | |
| 50798 51341 | 
             
                #             weighted_capacity: 1.0,
         | 
| 50799 51342 | 
             
                #             tag_specifications: [
         | 
| 50800 51343 | 
             
                #               {
         | 
| 50801 | 
            -
                #                 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
         | 
| 51344 | 
            +
                #                 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
         | 
| 50802 51345 | 
             
                #                 tags: [
         | 
| 50803 51346 | 
             
                #                   {
         | 
| 50804 51347 | 
             
                #                     key: "String",
         | 
| @@ -50858,7 +51401,7 @@ module Aws::EC2 | |
| 50858 51401 | 
             
                #         instance_pools_to_use_count: 1,
         | 
| 50859 51402 | 
             
                #         tag_specifications: [
         | 
| 50860 51403 | 
             
                #           {
         | 
| 50861 | 
            -
                #             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
         | 
| 51404 | 
            +
                #             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
         | 
| 50862 51405 | 
             
                #             tags: [
         | 
| 50863 51406 | 
             
                #               {
         | 
| 50864 51407 | 
             
                #                 key: "String",
         | 
| @@ -51124,7 +51667,7 @@ module Aws::EC2 | |
| 51124 51667 | 
             
                #   data as a hash:
         | 
| 51125 51668 | 
             
                #
         | 
| 51126 51669 | 
             
                #       {
         | 
| 51127 | 
            -
                #         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
         | 
| 51670 | 
            +
                #         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
         | 
| 51128 51671 | 
             
                #         tags: [
         | 
| 51129 51672 | 
             
                #           {
         | 
| 51130 51673 | 
             
                #             key: "String",
         | 
| @@ -51842,7 +52385,7 @@ module Aws::EC2 | |
| 51842 52385 | 
             
                #         dry_run: false,
         | 
| 51843 52386 | 
             
                #         tag_specifications: [
         | 
| 51844 52387 | 
             
                #           {
         | 
| 51845 | 
            -
                #             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
         | 
| 52388 | 
            +
                #             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
         | 
| 51846 52389 | 
             
                #             tags: [
         | 
| 51847 52390 | 
             
                #               {
         | 
| 51848 52391 | 
             
                #                 key: "String",
         | 
| @@ -52441,7 +52984,7 @@ module Aws::EC2 | |
| 52441 52984 | 
             
                #   data as a hash:
         | 
| 52442 52985 | 
             
                #
         | 
| 52443 52986 | 
             
                #       {
         | 
| 52444 | 
            -
                #         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
         | 
| 52987 | 
            +
                #         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
         | 
| 52445 52988 | 
             
                #         tags: [
         | 
| 52446 52989 | 
             
                #           {
         | 
| 52447 52990 | 
             
                #             key: "String",
         | 
| @@ -54702,7 +55245,7 @@ module Aws::EC2 | |
| 54702 55245 | 
             
                #         dry_run: false,
         | 
| 54703 55246 | 
             
                #         group_id: "SecurityGroupId",
         | 
| 54704 55247 | 
             
                #         group_name: "SecurityGroupName",
         | 
| 54705 | 
            -
                #         ip_permissions: [ | 
| 55248 | 
            +
                #         ip_permissions: [
         | 
| 54706 55249 | 
             
                #           {
         | 
| 54707 55250 | 
             
                #             from_port: 1,
         | 
| 54708 55251 | 
             
                #             ip_protocol: "String",
         | 
| @@ -54710,18 +55253,21 @@ module Aws::EC2 | |
| 54710 55253 | 
             
                #               {
         | 
| 54711 55254 | 
             
                #                 cidr_ip: "String",
         | 
| 54712 55255 | 
             
                #                 description: "String",
         | 
| 55256 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54713 55257 | 
             
                #               },
         | 
| 54714 55258 | 
             
                #             ],
         | 
| 54715 55259 | 
             
                #             ipv_6_ranges: [
         | 
| 54716 55260 | 
             
                #               {
         | 
| 54717 55261 | 
             
                #                 cidr_ipv_6: "String",
         | 
| 54718 55262 | 
             
                #                 description: "String",
         | 
| 55263 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54719 55264 | 
             
                #               },
         | 
| 54720 55265 | 
             
                #             ],
         | 
| 54721 55266 | 
             
                #             prefix_list_ids: [
         | 
| 54722 55267 | 
             
                #               {
         | 
| 54723 55268 | 
             
                #                 description: "String",
         | 
| 54724 55269 | 
             
                #                 prefix_list_id: "String",
         | 
| 55270 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54725 55271 | 
             
                #               },
         | 
| 54726 55272 | 
             
                #             ],
         | 
| 54727 55273 | 
             
                #             to_port: 1,
         | 
| @@ -54734,10 +55280,17 @@ module Aws::EC2 | |
| 54734 55280 | 
             
                #                 user_id: "String",
         | 
| 54735 55281 | 
             
                #                 vpc_id: "String",
         | 
| 54736 55282 | 
             
                #                 vpc_peering_connection_id: "String",
         | 
| 55283 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54737 55284 | 
             
                #               },
         | 
| 54738 55285 | 
             
                #             ],
         | 
| 54739 55286 | 
             
                #           },
         | 
| 54740 55287 | 
             
                #         ],
         | 
| 55288 | 
            +
                #         security_group_rule_descriptions: [
         | 
| 55289 | 
            +
                #           {
         | 
| 55290 | 
            +
                #             security_group_rule_id: "String",
         | 
| 55291 | 
            +
                #             description: "String",
         | 
| 55292 | 
            +
                #           },
         | 
| 55293 | 
            +
                #         ],
         | 
| 54741 55294 | 
             
                #       }
         | 
| 54742 55295 | 
             
                #
         | 
| 54743 55296 | 
             
                # @!attribute [rw] dry_run
         | 
| @@ -54760,16 +55313,24 @@ module Aws::EC2 | |
| 54760 55313 | 
             
                #   @return [String]
         | 
| 54761 55314 | 
             
                #
         | 
| 54762 55315 | 
             
                # @!attribute [rw] ip_permissions
         | 
| 54763 | 
            -
                #   The IP permissions for the security group rule.
         | 
| 55316 | 
            +
                #   The IP permissions for the security group rule. You can either
         | 
| 55317 | 
            +
                #   specify this parameter, or the `SecurityGroupRuleDescriptions`
         | 
| 55318 | 
            +
                #   parameter.
         | 
| 54764 55319 | 
             
                #   @return [Array<Types::IpPermission>]
         | 
| 54765 55320 | 
             
                #
         | 
| 55321 | 
            +
                # @!attribute [rw] security_group_rule_descriptions
         | 
| 55322 | 
            +
                #   The description for the egress security group rules. You can either
         | 
| 55323 | 
            +
                #   specify this parameter, or the `IpPermissions` parameter.
         | 
| 55324 | 
            +
                #   @return [Array<Types::SecurityGroupRuleDescription>]
         | 
| 55325 | 
            +
                #
         | 
| 54766 55326 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsEgressRequest AWS API Documentation
         | 
| 54767 55327 | 
             
                #
         | 
| 54768 55328 | 
             
                class UpdateSecurityGroupRuleDescriptionsEgressRequest < Struct.new(
         | 
| 54769 55329 | 
             
                  :dry_run,
         | 
| 54770 55330 | 
             
                  :group_id,
         | 
| 54771 55331 | 
             
                  :group_name,
         | 
| 54772 | 
            -
                  :ip_permissions | 
| 55332 | 
            +
                  :ip_permissions,
         | 
| 55333 | 
            +
                  :security_group_rule_descriptions)
         | 
| 54773 55334 | 
             
                  SENSITIVE = []
         | 
| 54774 55335 | 
             
                  include Aws::Structure
         | 
| 54775 55336 | 
             
                end
         | 
| @@ -54793,7 +55354,7 @@ module Aws::EC2 | |
| 54793 55354 | 
             
                #         dry_run: false,
         | 
| 54794 55355 | 
             
                #         group_id: "SecurityGroupId",
         | 
| 54795 55356 | 
             
                #         group_name: "SecurityGroupName",
         | 
| 54796 | 
            -
                #         ip_permissions: [ | 
| 55357 | 
            +
                #         ip_permissions: [
         | 
| 54797 55358 | 
             
                #           {
         | 
| 54798 55359 | 
             
                #             from_port: 1,
         | 
| 54799 55360 | 
             
                #             ip_protocol: "String",
         | 
| @@ -54801,18 +55362,21 @@ module Aws::EC2 | |
| 54801 55362 | 
             
                #               {
         | 
| 54802 55363 | 
             
                #                 cidr_ip: "String",
         | 
| 54803 55364 | 
             
                #                 description: "String",
         | 
| 55365 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54804 55366 | 
             
                #               },
         | 
| 54805 55367 | 
             
                #             ],
         | 
| 54806 55368 | 
             
                #             ipv_6_ranges: [
         | 
| 54807 55369 | 
             
                #               {
         | 
| 54808 55370 | 
             
                #                 cidr_ipv_6: "String",
         | 
| 54809 55371 | 
             
                #                 description: "String",
         | 
| 55372 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54810 55373 | 
             
                #               },
         | 
| 54811 55374 | 
             
                #             ],
         | 
| 54812 55375 | 
             
                #             prefix_list_ids: [
         | 
| 54813 55376 | 
             
                #               {
         | 
| 54814 55377 | 
             
                #                 description: "String",
         | 
| 54815 55378 | 
             
                #                 prefix_list_id: "String",
         | 
| 55379 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54816 55380 | 
             
                #               },
         | 
| 54817 55381 | 
             
                #             ],
         | 
| 54818 55382 | 
             
                #             to_port: 1,
         | 
| @@ -54825,10 +55389,17 @@ module Aws::EC2 | |
| 54825 55389 | 
             
                #                 user_id: "String",
         | 
| 54826 55390 | 
             
                #                 vpc_id: "String",
         | 
| 54827 55391 | 
             
                #                 vpc_peering_connection_id: "String",
         | 
| 55392 | 
            +
                #                 security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54828 55393 | 
             
                #               },
         | 
| 54829 55394 | 
             
                #             ],
         | 
| 54830 55395 | 
             
                #           },
         | 
| 54831 55396 | 
             
                #         ],
         | 
| 55397 | 
            +
                #         security_group_rule_descriptions: [
         | 
| 55398 | 
            +
                #           {
         | 
| 55399 | 
            +
                #             security_group_rule_id: "String",
         | 
| 55400 | 
            +
                #             description: "String",
         | 
| 55401 | 
            +
                #           },
         | 
| 55402 | 
            +
                #         ],
         | 
| 54832 55403 | 
             
                #       }
         | 
| 54833 55404 | 
             
                #
         | 
| 54834 55405 | 
             
                # @!attribute [rw] dry_run
         | 
| @@ -54851,16 +55422,25 @@ module Aws::EC2 | |
| 54851 55422 | 
             
                #   @return [String]
         | 
| 54852 55423 | 
             
                #
         | 
| 54853 55424 | 
             
                # @!attribute [rw] ip_permissions
         | 
| 54854 | 
            -
                #   The IP permissions for the security group rule.
         | 
| 55425 | 
            +
                #   The IP permissions for the security group rule. You can either
         | 
| 55426 | 
            +
                #   specify this parameter, or the `SecurityGroupRuleDescriptions`
         | 
| 55427 | 
            +
                #   parameter.
         | 
| 54855 55428 | 
             
                #   @return [Array<Types::IpPermission>]
         | 
| 54856 55429 | 
             
                #
         | 
| 55430 | 
            +
                # @!attribute [rw] security_group_rule_descriptions
         | 
| 55431 | 
            +
                #   \[VPC only\] The description for the ingress security group rules.
         | 
| 55432 | 
            +
                #   You can either specify this parameter, or the `IpPermissions`
         | 
| 55433 | 
            +
                #   parameter.
         | 
| 55434 | 
            +
                #   @return [Array<Types::SecurityGroupRuleDescription>]
         | 
| 55435 | 
            +
                #
         | 
| 54857 55436 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsIngressRequest AWS API Documentation
         | 
| 54858 55437 | 
             
                #
         | 
| 54859 55438 | 
             
                class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
         | 
| 54860 55439 | 
             
                  :dry_run,
         | 
| 54861 55440 | 
             
                  :group_id,
         | 
| 54862 55441 | 
             
                  :group_name,
         | 
| 54863 | 
            -
                  :ip_permissions | 
| 55442 | 
            +
                  :ip_permissions,
         | 
| 55443 | 
            +
                  :security_group_rule_descriptions)
         | 
| 54864 55444 | 
             
                  SENSITIVE = []
         | 
| 54865 55445 | 
             
                  include Aws::Structure
         | 
| 54866 55446 | 
             
                end
         | 
| @@ -54959,6 +55539,7 @@ module Aws::EC2 | |
| 54959 55539 | 
             
                #         user_id: "String",
         | 
| 54960 55540 | 
             
                #         vpc_id: "String",
         | 
| 54961 55541 | 
             
                #         vpc_peering_connection_id: "String",
         | 
| 55542 | 
            +
                #         security_group_rule_id: "SecurityGroupRuleId",
         | 
| 54962 55543 | 
             
                #       }
         | 
| 54963 55544 | 
             
                #
         | 
| 54964 55545 | 
             
                # @!attribute [rw] description
         | 
| @@ -55005,6 +55586,10 @@ module Aws::EC2 | |
| 55005 55586 | 
             
                #   The ID of the VPC peering connection, if applicable.
         | 
| 55006 55587 | 
             
                #   @return [String]
         | 
| 55007 55588 | 
             
                #
         | 
| 55589 | 
            +
                # @!attribute [rw] security_group_rule_id
         | 
| 55590 | 
            +
                #   The ID of the security group rule.
         | 
| 55591 | 
            +
                #   @return [String]
         | 
| 55592 | 
            +
                #
         | 
| 55008 55593 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UserIdGroupPair AWS API Documentation
         | 
| 55009 55594 | 
             
                #
         | 
| 55010 55595 | 
             
                class UserIdGroupPair < Struct.new(
         | 
| @@ -55014,7 +55599,8 @@ module Aws::EC2 | |
| 55014 55599 | 
             
                  :peering_status,
         | 
| 55015 55600 | 
             
                  :user_id,
         | 
| 55016 55601 | 
             
                  :vpc_id,
         | 
| 55017 | 
            -
                  :vpc_peering_connection_id | 
| 55602 | 
            +
                  :vpc_peering_connection_id,
         | 
| 55603 | 
            +
                  :security_group_rule_id)
         | 
| 55018 55604 | 
             
                  SENSITIVE = []
         | 
| 55019 55605 | 
             
                  include Aws::Structure
         | 
| 55020 55606 | 
             
                end
         |