aws-sdk-securityhub 1.26.0 → 1.31.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/lib/aws-sdk-securityhub.rb +3 -1
- data/lib/aws-sdk-securityhub/client.rb +1240 -293
- data/lib/aws-sdk-securityhub/client_api.rb +611 -0
- data/lib/aws-sdk-securityhub/errors.rb +2 -0
- data/lib/aws-sdk-securityhub/resource.rb +2 -0
- data/lib/aws-sdk-securityhub/types.rb +7440 -1510
- metadata +4 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 0e0c6a61da4fcb83e55e54af8c07b96f29899528b028cde4b7255845806f9682
         | 
| 4 | 
            +
              data.tar.gz: f787db956bb62779c2cdd989d449232d08f6fd98c54a4c68af518745addbfb7b
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 6d82161620ac7ab7b0f0145f0eaa736709dbd8381f79eb4ced39afdb57114e5af3ab0c92293709c428c465249e4210bf6276b3056655c75bd7cf75f8448e92d1
         | 
| 7 | 
            +
              data.tar.gz: 2e41b85e09f7605f7b7a0b70830c1f1f26cef5bd4e005afc9991cdd511798a211a97162a554f551ce76625c43678f8ad21014d076468cdc971105502db4047e3
         | 
    
        data/lib/aws-sdk-securityhub.rb
    CHANGED
    
    | @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -45,6 +47,6 @@ require_relative 'aws-sdk-securityhub/customizations' | |
| 45 47 | 
             
            # @service
         | 
| 46 48 | 
             
            module Aws::SecurityHub
         | 
| 47 49 |  | 
| 48 | 
            -
              GEM_VERSION = '1. | 
| 50 | 
            +
              GEM_VERSION = '1.31.0'
         | 
| 49 51 |  | 
| 50 52 | 
             
            end
         | 
| @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb' | |
| 24 26 | 
             
            require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
         | 
| 25 27 | 
             
            require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
         | 
| 26 28 | 
             
            require 'aws-sdk-core/plugins/transfer_encoding.rb'
         | 
| 29 | 
            +
            require 'aws-sdk-core/plugins/http_checksum.rb'
         | 
| 27 30 | 
             
            require 'aws-sdk-core/plugins/signature_v4.rb'
         | 
| 28 31 | 
             
            require 'aws-sdk-core/plugins/protocols/rest_json.rb'
         | 
| 29 32 |  | 
| @@ -69,6 +72,7 @@ module Aws::SecurityHub | |
| 69 72 | 
             
                add_plugin(Aws::Plugins::ClientMetricsPlugin)
         | 
| 70 73 | 
             
                add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
         | 
| 71 74 | 
             
                add_plugin(Aws::Plugins::TransferEncoding)
         | 
| 75 | 
            +
                add_plugin(Aws::Plugins::HttpChecksum)
         | 
| 72 76 | 
             
                add_plugin(Aws::Plugins::SignatureV4)
         | 
| 73 77 | 
             
                add_plugin(Aws::Plugins::Protocols::RestJson)
         | 
| 74 78 |  | 
| @@ -161,7 +165,7 @@ module Aws::SecurityHub | |
| 161 165 | 
             
                #   @option options [String] :endpoint
         | 
| 162 166 | 
             
                #     The client endpoint is normally constructed from the `:region`
         | 
| 163 167 | 
             
                #     option. You should only configure an `:endpoint` when connecting
         | 
| 164 | 
            -
                #     to test endpoints. This should be a valid HTTP(S) URI.
         | 
| 168 | 
            +
                #     to test or custom endpoints. This should be a valid HTTP(S) URI.
         | 
| 165 169 | 
             
                #
         | 
| 166 170 | 
             
                #   @option options [Integer] :endpoint_cache_max_entries (1000)
         | 
| 167 171 | 
             
                #     Used for the maximum size limit of the LRU cache storing endpoints data
         | 
| @@ -523,6 +527,10 @@ module Aws::SecurityHub | |
| 523 527 | 
             
                #         network: {
         | 
| 524 528 | 
             
                #           direction: "IN", # accepts IN, OUT
         | 
| 525 529 | 
             
                #           protocol: "NonEmptyString",
         | 
| 530 | 
            +
                #           open_port_range: {
         | 
| 531 | 
            +
                #             begin: 1,
         | 
| 532 | 
            +
                #             end: 1,
         | 
| 533 | 
            +
                #           },
         | 
| 526 534 | 
             
                #           source_ip_v4: "NonEmptyString",
         | 
| 527 535 | 
             
                #           source_ip_v6: "NonEmptyString",
         | 
| 528 536 | 
             
                #           source_port: 1,
         | 
| @@ -533,6 +541,54 @@ module Aws::SecurityHub | |
| 533 541 | 
             
                #           destination_port: 1,
         | 
| 534 542 | 
             
                #           destination_domain: "NonEmptyString",
         | 
| 535 543 | 
             
                #         },
         | 
| 544 | 
            +
                #         network_path: [
         | 
| 545 | 
            +
                #           {
         | 
| 546 | 
            +
                #             component_id: "NonEmptyString",
         | 
| 547 | 
            +
                #             component_type: "NonEmptyString",
         | 
| 548 | 
            +
                #             egress: {
         | 
| 549 | 
            +
                #               protocol: "NonEmptyString",
         | 
| 550 | 
            +
                #               destination: {
         | 
| 551 | 
            +
                #                 address: ["NonEmptyString"],
         | 
| 552 | 
            +
                #                 port_ranges: [
         | 
| 553 | 
            +
                #                   {
         | 
| 554 | 
            +
                #                     begin: 1,
         | 
| 555 | 
            +
                #                     end: 1,
         | 
| 556 | 
            +
                #                   },
         | 
| 557 | 
            +
                #                 ],
         | 
| 558 | 
            +
                #               },
         | 
| 559 | 
            +
                #               source: {
         | 
| 560 | 
            +
                #                 address: ["NonEmptyString"],
         | 
| 561 | 
            +
                #                 port_ranges: [
         | 
| 562 | 
            +
                #                   {
         | 
| 563 | 
            +
                #                     begin: 1,
         | 
| 564 | 
            +
                #                     end: 1,
         | 
| 565 | 
            +
                #                   },
         | 
| 566 | 
            +
                #                 ],
         | 
| 567 | 
            +
                #               },
         | 
| 568 | 
            +
                #             },
         | 
| 569 | 
            +
                #             ingress: {
         | 
| 570 | 
            +
                #               protocol: "NonEmptyString",
         | 
| 571 | 
            +
                #               destination: {
         | 
| 572 | 
            +
                #                 address: ["NonEmptyString"],
         | 
| 573 | 
            +
                #                 port_ranges: [
         | 
| 574 | 
            +
                #                   {
         | 
| 575 | 
            +
                #                     begin: 1,
         | 
| 576 | 
            +
                #                     end: 1,
         | 
| 577 | 
            +
                #                   },
         | 
| 578 | 
            +
                #                 ],
         | 
| 579 | 
            +
                #               },
         | 
| 580 | 
            +
                #               source: {
         | 
| 581 | 
            +
                #                 address: ["NonEmptyString"],
         | 
| 582 | 
            +
                #                 port_ranges: [
         | 
| 583 | 
            +
                #                   {
         | 
| 584 | 
            +
                #                     begin: 1,
         | 
| 585 | 
            +
                #                     end: 1,
         | 
| 586 | 
            +
                #                   },
         | 
| 587 | 
            +
                #                 ],
         | 
| 588 | 
            +
                #               },
         | 
| 589 | 
            +
                #             },
         | 
| 590 | 
            +
                #           },
         | 
| 591 | 
            +
                #         ],
         | 
| 536 592 | 
             
                #         process: {
         | 
| 537 593 | 
             
                #           name: "NonEmptyString",
         | 
| 538 594 | 
             
                #           path: "NonEmptyString",
         | 
| @@ -561,6 +617,13 @@ module Aws::SecurityHub | |
| 561 617 | 
             
                #               "NonEmptyString" => "NonEmptyString",
         | 
| 562 618 | 
             
                #             },
         | 
| 563 619 | 
             
                #             details: {
         | 
| 620 | 
            +
                #               aws_auto_scaling_auto_scaling_group: {
         | 
| 621 | 
            +
                #                 launch_configuration_name: "NonEmptyString",
         | 
| 622 | 
            +
                #                 load_balancer_names: ["NonEmptyString"],
         | 
| 623 | 
            +
                #                 health_check_type: "NonEmptyString",
         | 
| 624 | 
            +
                #                 health_check_grace_period: 1,
         | 
| 625 | 
            +
                #                 created_time: "NonEmptyString",
         | 
| 626 | 
            +
                #               },
         | 
| 564 627 | 
             
                #               aws_code_build_project: {
         | 
| 565 628 | 
             
                #                 encryption_key: "NonEmptyString",
         | 
| 566 629 | 
             
                #                 environment: {
         | 
| @@ -708,6 +771,52 @@ module Aws::SecurityHub | |
| 708 771 | 
             
                #                   },
         | 
| 709 772 | 
             
                #                 ],
         | 
| 710 773 | 
             
                #               },
         | 
| 774 | 
            +
                #               aws_ec2_volume: {
         | 
| 775 | 
            +
                #                 create_time: "NonEmptyString",
         | 
| 776 | 
            +
                #                 encrypted: false,
         | 
| 777 | 
            +
                #                 size: 1,
         | 
| 778 | 
            +
                #                 snapshot_id: "NonEmptyString",
         | 
| 779 | 
            +
                #                 status: "NonEmptyString",
         | 
| 780 | 
            +
                #                 kms_key_id: "NonEmptyString",
         | 
| 781 | 
            +
                #                 attachments: [
         | 
| 782 | 
            +
                #                   {
         | 
| 783 | 
            +
                #                     attach_time: "NonEmptyString",
         | 
| 784 | 
            +
                #                     delete_on_termination: false,
         | 
| 785 | 
            +
                #                     instance_id: "NonEmptyString",
         | 
| 786 | 
            +
                #                     status: "NonEmptyString",
         | 
| 787 | 
            +
                #                   },
         | 
| 788 | 
            +
                #                 ],
         | 
| 789 | 
            +
                #               },
         | 
| 790 | 
            +
                #               aws_ec2_vpc: {
         | 
| 791 | 
            +
                #                 cidr_block_association_set: [
         | 
| 792 | 
            +
                #                   {
         | 
| 793 | 
            +
                #                     association_id: "NonEmptyString",
         | 
| 794 | 
            +
                #                     cidr_block: "NonEmptyString",
         | 
| 795 | 
            +
                #                     cidr_block_state: "NonEmptyString",
         | 
| 796 | 
            +
                #                   },
         | 
| 797 | 
            +
                #                 ],
         | 
| 798 | 
            +
                #                 ipv_6_cidr_block_association_set: [
         | 
| 799 | 
            +
                #                   {
         | 
| 800 | 
            +
                #                     association_id: "NonEmptyString",
         | 
| 801 | 
            +
                #                     ipv_6_cidr_block: "NonEmptyString",
         | 
| 802 | 
            +
                #                     cidr_block_state: "NonEmptyString",
         | 
| 803 | 
            +
                #                   },
         | 
| 804 | 
            +
                #                 ],
         | 
| 805 | 
            +
                #                 dhcp_options_id: "NonEmptyString",
         | 
| 806 | 
            +
                #                 state: "NonEmptyString",
         | 
| 807 | 
            +
                #               },
         | 
| 808 | 
            +
                #               aws_ec2_eip: {
         | 
| 809 | 
            +
                #                 instance_id: "NonEmptyString",
         | 
| 810 | 
            +
                #                 public_ip: "NonEmptyString",
         | 
| 811 | 
            +
                #                 allocation_id: "NonEmptyString",
         | 
| 812 | 
            +
                #                 association_id: "NonEmptyString",
         | 
| 813 | 
            +
                #                 domain: "NonEmptyString",
         | 
| 814 | 
            +
                #                 public_ipv_4_pool: "NonEmptyString",
         | 
| 815 | 
            +
                #                 network_border_group: "NonEmptyString",
         | 
| 816 | 
            +
                #                 network_interface_id: "NonEmptyString",
         | 
| 817 | 
            +
                #                 network_interface_owner_id: "NonEmptyString",
         | 
| 818 | 
            +
                #                 private_ip_address: "NonEmptyString",
         | 
| 819 | 
            +
                #               },
         | 
| 711 820 | 
             
                #               aws_elbv_2_load_balancer: {
         | 
| 712 821 | 
             
                #                 availability_zones: [
         | 
| 713 822 | 
             
                #                   {
         | 
| @@ -778,6 +887,18 @@ module Aws::SecurityHub | |
| 778 887 | 
             
                #                 server_side_encryption: "NonEmptyString",
         | 
| 779 888 | 
             
                #                 ssekms_key_id: "NonEmptyString",
         | 
| 780 889 | 
             
                #               },
         | 
| 890 | 
            +
                #               aws_secrets_manager_secret: {
         | 
| 891 | 
            +
                #                 rotation_rules: {
         | 
| 892 | 
            +
                #                   automatically_after_days: 1,
         | 
| 893 | 
            +
                #                 },
         | 
| 894 | 
            +
                #                 rotation_occurred_within_frequency: false,
         | 
| 895 | 
            +
                #                 kms_key_id: "NonEmptyString",
         | 
| 896 | 
            +
                #                 rotation_enabled: false,
         | 
| 897 | 
            +
                #                 rotation_lambda_arn: "NonEmptyString",
         | 
| 898 | 
            +
                #                 deleted: false,
         | 
| 899 | 
            +
                #                 name: "NonEmptyString",
         | 
| 900 | 
            +
                #                 description: "NonEmptyString",
         | 
| 901 | 
            +
                #               },
         | 
| 781 902 | 
             
                #               aws_iam_access_key: {
         | 
| 782 903 | 
             
                #                 user_name: "NonEmptyString",
         | 
| 783 904 | 
             
                #                 status: "Active", # accepts Active, Inactive
         | 
| @@ -786,6 +907,159 @@ module Aws::SecurityHub | |
| 786 907 | 
             
                #                 principal_type: "NonEmptyString",
         | 
| 787 908 | 
             
                #                 principal_name: "NonEmptyString",
         | 
| 788 909 | 
             
                #               },
         | 
| 910 | 
            +
                #               aws_iam_user: {
         | 
| 911 | 
            +
                #                 attached_managed_policies: [
         | 
| 912 | 
            +
                #                   {
         | 
| 913 | 
            +
                #                     policy_name: "NonEmptyString",
         | 
| 914 | 
            +
                #                     policy_arn: "NonEmptyString",
         | 
| 915 | 
            +
                #                   },
         | 
| 916 | 
            +
                #                 ],
         | 
| 917 | 
            +
                #                 create_date: "NonEmptyString",
         | 
| 918 | 
            +
                #                 group_list: ["NonEmptyString"],
         | 
| 919 | 
            +
                #                 path: "NonEmptyString",
         | 
| 920 | 
            +
                #                 permissions_boundary: {
         | 
| 921 | 
            +
                #                   permissions_boundary_arn: "NonEmptyString",
         | 
| 922 | 
            +
                #                   permissions_boundary_type: "NonEmptyString",
         | 
| 923 | 
            +
                #                 },
         | 
| 924 | 
            +
                #                 user_id: "NonEmptyString",
         | 
| 925 | 
            +
                #                 user_name: "NonEmptyString",
         | 
| 926 | 
            +
                #                 user_policy_list: [
         | 
| 927 | 
            +
                #                   {
         | 
| 928 | 
            +
                #                     policy_name: "NonEmptyString",
         | 
| 929 | 
            +
                #                   },
         | 
| 930 | 
            +
                #                 ],
         | 
| 931 | 
            +
                #               },
         | 
| 932 | 
            +
                #               aws_iam_policy: {
         | 
| 933 | 
            +
                #                 attachment_count: 1,
         | 
| 934 | 
            +
                #                 create_date: "NonEmptyString",
         | 
| 935 | 
            +
                #                 default_version_id: "NonEmptyString",
         | 
| 936 | 
            +
                #                 description: "NonEmptyString",
         | 
| 937 | 
            +
                #                 is_attachable: false,
         | 
| 938 | 
            +
                #                 path: "NonEmptyString",
         | 
| 939 | 
            +
                #                 permissions_boundary_usage_count: 1,
         | 
| 940 | 
            +
                #                 policy_id: "NonEmptyString",
         | 
| 941 | 
            +
                #                 policy_name: "NonEmptyString",
         | 
| 942 | 
            +
                #                 policy_version_list: [
         | 
| 943 | 
            +
                #                   {
         | 
| 944 | 
            +
                #                     version_id: "NonEmptyString",
         | 
| 945 | 
            +
                #                     is_default_version: false,
         | 
| 946 | 
            +
                #                     create_date: "NonEmptyString",
         | 
| 947 | 
            +
                #                   },
         | 
| 948 | 
            +
                #                 ],
         | 
| 949 | 
            +
                #                 update_date: "NonEmptyString",
         | 
| 950 | 
            +
                #               },
         | 
| 951 | 
            +
                #               aws_dynamo_db_table: {
         | 
| 952 | 
            +
                #                 attribute_definitions: [
         | 
| 953 | 
            +
                #                   {
         | 
| 954 | 
            +
                #                     attribute_name: "NonEmptyString",
         | 
| 955 | 
            +
                #                     attribute_type: "NonEmptyString",
         | 
| 956 | 
            +
                #                   },
         | 
| 957 | 
            +
                #                 ],
         | 
| 958 | 
            +
                #                 billing_mode_summary: {
         | 
| 959 | 
            +
                #                   billing_mode: "NonEmptyString",
         | 
| 960 | 
            +
                #                   last_update_to_pay_per_request_date_time: "NonEmptyString",
         | 
| 961 | 
            +
                #                 },
         | 
| 962 | 
            +
                #                 creation_date_time: "NonEmptyString",
         | 
| 963 | 
            +
                #                 global_secondary_indexes: [
         | 
| 964 | 
            +
                #                   {
         | 
| 965 | 
            +
                #                     backfilling: false,
         | 
| 966 | 
            +
                #                     index_arn: "NonEmptyString",
         | 
| 967 | 
            +
                #                     index_name: "NonEmptyString",
         | 
| 968 | 
            +
                #                     index_size_bytes: 1,
         | 
| 969 | 
            +
                #                     index_status: "NonEmptyString",
         | 
| 970 | 
            +
                #                     item_count: 1,
         | 
| 971 | 
            +
                #                     key_schema: [
         | 
| 972 | 
            +
                #                       {
         | 
| 973 | 
            +
                #                         attribute_name: "NonEmptyString",
         | 
| 974 | 
            +
                #                         key_type: "NonEmptyString",
         | 
| 975 | 
            +
                #                       },
         | 
| 976 | 
            +
                #                     ],
         | 
| 977 | 
            +
                #                     projection: {
         | 
| 978 | 
            +
                #                       non_key_attributes: ["NonEmptyString"],
         | 
| 979 | 
            +
                #                       projection_type: "NonEmptyString",
         | 
| 980 | 
            +
                #                     },
         | 
| 981 | 
            +
                #                     provisioned_throughput: {
         | 
| 982 | 
            +
                #                       last_decrease_date_time: "NonEmptyString",
         | 
| 983 | 
            +
                #                       last_increase_date_time: "NonEmptyString",
         | 
| 984 | 
            +
                #                       number_of_decreases_today: 1,
         | 
| 985 | 
            +
                #                       read_capacity_units: 1,
         | 
| 986 | 
            +
                #                       write_capacity_units: 1,
         | 
| 987 | 
            +
                #                     },
         | 
| 988 | 
            +
                #                   },
         | 
| 989 | 
            +
                #                 ],
         | 
| 990 | 
            +
                #                 global_table_version: "NonEmptyString",
         | 
| 991 | 
            +
                #                 item_count: 1,
         | 
| 992 | 
            +
                #                 key_schema: [
         | 
| 993 | 
            +
                #                   {
         | 
| 994 | 
            +
                #                     attribute_name: "NonEmptyString",
         | 
| 995 | 
            +
                #                     key_type: "NonEmptyString",
         | 
| 996 | 
            +
                #                   },
         | 
| 997 | 
            +
                #                 ],
         | 
| 998 | 
            +
                #                 latest_stream_arn: "NonEmptyString",
         | 
| 999 | 
            +
                #                 latest_stream_label: "NonEmptyString",
         | 
| 1000 | 
            +
                #                 local_secondary_indexes: [
         | 
| 1001 | 
            +
                #                   {
         | 
| 1002 | 
            +
                #                     index_arn: "NonEmptyString",
         | 
| 1003 | 
            +
                #                     index_name: "NonEmptyString",
         | 
| 1004 | 
            +
                #                     key_schema: [
         | 
| 1005 | 
            +
                #                       {
         | 
| 1006 | 
            +
                #                         attribute_name: "NonEmptyString",
         | 
| 1007 | 
            +
                #                         key_type: "NonEmptyString",
         | 
| 1008 | 
            +
                #                       },
         | 
| 1009 | 
            +
                #                     ],
         | 
| 1010 | 
            +
                #                     projection: {
         | 
| 1011 | 
            +
                #                       non_key_attributes: ["NonEmptyString"],
         | 
| 1012 | 
            +
                #                       projection_type: "NonEmptyString",
         | 
| 1013 | 
            +
                #                     },
         | 
| 1014 | 
            +
                #                   },
         | 
| 1015 | 
            +
                #                 ],
         | 
| 1016 | 
            +
                #                 provisioned_throughput: {
         | 
| 1017 | 
            +
                #                   last_decrease_date_time: "NonEmptyString",
         | 
| 1018 | 
            +
                #                   last_increase_date_time: "NonEmptyString",
         | 
| 1019 | 
            +
                #                   number_of_decreases_today: 1,
         | 
| 1020 | 
            +
                #                   read_capacity_units: 1,
         | 
| 1021 | 
            +
                #                   write_capacity_units: 1,
         | 
| 1022 | 
            +
                #                 },
         | 
| 1023 | 
            +
                #                 replicas: [
         | 
| 1024 | 
            +
                #                   {
         | 
| 1025 | 
            +
                #                     global_secondary_indexes: [
         | 
| 1026 | 
            +
                #                       {
         | 
| 1027 | 
            +
                #                         index_name: "NonEmptyString",
         | 
| 1028 | 
            +
                #                         provisioned_throughput_override: {
         | 
| 1029 | 
            +
                #                           read_capacity_units: 1,
         | 
| 1030 | 
            +
                #                         },
         | 
| 1031 | 
            +
                #                       },
         | 
| 1032 | 
            +
                #                     ],
         | 
| 1033 | 
            +
                #                     kms_master_key_id: "NonEmptyString",
         | 
| 1034 | 
            +
                #                     provisioned_throughput_override: {
         | 
| 1035 | 
            +
                #                       read_capacity_units: 1,
         | 
| 1036 | 
            +
                #                     },
         | 
| 1037 | 
            +
                #                     region_name: "NonEmptyString",
         | 
| 1038 | 
            +
                #                     replica_status: "NonEmptyString",
         | 
| 1039 | 
            +
                #                     replica_status_description: "NonEmptyString",
         | 
| 1040 | 
            +
                #                   },
         | 
| 1041 | 
            +
                #                 ],
         | 
| 1042 | 
            +
                #                 restore_summary: {
         | 
| 1043 | 
            +
                #                   source_backup_arn: "NonEmptyString",
         | 
| 1044 | 
            +
                #                   source_table_arn: "NonEmptyString",
         | 
| 1045 | 
            +
                #                   restore_date_time: "NonEmptyString",
         | 
| 1046 | 
            +
                #                   restore_in_progress: false,
         | 
| 1047 | 
            +
                #                 },
         | 
| 1048 | 
            +
                #                 sse_description: {
         | 
| 1049 | 
            +
                #                   inaccessible_encryption_date_time: "NonEmptyString",
         | 
| 1050 | 
            +
                #                   status: "NonEmptyString",
         | 
| 1051 | 
            +
                #                   sse_type: "NonEmptyString",
         | 
| 1052 | 
            +
                #                   kms_master_key_arn: "NonEmptyString",
         | 
| 1053 | 
            +
                #                 },
         | 
| 1054 | 
            +
                #                 stream_specification: {
         | 
| 1055 | 
            +
                #                   stream_enabled: false,
         | 
| 1056 | 
            +
                #                   stream_view_type: "NonEmptyString",
         | 
| 1057 | 
            +
                #                 },
         | 
| 1058 | 
            +
                #                 table_id: "NonEmptyString",
         | 
| 1059 | 
            +
                #                 table_name: "NonEmptyString",
         | 
| 1060 | 
            +
                #                 table_size_bytes: 1,
         | 
| 1061 | 
            +
                #                 table_status: "NonEmptyString",
         | 
| 1062 | 
            +
                #               },
         | 
| 789 1063 | 
             
                #               aws_iam_role: {
         | 
| 790 1064 | 
             
                #                 assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument",
         | 
| 791 1065 | 
             
                #                 create_date: "NonEmptyString",
         | 
| @@ -801,6 +1075,7 @@ module Aws::SecurityHub | |
| 801 1075 | 
             
                #                 key_manager: "NonEmptyString",
         | 
| 802 1076 | 
             
                #                 key_state: "NonEmptyString",
         | 
| 803 1077 | 
             
                #                 origin: "NonEmptyString",
         | 
| 1078 | 
            +
                #                 description: "NonEmptyString",
         | 
| 804 1079 | 
             
                #               },
         | 
| 805 1080 | 
             
                #               aws_lambda_function: {
         | 
| 806 1081 | 
             
                #                 code: {
         | 
| @@ -888,6 +1163,116 @@ module Aws::SecurityHub | |
| 888 1163 | 
             
                #                     status: "NonEmptyString",
         | 
| 889 1164 | 
             
                #                   },
         | 
| 890 1165 | 
             
                #                 ],
         | 
| 1166 | 
            +
                #                 multi_az: false,
         | 
| 1167 | 
            +
                #                 enhanced_monitoring_resource_arn: "NonEmptyString",
         | 
| 1168 | 
            +
                #                 db_instance_status: "NonEmptyString",
         | 
| 1169 | 
            +
                #                 master_username: "NonEmptyString",
         | 
| 1170 | 
            +
                #                 allocated_storage: 1,
         | 
| 1171 | 
            +
                #                 preferred_backup_window: "NonEmptyString",
         | 
| 1172 | 
            +
                #                 backup_retention_period: 1,
         | 
| 1173 | 
            +
                #                 db_security_groups: ["NonEmptyString"],
         | 
| 1174 | 
            +
                #                 db_parameter_groups: [
         | 
| 1175 | 
            +
                #                   {
         | 
| 1176 | 
            +
                #                     db_parameter_group_name: "NonEmptyString",
         | 
| 1177 | 
            +
                #                     parameter_apply_status: "NonEmptyString",
         | 
| 1178 | 
            +
                #                   },
         | 
| 1179 | 
            +
                #                 ],
         | 
| 1180 | 
            +
                #                 availability_zone: "NonEmptyString",
         | 
| 1181 | 
            +
                #                 db_subnet_group: {
         | 
| 1182 | 
            +
                #                   db_subnet_group_name: "NonEmptyString",
         | 
| 1183 | 
            +
                #                   db_subnet_group_description: "NonEmptyString",
         | 
| 1184 | 
            +
                #                   vpc_id: "NonEmptyString",
         | 
| 1185 | 
            +
                #                   subnet_group_status: "NonEmptyString",
         | 
| 1186 | 
            +
                #                   subnets: [
         | 
| 1187 | 
            +
                #                     {
         | 
| 1188 | 
            +
                #                       subnet_identifier: "NonEmptyString",
         | 
| 1189 | 
            +
                #                       subnet_availability_zone: {
         | 
| 1190 | 
            +
                #                         name: "NonEmptyString",
         | 
| 1191 | 
            +
                #                       },
         | 
| 1192 | 
            +
                #                       subnet_status: "NonEmptyString",
         | 
| 1193 | 
            +
                #                     },
         | 
| 1194 | 
            +
                #                   ],
         | 
| 1195 | 
            +
                #                   db_subnet_group_arn: "NonEmptyString",
         | 
| 1196 | 
            +
                #                 },
         | 
| 1197 | 
            +
                #                 preferred_maintenance_window: "NonEmptyString",
         | 
| 1198 | 
            +
                #                 pending_modified_values: {
         | 
| 1199 | 
            +
                #                   db_instance_class: "NonEmptyString",
         | 
| 1200 | 
            +
                #                   allocated_storage: 1,
         | 
| 1201 | 
            +
                #                   master_user_password: "NonEmptyString",
         | 
| 1202 | 
            +
                #                   port: 1,
         | 
| 1203 | 
            +
                #                   backup_retention_period: 1,
         | 
| 1204 | 
            +
                #                   multi_az: false,
         | 
| 1205 | 
            +
                #                   engine_version: "NonEmptyString",
         | 
| 1206 | 
            +
                #                   license_model: "NonEmptyString",
         | 
| 1207 | 
            +
                #                   iops: 1,
         | 
| 1208 | 
            +
                #                   db_instance_identifier: "NonEmptyString",
         | 
| 1209 | 
            +
                #                   storage_type: "NonEmptyString",
         | 
| 1210 | 
            +
                #                   ca_certificate_identifier: "NonEmptyString",
         | 
| 1211 | 
            +
                #                   db_subnet_group_name: "NonEmptyString",
         | 
| 1212 | 
            +
                #                   pending_cloud_watch_logs_exports: {
         | 
| 1213 | 
            +
                #                     log_types_to_enable: ["NonEmptyString"],
         | 
| 1214 | 
            +
                #                     log_types_to_disable: ["NonEmptyString"],
         | 
| 1215 | 
            +
                #                   },
         | 
| 1216 | 
            +
                #                   processor_features: [
         | 
| 1217 | 
            +
                #                     {
         | 
| 1218 | 
            +
                #                       name: "NonEmptyString",
         | 
| 1219 | 
            +
                #                       value: "NonEmptyString",
         | 
| 1220 | 
            +
                #                     },
         | 
| 1221 | 
            +
                #                   ],
         | 
| 1222 | 
            +
                #                 },
         | 
| 1223 | 
            +
                #                 latest_restorable_time: "NonEmptyString",
         | 
| 1224 | 
            +
                #                 auto_minor_version_upgrade: false,
         | 
| 1225 | 
            +
                #                 read_replica_source_db_instance_identifier: "NonEmptyString",
         | 
| 1226 | 
            +
                #                 read_replica_db_instance_identifiers: ["NonEmptyString"],
         | 
| 1227 | 
            +
                #                 read_replica_db_cluster_identifiers: ["NonEmptyString"],
         | 
| 1228 | 
            +
                #                 license_model: "NonEmptyString",
         | 
| 1229 | 
            +
                #                 iops: 1,
         | 
| 1230 | 
            +
                #                 option_group_memberships: [
         | 
| 1231 | 
            +
                #                   {
         | 
| 1232 | 
            +
                #                     option_group_name: "NonEmptyString",
         | 
| 1233 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1234 | 
            +
                #                   },
         | 
| 1235 | 
            +
                #                 ],
         | 
| 1236 | 
            +
                #                 character_set_name: "NonEmptyString",
         | 
| 1237 | 
            +
                #                 secondary_availability_zone: "NonEmptyString",
         | 
| 1238 | 
            +
                #                 status_infos: [
         | 
| 1239 | 
            +
                #                   {
         | 
| 1240 | 
            +
                #                     status_type: "NonEmptyString",
         | 
| 1241 | 
            +
                #                     normal: false,
         | 
| 1242 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1243 | 
            +
                #                     message: "NonEmptyString",
         | 
| 1244 | 
            +
                #                   },
         | 
| 1245 | 
            +
                #                 ],
         | 
| 1246 | 
            +
                #                 storage_type: "NonEmptyString",
         | 
| 1247 | 
            +
                #                 domain_memberships: [
         | 
| 1248 | 
            +
                #                   {
         | 
| 1249 | 
            +
                #                     domain: "NonEmptyString",
         | 
| 1250 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1251 | 
            +
                #                     fqdn: "NonEmptyString",
         | 
| 1252 | 
            +
                #                     iam_role_name: "NonEmptyString",
         | 
| 1253 | 
            +
                #                   },
         | 
| 1254 | 
            +
                #                 ],
         | 
| 1255 | 
            +
                #                 copy_tags_to_snapshot: false,
         | 
| 1256 | 
            +
                #                 monitoring_interval: 1,
         | 
| 1257 | 
            +
                #                 monitoring_role_arn: "NonEmptyString",
         | 
| 1258 | 
            +
                #                 promotion_tier: 1,
         | 
| 1259 | 
            +
                #                 timezone: "NonEmptyString",
         | 
| 1260 | 
            +
                #                 performance_insights_enabled: false,
         | 
| 1261 | 
            +
                #                 performance_insights_kms_key_id: "NonEmptyString",
         | 
| 1262 | 
            +
                #                 performance_insights_retention_period: 1,
         | 
| 1263 | 
            +
                #                 enabled_cloud_watch_logs_exports: ["NonEmptyString"],
         | 
| 1264 | 
            +
                #                 processor_features: [
         | 
| 1265 | 
            +
                #                   {
         | 
| 1266 | 
            +
                #                     name: "NonEmptyString",
         | 
| 1267 | 
            +
                #                     value: "NonEmptyString",
         | 
| 1268 | 
            +
                #                   },
         | 
| 1269 | 
            +
                #                 ],
         | 
| 1270 | 
            +
                #                 listener_endpoint: {
         | 
| 1271 | 
            +
                #                   address: "NonEmptyString",
         | 
| 1272 | 
            +
                #                   port: 1,
         | 
| 1273 | 
            +
                #                   hosted_zone_id: "NonEmptyString",
         | 
| 1274 | 
            +
                #                 },
         | 
| 1275 | 
            +
                #                 max_allocated_storage: 1,
         | 
| 891 1276 | 
             
                #               },
         | 
| 892 1277 | 
             
                #               aws_sns_topic: {
         | 
| 893 1278 | 
             
                #                 kms_master_key_id: "NonEmptyString",
         | 
| @@ -929,6 +1314,128 @@ module Aws::SecurityHub | |
| 929 1314 | 
             
                #                 ],
         | 
| 930 1315 | 
             
                #                 web_acl_id: "NonEmptyString",
         | 
| 931 1316 | 
             
                #               },
         | 
| 1317 | 
            +
                #               aws_rds_db_snapshot: {
         | 
| 1318 | 
            +
                #                 db_snapshot_identifier: "NonEmptyString",
         | 
| 1319 | 
            +
                #                 db_instance_identifier: "NonEmptyString",
         | 
| 1320 | 
            +
                #                 snapshot_create_time: "NonEmptyString",
         | 
| 1321 | 
            +
                #                 engine: "NonEmptyString",
         | 
| 1322 | 
            +
                #                 allocated_storage: 1,
         | 
| 1323 | 
            +
                #                 status: "NonEmptyString",
         | 
| 1324 | 
            +
                #                 port: 1,
         | 
| 1325 | 
            +
                #                 availability_zone: "NonEmptyString",
         | 
| 1326 | 
            +
                #                 vpc_id: "NonEmptyString",
         | 
| 1327 | 
            +
                #                 instance_create_time: "NonEmptyString",
         | 
| 1328 | 
            +
                #                 master_username: "NonEmptyString",
         | 
| 1329 | 
            +
                #                 engine_version: "NonEmptyString",
         | 
| 1330 | 
            +
                #                 license_model: "NonEmptyString",
         | 
| 1331 | 
            +
                #                 snapshot_type: "NonEmptyString",
         | 
| 1332 | 
            +
                #                 iops: 1,
         | 
| 1333 | 
            +
                #                 option_group_name: "NonEmptyString",
         | 
| 1334 | 
            +
                #                 percent_progress: 1,
         | 
| 1335 | 
            +
                #                 source_region: "NonEmptyString",
         | 
| 1336 | 
            +
                #                 source_db_snapshot_identifier: "NonEmptyString",
         | 
| 1337 | 
            +
                #                 storage_type: "NonEmptyString",
         | 
| 1338 | 
            +
                #                 tde_credential_arn: "NonEmptyString",
         | 
| 1339 | 
            +
                #                 encrypted: false,
         | 
| 1340 | 
            +
                #                 kms_key_id: "NonEmptyString",
         | 
| 1341 | 
            +
                #                 timezone: "NonEmptyString",
         | 
| 1342 | 
            +
                #                 iam_database_authentication_enabled: false,
         | 
| 1343 | 
            +
                #                 processor_features: [
         | 
| 1344 | 
            +
                #                   {
         | 
| 1345 | 
            +
                #                     name: "NonEmptyString",
         | 
| 1346 | 
            +
                #                     value: "NonEmptyString",
         | 
| 1347 | 
            +
                #                   },
         | 
| 1348 | 
            +
                #                 ],
         | 
| 1349 | 
            +
                #                 dbi_resource_id: "NonEmptyString",
         | 
| 1350 | 
            +
                #               },
         | 
| 1351 | 
            +
                #               aws_rds_db_cluster_snapshot: {
         | 
| 1352 | 
            +
                #                 availability_zones: ["NonEmptyString"],
         | 
| 1353 | 
            +
                #                 snapshot_create_time: "NonEmptyString",
         | 
| 1354 | 
            +
                #                 engine: "NonEmptyString",
         | 
| 1355 | 
            +
                #                 allocated_storage: 1,
         | 
| 1356 | 
            +
                #                 status: "NonEmptyString",
         | 
| 1357 | 
            +
                #                 port: 1,
         | 
| 1358 | 
            +
                #                 vpc_id: "NonEmptyString",
         | 
| 1359 | 
            +
                #                 cluster_create_time: "NonEmptyString",
         | 
| 1360 | 
            +
                #                 master_username: "NonEmptyString",
         | 
| 1361 | 
            +
                #                 engine_version: "NonEmptyString",
         | 
| 1362 | 
            +
                #                 license_model: "NonEmptyString",
         | 
| 1363 | 
            +
                #                 snapshot_type: "NonEmptyString",
         | 
| 1364 | 
            +
                #                 percent_progress: 1,
         | 
| 1365 | 
            +
                #                 storage_encrypted: false,
         | 
| 1366 | 
            +
                #                 kms_key_id: "NonEmptyString",
         | 
| 1367 | 
            +
                #                 db_cluster_identifier: "NonEmptyString",
         | 
| 1368 | 
            +
                #                 db_cluster_snapshot_identifier: "NonEmptyString",
         | 
| 1369 | 
            +
                #                 iam_database_authentication_enabled: false,
         | 
| 1370 | 
            +
                #               },
         | 
| 1371 | 
            +
                #               aws_rds_db_cluster: {
         | 
| 1372 | 
            +
                #                 allocated_storage: 1,
         | 
| 1373 | 
            +
                #                 availability_zones: ["NonEmptyString"],
         | 
| 1374 | 
            +
                #                 backup_retention_period: 1,
         | 
| 1375 | 
            +
                #                 database_name: "NonEmptyString",
         | 
| 1376 | 
            +
                #                 status: "NonEmptyString",
         | 
| 1377 | 
            +
                #                 endpoint: "NonEmptyString",
         | 
| 1378 | 
            +
                #                 reader_endpoint: "NonEmptyString",
         | 
| 1379 | 
            +
                #                 custom_endpoints: ["NonEmptyString"],
         | 
| 1380 | 
            +
                #                 multi_az: false,
         | 
| 1381 | 
            +
                #                 engine: "NonEmptyString",
         | 
| 1382 | 
            +
                #                 engine_version: "NonEmptyString",
         | 
| 1383 | 
            +
                #                 port: 1,
         | 
| 1384 | 
            +
                #                 master_username: "NonEmptyString",
         | 
| 1385 | 
            +
                #                 preferred_backup_window: "NonEmptyString",
         | 
| 1386 | 
            +
                #                 preferred_maintenance_window: "NonEmptyString",
         | 
| 1387 | 
            +
                #                 read_replica_identifiers: ["NonEmptyString"],
         | 
| 1388 | 
            +
                #                 vpc_security_groups: [
         | 
| 1389 | 
            +
                #                   {
         | 
| 1390 | 
            +
                #                     vpc_security_group_id: "NonEmptyString",
         | 
| 1391 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1392 | 
            +
                #                   },
         | 
| 1393 | 
            +
                #                 ],
         | 
| 1394 | 
            +
                #                 hosted_zone_id: "NonEmptyString",
         | 
| 1395 | 
            +
                #                 storage_encrypted: false,
         | 
| 1396 | 
            +
                #                 kms_key_id: "NonEmptyString",
         | 
| 1397 | 
            +
                #                 db_cluster_resource_id: "NonEmptyString",
         | 
| 1398 | 
            +
                #                 associated_roles: [
         | 
| 1399 | 
            +
                #                   {
         | 
| 1400 | 
            +
                #                     role_arn: "NonEmptyString",
         | 
| 1401 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1402 | 
            +
                #                   },
         | 
| 1403 | 
            +
                #                 ],
         | 
| 1404 | 
            +
                #                 cluster_create_time: "NonEmptyString",
         | 
| 1405 | 
            +
                #                 enabled_cloud_watch_logs_exports: ["NonEmptyString"],
         | 
| 1406 | 
            +
                #                 engine_mode: "NonEmptyString",
         | 
| 1407 | 
            +
                #                 deletion_protection: false,
         | 
| 1408 | 
            +
                #                 http_endpoint_enabled: false,
         | 
| 1409 | 
            +
                #                 activity_stream_status: "NonEmptyString",
         | 
| 1410 | 
            +
                #                 copy_tags_to_snapshot: false,
         | 
| 1411 | 
            +
                #                 cross_account_clone: false,
         | 
| 1412 | 
            +
                #                 domain_memberships: [
         | 
| 1413 | 
            +
                #                   {
         | 
| 1414 | 
            +
                #                     domain: "NonEmptyString",
         | 
| 1415 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1416 | 
            +
                #                     fqdn: "NonEmptyString",
         | 
| 1417 | 
            +
                #                     iam_role_name: "NonEmptyString",
         | 
| 1418 | 
            +
                #                   },
         | 
| 1419 | 
            +
                #                 ],
         | 
| 1420 | 
            +
                #                 db_cluster_parameter_group: "NonEmptyString",
         | 
| 1421 | 
            +
                #                 db_subnet_group: "NonEmptyString",
         | 
| 1422 | 
            +
                #                 db_cluster_option_group_memberships: [
         | 
| 1423 | 
            +
                #                   {
         | 
| 1424 | 
            +
                #                     db_cluster_option_group_name: "NonEmptyString",
         | 
| 1425 | 
            +
                #                     status: "NonEmptyString",
         | 
| 1426 | 
            +
                #                   },
         | 
| 1427 | 
            +
                #                 ],
         | 
| 1428 | 
            +
                #                 db_cluster_identifier: "NonEmptyString",
         | 
| 1429 | 
            +
                #                 db_cluster_members: [
         | 
| 1430 | 
            +
                #                   {
         | 
| 1431 | 
            +
                #                     is_cluster_writer: false,
         | 
| 1432 | 
            +
                #                     promotion_tier: 1,
         | 
| 1433 | 
            +
                #                     db_instance_identifier: "NonEmptyString",
         | 
| 1434 | 
            +
                #                     db_cluster_parameter_group_status: "NonEmptyString",
         | 
| 1435 | 
            +
                #                   },
         | 
| 1436 | 
            +
                #                 ],
         | 
| 1437 | 
            +
                #                 iam_database_authentication_enabled: false,
         | 
| 1438 | 
            +
                #               },
         | 
| 932 1439 | 
             
                #               container: {
         | 
| 933 1440 | 
             
                #                 name: "NonEmptyString",
         | 
| 934 1441 | 
             
                #                 image_id: "NonEmptyString",
         | 
| @@ -968,6 +1475,36 @@ module Aws::SecurityHub | |
| 968 1475 | 
             
                #           updated_by: "NonEmptyString", # required
         | 
| 969 1476 | 
             
                #           updated_at: "NonEmptyString", # required
         | 
| 970 1477 | 
             
                #         },
         | 
| 1478 | 
            +
                #         vulnerabilities: [
         | 
| 1479 | 
            +
                #           {
         | 
| 1480 | 
            +
                #             id: "NonEmptyString", # required
         | 
| 1481 | 
            +
                #             vulnerable_packages: [
         | 
| 1482 | 
            +
                #               {
         | 
| 1483 | 
            +
                #                 name: "NonEmptyString",
         | 
| 1484 | 
            +
                #                 version: "NonEmptyString",
         | 
| 1485 | 
            +
                #                 epoch: "NonEmptyString",
         | 
| 1486 | 
            +
                #                 release: "NonEmptyString",
         | 
| 1487 | 
            +
                #                 architecture: "NonEmptyString",
         | 
| 1488 | 
            +
                #               },
         | 
| 1489 | 
            +
                #             ],
         | 
| 1490 | 
            +
                #             cvss: [
         | 
| 1491 | 
            +
                #               {
         | 
| 1492 | 
            +
                #                 version: "NonEmptyString",
         | 
| 1493 | 
            +
                #                 base_score: 1.0,
         | 
| 1494 | 
            +
                #                 base_vector: "NonEmptyString",
         | 
| 1495 | 
            +
                #               },
         | 
| 1496 | 
            +
                #             ],
         | 
| 1497 | 
            +
                #             related_vulnerabilities: ["NonEmptyString"],
         | 
| 1498 | 
            +
                #             vendor: {
         | 
| 1499 | 
            +
                #               name: "NonEmptyString", # required
         | 
| 1500 | 
            +
                #               url: "NonEmptyString",
         | 
| 1501 | 
            +
                #               vendor_severity: "NonEmptyString",
         | 
| 1502 | 
            +
                #               vendor_created_at: "NonEmptyString",
         | 
| 1503 | 
            +
                #               vendor_updated_at: "NonEmptyString",
         | 
| 1504 | 
            +
                #             },
         | 
| 1505 | 
            +
                #             reference_urls: ["NonEmptyString"],
         | 
| 1506 | 
            +
                #           },
         | 
| 1507 | 
            +
                #         ],
         | 
| 971 1508 | 
             
                #       },
         | 
| 972 1509 | 
             
                #     ],
         | 
| 973 1510 | 
             
                #   })
         | 
| @@ -1228,31 +1765,31 @@ module Aws::SecurityHub | |
| 1228 1765 | 
             
                #       product_arn: [
         | 
| 1229 1766 | 
             
                #         {
         | 
| 1230 1767 | 
             
                #           value: "NonEmptyString",
         | 
| 1231 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1768 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1232 1769 | 
             
                #         },
         | 
| 1233 1770 | 
             
                #       ],
         | 
| 1234 1771 | 
             
                #       aws_account_id: [
         | 
| 1235 1772 | 
             
                #         {
         | 
| 1236 1773 | 
             
                #           value: "NonEmptyString",
         | 
| 1237 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1774 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1238 1775 | 
             
                #         },
         | 
| 1239 1776 | 
             
                #       ],
         | 
| 1240 1777 | 
             
                #       id: [
         | 
| 1241 1778 | 
             
                #         {
         | 
| 1242 1779 | 
             
                #           value: "NonEmptyString",
         | 
| 1243 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1780 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1244 1781 | 
             
                #         },
         | 
| 1245 1782 | 
             
                #       ],
         | 
| 1246 1783 | 
             
                #       generator_id: [
         | 
| 1247 1784 | 
             
                #         {
         | 
| 1248 1785 | 
             
                #           value: "NonEmptyString",
         | 
| 1249 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1786 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1250 1787 | 
             
                #         },
         | 
| 1251 1788 | 
             
                #       ],
         | 
| 1252 1789 | 
             
                #       type: [
         | 
| 1253 1790 | 
             
                #         {
         | 
| 1254 1791 | 
             
                #           value: "NonEmptyString",
         | 
| 1255 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1792 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1256 1793 | 
             
                #         },
         | 
| 1257 1794 | 
             
                #       ],
         | 
| 1258 1795 | 
             
                #       first_observed_at: [
         | 
| @@ -1312,7 +1849,7 @@ module Aws::SecurityHub | |
| 1312 1849 | 
             
                #       severity_label: [
         | 
| 1313 1850 | 
             
                #         {
         | 
| 1314 1851 | 
             
                #           value: "NonEmptyString",
         | 
| 1315 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1852 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1316 1853 | 
             
                #         },
         | 
| 1317 1854 | 
             
                #       ],
         | 
| 1318 1855 | 
             
                #       confidence: [
         | 
| @@ -1332,87 +1869,87 @@ module Aws::SecurityHub | |
| 1332 1869 | 
             
                #       title: [
         | 
| 1333 1870 | 
             
                #         {
         | 
| 1334 1871 | 
             
                #           value: "NonEmptyString",
         | 
| 1335 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1872 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1336 1873 | 
             
                #         },
         | 
| 1337 1874 | 
             
                #       ],
         | 
| 1338 1875 | 
             
                #       description: [
         | 
| 1339 1876 | 
             
                #         {
         | 
| 1340 1877 | 
             
                #           value: "NonEmptyString",
         | 
| 1341 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1878 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1342 1879 | 
             
                #         },
         | 
| 1343 1880 | 
             
                #       ],
         | 
| 1344 1881 | 
             
                #       recommendation_text: [
         | 
| 1345 1882 | 
             
                #         {
         | 
| 1346 1883 | 
             
                #           value: "NonEmptyString",
         | 
| 1347 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1884 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1348 1885 | 
             
                #         },
         | 
| 1349 1886 | 
             
                #       ],
         | 
| 1350 1887 | 
             
                #       source_url: [
         | 
| 1351 1888 | 
             
                #         {
         | 
| 1352 1889 | 
             
                #           value: "NonEmptyString",
         | 
| 1353 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1890 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1354 1891 | 
             
                #         },
         | 
| 1355 1892 | 
             
                #       ],
         | 
| 1356 1893 | 
             
                #       product_fields: [
         | 
| 1357 1894 | 
             
                #         {
         | 
| 1358 1895 | 
             
                #           key: "NonEmptyString",
         | 
| 1359 1896 | 
             
                #           value: "NonEmptyString",
         | 
| 1360 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 1897 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 1361 1898 | 
             
                #         },
         | 
| 1362 1899 | 
             
                #       ],
         | 
| 1363 1900 | 
             
                #       product_name: [
         | 
| 1364 1901 | 
             
                #         {
         | 
| 1365 1902 | 
             
                #           value: "NonEmptyString",
         | 
| 1366 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1903 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1367 1904 | 
             
                #         },
         | 
| 1368 1905 | 
             
                #       ],
         | 
| 1369 1906 | 
             
                #       company_name: [
         | 
| 1370 1907 | 
             
                #         {
         | 
| 1371 1908 | 
             
                #           value: "NonEmptyString",
         | 
| 1372 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1909 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1373 1910 | 
             
                #         },
         | 
| 1374 1911 | 
             
                #       ],
         | 
| 1375 1912 | 
             
                #       user_defined_fields: [
         | 
| 1376 1913 | 
             
                #         {
         | 
| 1377 1914 | 
             
                #           key: "NonEmptyString",
         | 
| 1378 1915 | 
             
                #           value: "NonEmptyString",
         | 
| 1379 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 1916 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 1380 1917 | 
             
                #         },
         | 
| 1381 1918 | 
             
                #       ],
         | 
| 1382 1919 | 
             
                #       malware_name: [
         | 
| 1383 1920 | 
             
                #         {
         | 
| 1384 1921 | 
             
                #           value: "NonEmptyString",
         | 
| 1385 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1922 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1386 1923 | 
             
                #         },
         | 
| 1387 1924 | 
             
                #       ],
         | 
| 1388 1925 | 
             
                #       malware_type: [
         | 
| 1389 1926 | 
             
                #         {
         | 
| 1390 1927 | 
             
                #           value: "NonEmptyString",
         | 
| 1391 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1928 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1392 1929 | 
             
                #         },
         | 
| 1393 1930 | 
             
                #       ],
         | 
| 1394 1931 | 
             
                #       malware_path: [
         | 
| 1395 1932 | 
             
                #         {
         | 
| 1396 1933 | 
             
                #           value: "NonEmptyString",
         | 
| 1397 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1934 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1398 1935 | 
             
                #         },
         | 
| 1399 1936 | 
             
                #       ],
         | 
| 1400 1937 | 
             
                #       malware_state: [
         | 
| 1401 1938 | 
             
                #         {
         | 
| 1402 1939 | 
             
                #           value: "NonEmptyString",
         | 
| 1403 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1940 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1404 1941 | 
             
                #         },
         | 
| 1405 1942 | 
             
                #       ],
         | 
| 1406 1943 | 
             
                #       network_direction: [
         | 
| 1407 1944 | 
             
                #         {
         | 
| 1408 1945 | 
             
                #           value: "NonEmptyString",
         | 
| 1409 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1946 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1410 1947 | 
             
                #         },
         | 
| 1411 1948 | 
             
                #       ],
         | 
| 1412 1949 | 
             
                #       network_protocol: [
         | 
| 1413 1950 | 
             
                #         {
         | 
| 1414 1951 | 
             
                #           value: "NonEmptyString",
         | 
| 1415 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1952 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1416 1953 | 
             
                #         },
         | 
| 1417 1954 | 
             
                #       ],
         | 
| 1418 1955 | 
             
                #       network_source_ip_v4: [
         | 
| @@ -1435,13 +1972,13 @@ module Aws::SecurityHub | |
| 1435 1972 | 
             
                #       network_source_domain: [
         | 
| 1436 1973 | 
             
                #         {
         | 
| 1437 1974 | 
             
                #           value: "NonEmptyString",
         | 
| 1438 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1975 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1439 1976 | 
             
                #         },
         | 
| 1440 1977 | 
             
                #       ],
         | 
| 1441 1978 | 
             
                #       network_source_mac: [
         | 
| 1442 1979 | 
             
                #         {
         | 
| 1443 1980 | 
             
                #           value: "NonEmptyString",
         | 
| 1444 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 1981 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1445 1982 | 
             
                #         },
         | 
| 1446 1983 | 
             
                #       ],
         | 
| 1447 1984 | 
             
                #       network_destination_ip_v4: [
         | 
| @@ -1464,19 +2001,19 @@ module Aws::SecurityHub | |
| 1464 2001 | 
             
                #       network_destination_domain: [
         | 
| 1465 2002 | 
             
                #         {
         | 
| 1466 2003 | 
             
                #           value: "NonEmptyString",
         | 
| 1467 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2004 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1468 2005 | 
             
                #         },
         | 
| 1469 2006 | 
             
                #       ],
         | 
| 1470 2007 | 
             
                #       process_name: [
         | 
| 1471 2008 | 
             
                #         {
         | 
| 1472 2009 | 
             
                #           value: "NonEmptyString",
         | 
| 1473 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2010 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1474 2011 | 
             
                #         },
         | 
| 1475 2012 | 
             
                #       ],
         | 
| 1476 2013 | 
             
                #       process_path: [
         | 
| 1477 2014 | 
             
                #         {
         | 
| 1478 2015 | 
             
                #           value: "NonEmptyString",
         | 
| 1479 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2016 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1480 2017 | 
             
                #         },
         | 
| 1481 2018 | 
             
                #       ],
         | 
| 1482 2019 | 
             
                #       process_pid: [
         | 
| @@ -1516,19 +2053,19 @@ module Aws::SecurityHub | |
| 1516 2053 | 
             
                #       threat_intel_indicator_type: [
         | 
| 1517 2054 | 
             
                #         {
         | 
| 1518 2055 | 
             
                #           value: "NonEmptyString",
         | 
| 1519 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2056 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1520 2057 | 
             
                #         },
         | 
| 1521 2058 | 
             
                #       ],
         | 
| 1522 2059 | 
             
                #       threat_intel_indicator_value: [
         | 
| 1523 2060 | 
             
                #         {
         | 
| 1524 2061 | 
             
                #           value: "NonEmptyString",
         | 
| 1525 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2062 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1526 2063 | 
             
                #         },
         | 
| 1527 2064 | 
             
                #       ],
         | 
| 1528 2065 | 
             
                #       threat_intel_indicator_category: [
         | 
| 1529 2066 | 
             
                #         {
         | 
| 1530 2067 | 
             
                #           value: "NonEmptyString",
         | 
| 1531 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2068 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1532 2069 | 
             
                #         },
         | 
| 1533 2070 | 
             
                #       ],
         | 
| 1534 2071 | 
             
                #       threat_intel_indicator_last_observed_at: [
         | 
| @@ -1544,56 +2081,56 @@ module Aws::SecurityHub | |
| 1544 2081 | 
             
                #       threat_intel_indicator_source: [
         | 
| 1545 2082 | 
             
                #         {
         | 
| 1546 2083 | 
             
                #           value: "NonEmptyString",
         | 
| 1547 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2084 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1548 2085 | 
             
                #         },
         | 
| 1549 2086 | 
             
                #       ],
         | 
| 1550 2087 | 
             
                #       threat_intel_indicator_source_url: [
         | 
| 1551 2088 | 
             
                #         {
         | 
| 1552 2089 | 
             
                #           value: "NonEmptyString",
         | 
| 1553 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2090 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1554 2091 | 
             
                #         },
         | 
| 1555 2092 | 
             
                #       ],
         | 
| 1556 2093 | 
             
                #       resource_type: [
         | 
| 1557 2094 | 
             
                #         {
         | 
| 1558 2095 | 
             
                #           value: "NonEmptyString",
         | 
| 1559 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2096 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1560 2097 | 
             
                #         },
         | 
| 1561 2098 | 
             
                #       ],
         | 
| 1562 2099 | 
             
                #       resource_id: [
         | 
| 1563 2100 | 
             
                #         {
         | 
| 1564 2101 | 
             
                #           value: "NonEmptyString",
         | 
| 1565 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2102 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1566 2103 | 
             
                #         },
         | 
| 1567 2104 | 
             
                #       ],
         | 
| 1568 2105 | 
             
                #       resource_partition: [
         | 
| 1569 2106 | 
             
                #         {
         | 
| 1570 2107 | 
             
                #           value: "NonEmptyString",
         | 
| 1571 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2108 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1572 2109 | 
             
                #         },
         | 
| 1573 2110 | 
             
                #       ],
         | 
| 1574 2111 | 
             
                #       resource_region: [
         | 
| 1575 2112 | 
             
                #         {
         | 
| 1576 2113 | 
             
                #           value: "NonEmptyString",
         | 
| 1577 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2114 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1578 2115 | 
             
                #         },
         | 
| 1579 2116 | 
             
                #       ],
         | 
| 1580 2117 | 
             
                #       resource_tags: [
         | 
| 1581 2118 | 
             
                #         {
         | 
| 1582 2119 | 
             
                #           key: "NonEmptyString",
         | 
| 1583 2120 | 
             
                #           value: "NonEmptyString",
         | 
| 1584 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 2121 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 1585 2122 | 
             
                #         },
         | 
| 1586 2123 | 
             
                #       ],
         | 
| 1587 2124 | 
             
                #       resource_aws_ec2_instance_type: [
         | 
| 1588 2125 | 
             
                #         {
         | 
| 1589 2126 | 
             
                #           value: "NonEmptyString",
         | 
| 1590 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2127 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1591 2128 | 
             
                #         },
         | 
| 1592 2129 | 
             
                #       ],
         | 
| 1593 2130 | 
             
                #       resource_aws_ec2_instance_image_id: [
         | 
| 1594 2131 | 
             
                #         {
         | 
| 1595 2132 | 
             
                #           value: "NonEmptyString",
         | 
| 1596 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2133 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1597 2134 | 
             
                #         },
         | 
| 1598 2135 | 
             
                #       ],
         | 
| 1599 2136 | 
             
                #       resource_aws_ec2_instance_ip_v4_addresses: [
         | 
| @@ -1609,25 +2146,25 @@ module Aws::SecurityHub | |
| 1609 2146 | 
             
                #       resource_aws_ec2_instance_key_name: [
         | 
| 1610 2147 | 
             
                #         {
         | 
| 1611 2148 | 
             
                #           value: "NonEmptyString",
         | 
| 1612 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2149 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1613 2150 | 
             
                #         },
         | 
| 1614 2151 | 
             
                #       ],
         | 
| 1615 2152 | 
             
                #       resource_aws_ec2_instance_iam_instance_profile_arn: [
         | 
| 1616 2153 | 
             
                #         {
         | 
| 1617 2154 | 
             
                #           value: "NonEmptyString",
         | 
| 1618 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2155 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1619 2156 | 
             
                #         },
         | 
| 1620 2157 | 
             
                #       ],
         | 
| 1621 2158 | 
             
                #       resource_aws_ec2_instance_vpc_id: [
         | 
| 1622 2159 | 
             
                #         {
         | 
| 1623 2160 | 
             
                #           value: "NonEmptyString",
         | 
| 1624 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2161 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1625 2162 | 
             
                #         },
         | 
| 1626 2163 | 
             
                #       ],
         | 
| 1627 2164 | 
             
                #       resource_aws_ec2_instance_subnet_id: [
         | 
| 1628 2165 | 
             
                #         {
         | 
| 1629 2166 | 
             
                #           value: "NonEmptyString",
         | 
| 1630 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2167 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1631 2168 | 
             
                #         },
         | 
| 1632 2169 | 
             
                #       ],
         | 
| 1633 2170 | 
             
                #       resource_aws_ec2_instance_launched_at: [
         | 
| @@ -1643,25 +2180,25 @@ module Aws::SecurityHub | |
| 1643 2180 | 
             
                #       resource_aws_s3_bucket_owner_id: [
         | 
| 1644 2181 | 
             
                #         {
         | 
| 1645 2182 | 
             
                #           value: "NonEmptyString",
         | 
| 1646 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2183 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1647 2184 | 
             
                #         },
         | 
| 1648 2185 | 
             
                #       ],
         | 
| 1649 2186 | 
             
                #       resource_aws_s3_bucket_owner_name: [
         | 
| 1650 2187 | 
             
                #         {
         | 
| 1651 2188 | 
             
                #           value: "NonEmptyString",
         | 
| 1652 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2189 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1653 2190 | 
             
                #         },
         | 
| 1654 2191 | 
             
                #       ],
         | 
| 1655 2192 | 
             
                #       resource_aws_iam_access_key_user_name: [
         | 
| 1656 2193 | 
             
                #         {
         | 
| 1657 2194 | 
             
                #           value: "NonEmptyString",
         | 
| 1658 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2195 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1659 2196 | 
             
                #         },
         | 
| 1660 2197 | 
             
                #       ],
         | 
| 1661 2198 | 
             
                #       resource_aws_iam_access_key_status: [
         | 
| 1662 2199 | 
             
                #         {
         | 
| 1663 2200 | 
             
                #           value: "NonEmptyString",
         | 
| 1664 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2201 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1665 2202 | 
             
                #         },
         | 
| 1666 2203 | 
             
                #       ],
         | 
| 1667 2204 | 
             
                #       resource_aws_iam_access_key_created_at: [
         | 
| @@ -1677,19 +2214,19 @@ module Aws::SecurityHub | |
| 1677 2214 | 
             
                #       resource_container_name: [
         | 
| 1678 2215 | 
             
                #         {
         | 
| 1679 2216 | 
             
                #           value: "NonEmptyString",
         | 
| 1680 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2217 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1681 2218 | 
             
                #         },
         | 
| 1682 2219 | 
             
                #       ],
         | 
| 1683 2220 | 
             
                #       resource_container_image_id: [
         | 
| 1684 2221 | 
             
                #         {
         | 
| 1685 2222 | 
             
                #           value: "NonEmptyString",
         | 
| 1686 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2223 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1687 2224 | 
             
                #         },
         | 
| 1688 2225 | 
             
                #       ],
         | 
| 1689 2226 | 
             
                #       resource_container_image_name: [
         | 
| 1690 2227 | 
             
                #         {
         | 
| 1691 2228 | 
             
                #           value: "NonEmptyString",
         | 
| 1692 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2229 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1693 2230 | 
             
                #         },
         | 
| 1694 2231 | 
             
                #       ],
         | 
| 1695 2232 | 
             
                #       resource_container_launched_at: [
         | 
| @@ -1706,55 +2243,55 @@ module Aws::SecurityHub | |
| 1706 2243 | 
             
                #         {
         | 
| 1707 2244 | 
             
                #           key: "NonEmptyString",
         | 
| 1708 2245 | 
             
                #           value: "NonEmptyString",
         | 
| 1709 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 2246 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 1710 2247 | 
             
                #         },
         | 
| 1711 2248 | 
             
                #       ],
         | 
| 1712 2249 | 
             
                #       compliance_status: [
         | 
| 1713 2250 | 
             
                #         {
         | 
| 1714 2251 | 
             
                #           value: "NonEmptyString",
         | 
| 1715 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2252 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1716 2253 | 
             
                #         },
         | 
| 1717 2254 | 
             
                #       ],
         | 
| 1718 2255 | 
             
                #       verification_state: [
         | 
| 1719 2256 | 
             
                #         {
         | 
| 1720 2257 | 
             
                #           value: "NonEmptyString",
         | 
| 1721 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2258 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1722 2259 | 
             
                #         },
         | 
| 1723 2260 | 
             
                #       ],
         | 
| 1724 2261 | 
             
                #       workflow_state: [
         | 
| 1725 2262 | 
             
                #         {
         | 
| 1726 2263 | 
             
                #           value: "NonEmptyString",
         | 
| 1727 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2264 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1728 2265 | 
             
                #         },
         | 
| 1729 2266 | 
             
                #       ],
         | 
| 1730 2267 | 
             
                #       workflow_status: [
         | 
| 1731 2268 | 
             
                #         {
         | 
| 1732 2269 | 
             
                #           value: "NonEmptyString",
         | 
| 1733 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2270 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1734 2271 | 
             
                #         },
         | 
| 1735 2272 | 
             
                #       ],
         | 
| 1736 2273 | 
             
                #       record_state: [
         | 
| 1737 2274 | 
             
                #         {
         | 
| 1738 2275 | 
             
                #           value: "NonEmptyString",
         | 
| 1739 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2276 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1740 2277 | 
             
                #         },
         | 
| 1741 2278 | 
             
                #       ],
         | 
| 1742 2279 | 
             
                #       related_findings_product_arn: [
         | 
| 1743 2280 | 
             
                #         {
         | 
| 1744 2281 | 
             
                #           value: "NonEmptyString",
         | 
| 1745 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2282 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1746 2283 | 
             
                #         },
         | 
| 1747 2284 | 
             
                #       ],
         | 
| 1748 2285 | 
             
                #       related_findings_id: [
         | 
| 1749 2286 | 
             
                #         {
         | 
| 1750 2287 | 
             
                #           value: "NonEmptyString",
         | 
| 1751 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2288 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1752 2289 | 
             
                #         },
         | 
| 1753 2290 | 
             
                #       ],
         | 
| 1754 2291 | 
             
                #       note_text: [
         | 
| 1755 2292 | 
             
                #         {
         | 
| 1756 2293 | 
             
                #           value: "NonEmptyString",
         | 
| 1757 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2294 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1758 2295 | 
             
                #         },
         | 
| 1759 2296 | 
             
                #       ],
         | 
| 1760 2297 | 
             
                #       note_updated_at: [
         | 
| @@ -1770,7 +2307,7 @@ module Aws::SecurityHub | |
| 1770 2307 | 
             
                #       note_updated_by: [
         | 
| 1771 2308 | 
             
                #         {
         | 
| 1772 2309 | 
             
                #           value: "NonEmptyString",
         | 
| 1773 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 2310 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 1774 2311 | 
             
                #         },
         | 
| 1775 2312 | 
             
                #       ],
         | 
| 1776 2313 | 
             
                #       keyword: [
         | 
| @@ -2064,6 +2601,7 @@ module Aws::SecurityHub | |
| 2064 2601 | 
             
                #
         | 
| 2065 2602 | 
             
                #   * {Types::DescribeHubResponse#hub_arn #hub_arn} => String
         | 
| 2066 2603 | 
             
                #   * {Types::DescribeHubResponse#subscribed_at #subscribed_at} => String
         | 
| 2604 | 
            +
                #   * {Types::DescribeHubResponse#auto_enable_controls #auto_enable_controls} => Boolean
         | 
| 2067 2605 | 
             
                #
         | 
| 2068 2606 | 
             
                # @example Request syntax with placeholder values
         | 
| 2069 2607 | 
             
                #
         | 
| @@ -2075,6 +2613,7 @@ module Aws::SecurityHub | |
| 2075 2613 | 
             
                #
         | 
| 2076 2614 | 
             
                #   resp.hub_arn #=> String
         | 
| 2077 2615 | 
             
                #   resp.subscribed_at #=> String
         | 
| 2616 | 
            +
                #   resp.auto_enable_controls #=> Boolean
         | 
| 2078 2617 | 
             
                #
         | 
| 2079 2618 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeHub AWS API Documentation
         | 
| 2080 2619 | 
             
                #
         | 
| @@ -2491,6 +3030,10 @@ module Aws::SecurityHub | |
| 2491 3030 | 
             
                #   The finding attributes used to define a condition to filter the
         | 
| 2492 3031 | 
             
                #   returned findings.
         | 
| 2493 3032 | 
             
                #
         | 
| 3033 | 
            +
                #   Note that in the available filter fields, `WorkflowState` is
         | 
| 3034 | 
            +
                #   deprecated. To search for a finding based on its workflow status, use
         | 
| 3035 | 
            +
                #   `WorkflowStatus`.
         | 
| 3036 | 
            +
                #
         | 
| 2494 3037 | 
             
                # @option params [Array<Types::SortCriterion>] :sort_criteria
         | 
| 2495 3038 | 
             
                #   The finding attributes used to sort the list of returned findings.
         | 
| 2496 3039 | 
             
                #
         | 
| @@ -2519,31 +3062,31 @@ module Aws::SecurityHub | |
| 2519 3062 | 
             
                #       product_arn: [
         | 
| 2520 3063 | 
             
                #         {
         | 
| 2521 3064 | 
             
                #           value: "NonEmptyString",
         | 
| 2522 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3065 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2523 3066 | 
             
                #         },
         | 
| 2524 3067 | 
             
                #       ],
         | 
| 2525 3068 | 
             
                #       aws_account_id: [
         | 
| 2526 3069 | 
             
                #         {
         | 
| 2527 3070 | 
             
                #           value: "NonEmptyString",
         | 
| 2528 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3071 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2529 3072 | 
             
                #         },
         | 
| 2530 3073 | 
             
                #       ],
         | 
| 2531 3074 | 
             
                #       id: [
         | 
| 2532 3075 | 
             
                #         {
         | 
| 2533 3076 | 
             
                #           value: "NonEmptyString",
         | 
| 2534 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3077 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2535 3078 | 
             
                #         },
         | 
| 2536 3079 | 
             
                #       ],
         | 
| 2537 3080 | 
             
                #       generator_id: [
         | 
| 2538 3081 | 
             
                #         {
         | 
| 2539 3082 | 
             
                #           value: "NonEmptyString",
         | 
| 2540 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3083 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2541 3084 | 
             
                #         },
         | 
| 2542 3085 | 
             
                #       ],
         | 
| 2543 3086 | 
             
                #       type: [
         | 
| 2544 3087 | 
             
                #         {
         | 
| 2545 3088 | 
             
                #           value: "NonEmptyString",
         | 
| 2546 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3089 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2547 3090 | 
             
                #         },
         | 
| 2548 3091 | 
             
                #       ],
         | 
| 2549 3092 | 
             
                #       first_observed_at: [
         | 
| @@ -2603,7 +3146,7 @@ module Aws::SecurityHub | |
| 2603 3146 | 
             
                #       severity_label: [
         | 
| 2604 3147 | 
             
                #         {
         | 
| 2605 3148 | 
             
                #           value: "NonEmptyString",
         | 
| 2606 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3149 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2607 3150 | 
             
                #         },
         | 
| 2608 3151 | 
             
                #       ],
         | 
| 2609 3152 | 
             
                #       confidence: [
         | 
| @@ -2623,87 +3166,87 @@ module Aws::SecurityHub | |
| 2623 3166 | 
             
                #       title: [
         | 
| 2624 3167 | 
             
                #         {
         | 
| 2625 3168 | 
             
                #           value: "NonEmptyString",
         | 
| 2626 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3169 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2627 3170 | 
             
                #         },
         | 
| 2628 3171 | 
             
                #       ],
         | 
| 2629 3172 | 
             
                #       description: [
         | 
| 2630 3173 | 
             
                #         {
         | 
| 2631 3174 | 
             
                #           value: "NonEmptyString",
         | 
| 2632 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3175 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2633 3176 | 
             
                #         },
         | 
| 2634 3177 | 
             
                #       ],
         | 
| 2635 3178 | 
             
                #       recommendation_text: [
         | 
| 2636 3179 | 
             
                #         {
         | 
| 2637 3180 | 
             
                #           value: "NonEmptyString",
         | 
| 2638 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3181 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2639 3182 | 
             
                #         },
         | 
| 2640 3183 | 
             
                #       ],
         | 
| 2641 3184 | 
             
                #       source_url: [
         | 
| 2642 3185 | 
             
                #         {
         | 
| 2643 3186 | 
             
                #           value: "NonEmptyString",
         | 
| 2644 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3187 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2645 3188 | 
             
                #         },
         | 
| 2646 3189 | 
             
                #       ],
         | 
| 2647 3190 | 
             
                #       product_fields: [
         | 
| 2648 3191 | 
             
                #         {
         | 
| 2649 3192 | 
             
                #           key: "NonEmptyString",
         | 
| 2650 3193 | 
             
                #           value: "NonEmptyString",
         | 
| 2651 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 3194 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 2652 3195 | 
             
                #         },
         | 
| 2653 3196 | 
             
                #       ],
         | 
| 2654 3197 | 
             
                #       product_name: [
         | 
| 2655 3198 | 
             
                #         {
         | 
| 2656 3199 | 
             
                #           value: "NonEmptyString",
         | 
| 2657 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3200 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2658 3201 | 
             
                #         },
         | 
| 2659 3202 | 
             
                #       ],
         | 
| 2660 3203 | 
             
                #       company_name: [
         | 
| 2661 3204 | 
             
                #         {
         | 
| 2662 3205 | 
             
                #           value: "NonEmptyString",
         | 
| 2663 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3206 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2664 3207 | 
             
                #         },
         | 
| 2665 3208 | 
             
                #       ],
         | 
| 2666 3209 | 
             
                #       user_defined_fields: [
         | 
| 2667 3210 | 
             
                #         {
         | 
| 2668 3211 | 
             
                #           key: "NonEmptyString",
         | 
| 2669 3212 | 
             
                #           value: "NonEmptyString",
         | 
| 2670 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 3213 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 2671 3214 | 
             
                #         },
         | 
| 2672 3215 | 
             
                #       ],
         | 
| 2673 3216 | 
             
                #       malware_name: [
         | 
| 2674 3217 | 
             
                #         {
         | 
| 2675 3218 | 
             
                #           value: "NonEmptyString",
         | 
| 2676 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3219 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2677 3220 | 
             
                #         },
         | 
| 2678 3221 | 
             
                #       ],
         | 
| 2679 3222 | 
             
                #       malware_type: [
         | 
| 2680 3223 | 
             
                #         {
         | 
| 2681 3224 | 
             
                #           value: "NonEmptyString",
         | 
| 2682 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3225 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2683 3226 | 
             
                #         },
         | 
| 2684 3227 | 
             
                #       ],
         | 
| 2685 3228 | 
             
                #       malware_path: [
         | 
| 2686 3229 | 
             
                #         {
         | 
| 2687 3230 | 
             
                #           value: "NonEmptyString",
         | 
| 2688 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3231 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2689 3232 | 
             
                #         },
         | 
| 2690 3233 | 
             
                #       ],
         | 
| 2691 3234 | 
             
                #       malware_state: [
         | 
| 2692 3235 | 
             
                #         {
         | 
| 2693 3236 | 
             
                #           value: "NonEmptyString",
         | 
| 2694 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3237 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2695 3238 | 
             
                #         },
         | 
| 2696 3239 | 
             
                #       ],
         | 
| 2697 3240 | 
             
                #       network_direction: [
         | 
| 2698 3241 | 
             
                #         {
         | 
| 2699 3242 | 
             
                #           value: "NonEmptyString",
         | 
| 2700 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3243 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2701 3244 | 
             
                #         },
         | 
| 2702 3245 | 
             
                #       ],
         | 
| 2703 3246 | 
             
                #       network_protocol: [
         | 
| 2704 3247 | 
             
                #         {
         | 
| 2705 3248 | 
             
                #           value: "NonEmptyString",
         | 
| 2706 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3249 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2707 3250 | 
             
                #         },
         | 
| 2708 3251 | 
             
                #       ],
         | 
| 2709 3252 | 
             
                #       network_source_ip_v4: [
         | 
| @@ -2726,13 +3269,13 @@ module Aws::SecurityHub | |
| 2726 3269 | 
             
                #       network_source_domain: [
         | 
| 2727 3270 | 
             
                #         {
         | 
| 2728 3271 | 
             
                #           value: "NonEmptyString",
         | 
| 2729 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3272 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2730 3273 | 
             
                #         },
         | 
| 2731 3274 | 
             
                #       ],
         | 
| 2732 3275 | 
             
                #       network_source_mac: [
         | 
| 2733 3276 | 
             
                #         {
         | 
| 2734 3277 | 
             
                #           value: "NonEmptyString",
         | 
| 2735 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3278 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2736 3279 | 
             
                #         },
         | 
| 2737 3280 | 
             
                #       ],
         | 
| 2738 3281 | 
             
                #       network_destination_ip_v4: [
         | 
| @@ -2755,19 +3298,19 @@ module Aws::SecurityHub | |
| 2755 3298 | 
             
                #       network_destination_domain: [
         | 
| 2756 3299 | 
             
                #         {
         | 
| 2757 3300 | 
             
                #           value: "NonEmptyString",
         | 
| 2758 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3301 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2759 3302 | 
             
                #         },
         | 
| 2760 3303 | 
             
                #       ],
         | 
| 2761 3304 | 
             
                #       process_name: [
         | 
| 2762 3305 | 
             
                #         {
         | 
| 2763 3306 | 
             
                #           value: "NonEmptyString",
         | 
| 2764 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3307 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2765 3308 | 
             
                #         },
         | 
| 2766 3309 | 
             
                #       ],
         | 
| 2767 3310 | 
             
                #       process_path: [
         | 
| 2768 3311 | 
             
                #         {
         | 
| 2769 3312 | 
             
                #           value: "NonEmptyString",
         | 
| 2770 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3313 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2771 3314 | 
             
                #         },
         | 
| 2772 3315 | 
             
                #       ],
         | 
| 2773 3316 | 
             
                #       process_pid: [
         | 
| @@ -2807,19 +3350,19 @@ module Aws::SecurityHub | |
| 2807 3350 | 
             
                #       threat_intel_indicator_type: [
         | 
| 2808 3351 | 
             
                #         {
         | 
| 2809 3352 | 
             
                #           value: "NonEmptyString",
         | 
| 2810 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3353 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2811 3354 | 
             
                #         },
         | 
| 2812 3355 | 
             
                #       ],
         | 
| 2813 3356 | 
             
                #       threat_intel_indicator_value: [
         | 
| 2814 3357 | 
             
                #         {
         | 
| 2815 3358 | 
             
                #           value: "NonEmptyString",
         | 
| 2816 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3359 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2817 3360 | 
             
                #         },
         | 
| 2818 3361 | 
             
                #       ],
         | 
| 2819 3362 | 
             
                #       threat_intel_indicator_category: [
         | 
| 2820 3363 | 
             
                #         {
         | 
| 2821 3364 | 
             
                #           value: "NonEmptyString",
         | 
| 2822 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3365 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2823 3366 | 
             
                #         },
         | 
| 2824 3367 | 
             
                #       ],
         | 
| 2825 3368 | 
             
                #       threat_intel_indicator_last_observed_at: [
         | 
| @@ -2835,56 +3378,56 @@ module Aws::SecurityHub | |
| 2835 3378 | 
             
                #       threat_intel_indicator_source: [
         | 
| 2836 3379 | 
             
                #         {
         | 
| 2837 3380 | 
             
                #           value: "NonEmptyString",
         | 
| 2838 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3381 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2839 3382 | 
             
                #         },
         | 
| 2840 3383 | 
             
                #       ],
         | 
| 2841 3384 | 
             
                #       threat_intel_indicator_source_url: [
         | 
| 2842 3385 | 
             
                #         {
         | 
| 2843 3386 | 
             
                #           value: "NonEmptyString",
         | 
| 2844 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3387 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2845 3388 | 
             
                #         },
         | 
| 2846 3389 | 
             
                #       ],
         | 
| 2847 3390 | 
             
                #       resource_type: [
         | 
| 2848 3391 | 
             
                #         {
         | 
| 2849 3392 | 
             
                #           value: "NonEmptyString",
         | 
| 2850 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3393 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2851 3394 | 
             
                #         },
         | 
| 2852 3395 | 
             
                #       ],
         | 
| 2853 3396 | 
             
                #       resource_id: [
         | 
| 2854 3397 | 
             
                #         {
         | 
| 2855 3398 | 
             
                #           value: "NonEmptyString",
         | 
| 2856 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3399 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2857 3400 | 
             
                #         },
         | 
| 2858 3401 | 
             
                #       ],
         | 
| 2859 3402 | 
             
                #       resource_partition: [
         | 
| 2860 3403 | 
             
                #         {
         | 
| 2861 3404 | 
             
                #           value: "NonEmptyString",
         | 
| 2862 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3405 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2863 3406 | 
             
                #         },
         | 
| 2864 3407 | 
             
                #       ],
         | 
| 2865 3408 | 
             
                #       resource_region: [
         | 
| 2866 3409 | 
             
                #         {
         | 
| 2867 3410 | 
             
                #           value: "NonEmptyString",
         | 
| 2868 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3411 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2869 3412 | 
             
                #         },
         | 
| 2870 3413 | 
             
                #       ],
         | 
| 2871 3414 | 
             
                #       resource_tags: [
         | 
| 2872 3415 | 
             
                #         {
         | 
| 2873 3416 | 
             
                #           key: "NonEmptyString",
         | 
| 2874 3417 | 
             
                #           value: "NonEmptyString",
         | 
| 2875 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 3418 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 2876 3419 | 
             
                #         },
         | 
| 2877 3420 | 
             
                #       ],
         | 
| 2878 3421 | 
             
                #       resource_aws_ec2_instance_type: [
         | 
| 2879 3422 | 
             
                #         {
         | 
| 2880 3423 | 
             
                #           value: "NonEmptyString",
         | 
| 2881 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3424 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2882 3425 | 
             
                #         },
         | 
| 2883 3426 | 
             
                #       ],
         | 
| 2884 3427 | 
             
                #       resource_aws_ec2_instance_image_id: [
         | 
| 2885 3428 | 
             
                #         {
         | 
| 2886 3429 | 
             
                #           value: "NonEmptyString",
         | 
| 2887 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3430 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2888 3431 | 
             
                #         },
         | 
| 2889 3432 | 
             
                #       ],
         | 
| 2890 3433 | 
             
                #       resource_aws_ec2_instance_ip_v4_addresses: [
         | 
| @@ -2900,25 +3443,25 @@ module Aws::SecurityHub | |
| 2900 3443 | 
             
                #       resource_aws_ec2_instance_key_name: [
         | 
| 2901 3444 | 
             
                #         {
         | 
| 2902 3445 | 
             
                #           value: "NonEmptyString",
         | 
| 2903 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3446 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2904 3447 | 
             
                #         },
         | 
| 2905 3448 | 
             
                #       ],
         | 
| 2906 3449 | 
             
                #       resource_aws_ec2_instance_iam_instance_profile_arn: [
         | 
| 2907 3450 | 
             
                #         {
         | 
| 2908 3451 | 
             
                #           value: "NonEmptyString",
         | 
| 2909 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3452 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2910 3453 | 
             
                #         },
         | 
| 2911 3454 | 
             
                #       ],
         | 
| 2912 3455 | 
             
                #       resource_aws_ec2_instance_vpc_id: [
         | 
| 2913 3456 | 
             
                #         {
         | 
| 2914 3457 | 
             
                #           value: "NonEmptyString",
         | 
| 2915 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3458 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2916 3459 | 
             
                #         },
         | 
| 2917 3460 | 
             
                #       ],
         | 
| 2918 3461 | 
             
                #       resource_aws_ec2_instance_subnet_id: [
         | 
| 2919 3462 | 
             
                #         {
         | 
| 2920 3463 | 
             
                #           value: "NonEmptyString",
         | 
| 2921 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3464 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2922 3465 | 
             
                #         },
         | 
| 2923 3466 | 
             
                #       ],
         | 
| 2924 3467 | 
             
                #       resource_aws_ec2_instance_launched_at: [
         | 
| @@ -2934,25 +3477,25 @@ module Aws::SecurityHub | |
| 2934 3477 | 
             
                #       resource_aws_s3_bucket_owner_id: [
         | 
| 2935 3478 | 
             
                #         {
         | 
| 2936 3479 | 
             
                #           value: "NonEmptyString",
         | 
| 2937 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3480 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2938 3481 | 
             
                #         },
         | 
| 2939 3482 | 
             
                #       ],
         | 
| 2940 3483 | 
             
                #       resource_aws_s3_bucket_owner_name: [
         | 
| 2941 3484 | 
             
                #         {
         | 
| 2942 3485 | 
             
                #           value: "NonEmptyString",
         | 
| 2943 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3486 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2944 3487 | 
             
                #         },
         | 
| 2945 3488 | 
             
                #       ],
         | 
| 2946 3489 | 
             
                #       resource_aws_iam_access_key_user_name: [
         | 
| 2947 3490 | 
             
                #         {
         | 
| 2948 3491 | 
             
                #           value: "NonEmptyString",
         | 
| 2949 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3492 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2950 3493 | 
             
                #         },
         | 
| 2951 3494 | 
             
                #       ],
         | 
| 2952 3495 | 
             
                #       resource_aws_iam_access_key_status: [
         | 
| 2953 3496 | 
             
                #         {
         | 
| 2954 3497 | 
             
                #           value: "NonEmptyString",
         | 
| 2955 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3498 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2956 3499 | 
             
                #         },
         | 
| 2957 3500 | 
             
                #       ],
         | 
| 2958 3501 | 
             
                #       resource_aws_iam_access_key_created_at: [
         | 
| @@ -2968,19 +3511,19 @@ module Aws::SecurityHub | |
| 2968 3511 | 
             
                #       resource_container_name: [
         | 
| 2969 3512 | 
             
                #         {
         | 
| 2970 3513 | 
             
                #           value: "NonEmptyString",
         | 
| 2971 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3514 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2972 3515 | 
             
                #         },
         | 
| 2973 3516 | 
             
                #       ],
         | 
| 2974 3517 | 
             
                #       resource_container_image_id: [
         | 
| 2975 3518 | 
             
                #         {
         | 
| 2976 3519 | 
             
                #           value: "NonEmptyString",
         | 
| 2977 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3520 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2978 3521 | 
             
                #         },
         | 
| 2979 3522 | 
             
                #       ],
         | 
| 2980 3523 | 
             
                #       resource_container_image_name: [
         | 
| 2981 3524 | 
             
                #         {
         | 
| 2982 3525 | 
             
                #           value: "NonEmptyString",
         | 
| 2983 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3526 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 2984 3527 | 
             
                #         },
         | 
| 2985 3528 | 
             
                #       ],
         | 
| 2986 3529 | 
             
                #       resource_container_launched_at: [
         | 
| @@ -2997,55 +3540,55 @@ module Aws::SecurityHub | |
| 2997 3540 | 
             
                #         {
         | 
| 2998 3541 | 
             
                #           key: "NonEmptyString",
         | 
| 2999 3542 | 
             
                #           value: "NonEmptyString",
         | 
| 3000 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 3543 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 3001 3544 | 
             
                #         },
         | 
| 3002 3545 | 
             
                #       ],
         | 
| 3003 3546 | 
             
                #       compliance_status: [
         | 
| 3004 3547 | 
             
                #         {
         | 
| 3005 3548 | 
             
                #           value: "NonEmptyString",
         | 
| 3006 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3549 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3007 3550 | 
             
                #         },
         | 
| 3008 3551 | 
             
                #       ],
         | 
| 3009 3552 | 
             
                #       verification_state: [
         | 
| 3010 3553 | 
             
                #         {
         | 
| 3011 3554 | 
             
                #           value: "NonEmptyString",
         | 
| 3012 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3555 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3013 3556 | 
             
                #         },
         | 
| 3014 3557 | 
             
                #       ],
         | 
| 3015 3558 | 
             
                #       workflow_state: [
         | 
| 3016 3559 | 
             
                #         {
         | 
| 3017 3560 | 
             
                #           value: "NonEmptyString",
         | 
| 3018 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3561 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3019 3562 | 
             
                #         },
         | 
| 3020 3563 | 
             
                #       ],
         | 
| 3021 3564 | 
             
                #       workflow_status: [
         | 
| 3022 3565 | 
             
                #         {
         | 
| 3023 3566 | 
             
                #           value: "NonEmptyString",
         | 
| 3024 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3567 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3025 3568 | 
             
                #         },
         | 
| 3026 3569 | 
             
                #       ],
         | 
| 3027 3570 | 
             
                #       record_state: [
         | 
| 3028 3571 | 
             
                #         {
         | 
| 3029 3572 | 
             
                #           value: "NonEmptyString",
         | 
| 3030 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3573 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3031 3574 | 
             
                #         },
         | 
| 3032 3575 | 
             
                #       ],
         | 
| 3033 3576 | 
             
                #       related_findings_product_arn: [
         | 
| 3034 3577 | 
             
                #         {
         | 
| 3035 3578 | 
             
                #           value: "NonEmptyString",
         | 
| 3036 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3579 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3037 3580 | 
             
                #         },
         | 
| 3038 3581 | 
             
                #       ],
         | 
| 3039 3582 | 
             
                #       related_findings_id: [
         | 
| 3040 3583 | 
             
                #         {
         | 
| 3041 3584 | 
             
                #           value: "NonEmptyString",
         | 
| 3042 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3585 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3043 3586 | 
             
                #         },
         | 
| 3044 3587 | 
             
                #       ],
         | 
| 3045 3588 | 
             
                #       note_text: [
         | 
| 3046 3589 | 
             
                #         {
         | 
| 3047 3590 | 
             
                #           value: "NonEmptyString",
         | 
| 3048 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3591 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3049 3592 | 
             
                #         },
         | 
| 3050 3593 | 
             
                #       ],
         | 
| 3051 3594 | 
             
                #       note_updated_at: [
         | 
| @@ -3061,7 +3604,7 @@ module Aws::SecurityHub | |
| 3061 3604 | 
             
                #       note_updated_by: [
         | 
| 3062 3605 | 
             
                #         {
         | 
| 3063 3606 | 
             
                #           value: "NonEmptyString",
         | 
| 3064 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 3607 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 3065 3608 | 
             
                #         },
         | 
| 3066 3609 | 
             
                #       ],
         | 
| 3067 3610 | 
             
                #       keyword: [
         | 
| @@ -3116,6 +3659,8 @@ module Aws::SecurityHub | |
| 3116 3659 | 
             
                #   resp.findings[0].malware[0].state #=> String, one of "OBSERVED", "REMOVAL_FAILED", "REMOVED"
         | 
| 3117 3660 | 
             
                #   resp.findings[0].network.direction #=> String, one of "IN", "OUT"
         | 
| 3118 3661 | 
             
                #   resp.findings[0].network.protocol #=> String
         | 
| 3662 | 
            +
                #   resp.findings[0].network.open_port_range.begin #=> Integer
         | 
| 3663 | 
            +
                #   resp.findings[0].network.open_port_range.end #=> Integer
         | 
| 3119 3664 | 
             
                #   resp.findings[0].network.source_ip_v4 #=> String
         | 
| 3120 3665 | 
             
                #   resp.findings[0].network.source_ip_v6 #=> String
         | 
| 3121 3666 | 
             
                #   resp.findings[0].network.source_port #=> Integer
         | 
| @@ -3125,6 +3670,31 @@ module Aws::SecurityHub | |
| 3125 3670 | 
             
                #   resp.findings[0].network.destination_ip_v6 #=> String
         | 
| 3126 3671 | 
             
                #   resp.findings[0].network.destination_port #=> Integer
         | 
| 3127 3672 | 
             
                #   resp.findings[0].network.destination_domain #=> String
         | 
| 3673 | 
            +
                #   resp.findings[0].network_path #=> Array
         | 
| 3674 | 
            +
                #   resp.findings[0].network_path[0].component_id #=> String
         | 
| 3675 | 
            +
                #   resp.findings[0].network_path[0].component_type #=> String
         | 
| 3676 | 
            +
                #   resp.findings[0].network_path[0].egress.protocol #=> String
         | 
| 3677 | 
            +
                #   resp.findings[0].network_path[0].egress.destination.address #=> Array
         | 
| 3678 | 
            +
                #   resp.findings[0].network_path[0].egress.destination.address[0] #=> String
         | 
| 3679 | 
            +
                #   resp.findings[0].network_path[0].egress.destination.port_ranges #=> Array
         | 
| 3680 | 
            +
                #   resp.findings[0].network_path[0].egress.destination.port_ranges[0].begin #=> Integer
         | 
| 3681 | 
            +
                #   resp.findings[0].network_path[0].egress.destination.port_ranges[0].end #=> Integer
         | 
| 3682 | 
            +
                #   resp.findings[0].network_path[0].egress.source.address #=> Array
         | 
| 3683 | 
            +
                #   resp.findings[0].network_path[0].egress.source.address[0] #=> String
         | 
| 3684 | 
            +
                #   resp.findings[0].network_path[0].egress.source.port_ranges #=> Array
         | 
| 3685 | 
            +
                #   resp.findings[0].network_path[0].egress.source.port_ranges[0].begin #=> Integer
         | 
| 3686 | 
            +
                #   resp.findings[0].network_path[0].egress.source.port_ranges[0].end #=> Integer
         | 
| 3687 | 
            +
                #   resp.findings[0].network_path[0].ingress.protocol #=> String
         | 
| 3688 | 
            +
                #   resp.findings[0].network_path[0].ingress.destination.address #=> Array
         | 
| 3689 | 
            +
                #   resp.findings[0].network_path[0].ingress.destination.address[0] #=> String
         | 
| 3690 | 
            +
                #   resp.findings[0].network_path[0].ingress.destination.port_ranges #=> Array
         | 
| 3691 | 
            +
                #   resp.findings[0].network_path[0].ingress.destination.port_ranges[0].begin #=> Integer
         | 
| 3692 | 
            +
                #   resp.findings[0].network_path[0].ingress.destination.port_ranges[0].end #=> Integer
         | 
| 3693 | 
            +
                #   resp.findings[0].network_path[0].ingress.source.address #=> Array
         | 
| 3694 | 
            +
                #   resp.findings[0].network_path[0].ingress.source.address[0] #=> String
         | 
| 3695 | 
            +
                #   resp.findings[0].network_path[0].ingress.source.port_ranges #=> Array
         | 
| 3696 | 
            +
                #   resp.findings[0].network_path[0].ingress.source.port_ranges[0].begin #=> Integer
         | 
| 3697 | 
            +
                #   resp.findings[0].network_path[0].ingress.source.port_ranges[0].end #=> Integer
         | 
| 3128 3698 | 
             
                #   resp.findings[0].process.name #=> String
         | 
| 3129 3699 | 
             
                #   resp.findings[0].process.path #=> String
         | 
| 3130 3700 | 
             
                #   resp.findings[0].process.pid #=> Integer
         | 
| @@ -3145,6 +3715,12 @@ module Aws::SecurityHub | |
| 3145 3715 | 
             
                #   resp.findings[0].resources[0].region #=> String
         | 
| 3146 3716 | 
             
                #   resp.findings[0].resources[0].tags #=> Hash
         | 
| 3147 3717 | 
             
                #   resp.findings[0].resources[0].tags["NonEmptyString"] #=> String
         | 
| 3718 | 
            +
                #   resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_configuration_name #=> String
         | 
| 3719 | 
            +
                #   resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names #=> Array
         | 
| 3720 | 
            +
                #   resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names[0] #=> String
         | 
| 3721 | 
            +
                #   resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_type #=> String
         | 
| 3722 | 
            +
                #   resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_grace_period #=> Integer
         | 
| 3723 | 
            +
                #   resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.created_time #=> String
         | 
| 3148 3724 | 
             
                #   resp.findings[0].resources[0].details.aws_code_build_project.encryption_key #=> String
         | 
| 3149 3725 | 
             
                #   resp.findings[0].resources[0].details.aws_code_build_project.environment.certificate #=> String
         | 
| 3150 3726 | 
             
                #   resp.findings[0].resources[0].details.aws_code_build_project.environment.image_pull_credentials_type #=> String
         | 
| @@ -3236,6 +3812,37 @@ module Aws::SecurityHub | |
| 3236 3812 | 
             
                #   resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ipv_6_ranges[0].cidr_ipv_6 #=> String
         | 
| 3237 3813 | 
             
                #   resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids #=> Array
         | 
| 3238 3814 | 
             
                #   resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids[0].prefix_list_id #=> String
         | 
| 3815 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.create_time #=> String
         | 
| 3816 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.encrypted #=> Boolean
         | 
| 3817 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.size #=> Integer
         | 
| 3818 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.snapshot_id #=> String
         | 
| 3819 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.status #=> String
         | 
| 3820 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.kms_key_id #=> String
         | 
| 3821 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.attachments #=> Array
         | 
| 3822 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].attach_time #=> String
         | 
| 3823 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].delete_on_termination #=> Boolean
         | 
| 3824 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].instance_id #=> String
         | 
| 3825 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].status #=> String
         | 
| 3826 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set #=> Array
         | 
| 3827 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].association_id #=> String
         | 
| 3828 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block #=> String
         | 
| 3829 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block_state #=> String
         | 
| 3830 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set #=> Array
         | 
| 3831 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].association_id #=> String
         | 
| 3832 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
         | 
| 3833 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].cidr_block_state #=> String
         | 
| 3834 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.dhcp_options_id #=> String
         | 
| 3835 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_vpc.state #=> String
         | 
| 3836 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.instance_id #=> String
         | 
| 3837 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.public_ip #=> String
         | 
| 3838 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.allocation_id #=> String
         | 
| 3839 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.association_id #=> String
         | 
| 3840 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.domain #=> String
         | 
| 3841 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.public_ipv_4_pool #=> String
         | 
| 3842 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.network_border_group #=> String
         | 
| 3843 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_id #=> String
         | 
| 3844 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_owner_id #=> String
         | 
| 3845 | 
            +
                #   resp.findings[0].resources[0].details.aws_ec2_eip.private_ip_address #=> String
         | 
| 3239 3846 | 
             
                #   resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones #=> Array
         | 
| 3240 3847 | 
             
                #   resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].zone_name #=> String
         | 
| 3241 3848 | 
             
                #   resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].subnet_id #=> String
         | 
| @@ -3281,12 +3888,115 @@ module Aws::SecurityHub | |
| 3281 3888 | 
             
                #   resp.findings[0].resources[0].details.aws_s3_object.content_type #=> String
         | 
| 3282 3889 | 
             
                #   resp.findings[0].resources[0].details.aws_s3_object.server_side_encryption #=> String
         | 
| 3283 3890 | 
             
                #   resp.findings[0].resources[0].details.aws_s3_object.ssekms_key_id #=> String
         | 
| 3891 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_rules.automatically_after_days #=> Integer
         | 
| 3892 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_occurred_within_frequency #=> Boolean
         | 
| 3893 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.kms_key_id #=> String
         | 
| 3894 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_enabled #=> Boolean
         | 
| 3895 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_lambda_arn #=> String
         | 
| 3896 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.deleted #=> Boolean
         | 
| 3897 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.name #=> String
         | 
| 3898 | 
            +
                #   resp.findings[0].resources[0].details.aws_secrets_manager_secret.description #=> String
         | 
| 3284 3899 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_access_key.user_name #=> String
         | 
| 3285 3900 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_access_key.status #=> String, one of "Active", "Inactive"
         | 
| 3286 3901 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_access_key.created_at #=> String
         | 
| 3287 3902 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_access_key.principal_id #=> String
         | 
| 3288 3903 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_access_key.principal_type #=> String
         | 
| 3289 3904 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_access_key.principal_name #=> String
         | 
| 3905 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies #=> Array
         | 
| 3906 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_name #=> String
         | 
| 3907 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_arn #=> String
         | 
| 3908 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.create_date #=> String
         | 
| 3909 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.group_list #=> Array
         | 
| 3910 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.group_list[0] #=> String
         | 
| 3911 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.path #=> String
         | 
| 3912 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_arn #=> String
         | 
| 3913 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_type #=> String
         | 
| 3914 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.user_id #=> String
         | 
| 3915 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.user_name #=> String
         | 
| 3916 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.user_policy_list #=> Array
         | 
| 3917 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_user.user_policy_list[0].policy_name #=> String
         | 
| 3918 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.attachment_count #=> Integer
         | 
| 3919 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.create_date #=> String
         | 
| 3920 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.default_version_id #=> String
         | 
| 3921 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.description #=> String
         | 
| 3922 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.is_attachable #=> Boolean
         | 
| 3923 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.path #=> String
         | 
| 3924 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.permissions_boundary_usage_count #=> Integer
         | 
| 3925 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.policy_id #=> String
         | 
| 3926 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.policy_name #=> String
         | 
| 3927 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list #=> Array
         | 
| 3928 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].version_id #=> String
         | 
| 3929 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].is_default_version #=> Boolean
         | 
| 3930 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].create_date #=> String
         | 
| 3931 | 
            +
                #   resp.findings[0].resources[0].details.aws_iam_policy.update_date #=> String
         | 
| 3932 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions #=> Array
         | 
| 3933 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_name #=> String
         | 
| 3934 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_type #=> String
         | 
| 3935 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.billing_mode #=> String
         | 
| 3936 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.last_update_to_pay_per_request_date_time #=> String
         | 
| 3937 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.creation_date_time #=> String
         | 
| 3938 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes #=> Array
         | 
| 3939 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].backfilling #=> Boolean
         | 
| 3940 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_arn #=> String
         | 
| 3941 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_name #=> String
         | 
| 3942 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_size_bytes #=> Integer
         | 
| 3943 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_status #=> String
         | 
| 3944 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].item_count #=> Integer
         | 
| 3945 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema #=> Array
         | 
| 3946 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].attribute_name #=> String
         | 
| 3947 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].key_type #=> String
         | 
| 3948 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes #=> Array
         | 
| 3949 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes[0] #=> String
         | 
| 3950 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.projection_type #=> String
         | 
| 3951 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_decrease_date_time #=> String
         | 
| 3952 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_increase_date_time #=> String
         | 
| 3953 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.number_of_decreases_today #=> Integer
         | 
| 3954 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.read_capacity_units #=> Integer
         | 
| 3955 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.write_capacity_units #=> Integer
         | 
| 3956 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.global_table_version #=> String
         | 
| 3957 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.item_count #=> Integer
         | 
| 3958 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema #=> Array
         | 
| 3959 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].attribute_name #=> String
         | 
| 3960 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].key_type #=> String
         | 
| 3961 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_arn #=> String
         | 
| 3962 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_label #=> String
         | 
| 3963 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes #=> Array
         | 
| 3964 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_arn #=> String
         | 
| 3965 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_name #=> String
         | 
| 3966 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema #=> Array
         | 
| 3967 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].attribute_name #=> String
         | 
| 3968 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].key_type #=> String
         | 
| 3969 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes #=> Array
         | 
| 3970 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes[0] #=> String
         | 
| 3971 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.projection_type #=> String
         | 
| 3972 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_decrease_date_time #=> String
         | 
| 3973 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_increase_date_time #=> String
         | 
| 3974 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.number_of_decreases_today #=> Integer
         | 
| 3975 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.read_capacity_units #=> Integer
         | 
| 3976 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.write_capacity_units #=> Integer
         | 
| 3977 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas #=> Array
         | 
| 3978 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes #=> Array
         | 
| 3979 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].index_name #=> String
         | 
| 3980 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
         | 
| 3981 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].kms_master_key_id #=> String
         | 
| 3982 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].provisioned_throughput_override.read_capacity_units #=> Integer
         | 
| 3983 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].region_name #=> String
         | 
| 3984 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status #=> String
         | 
| 3985 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status_description #=> String
         | 
| 3986 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_backup_arn #=> String
         | 
| 3987 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_table_arn #=> String
         | 
| 3988 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_date_time #=> String
         | 
| 3989 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_in_progress #=> Boolean
         | 
| 3990 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.inaccessible_encryption_date_time #=> String
         | 
| 3991 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.status #=> String
         | 
| 3992 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.sse_type #=> String
         | 
| 3993 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.kms_master_key_arn #=> String
         | 
| 3994 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_enabled #=> Boolean
         | 
| 3995 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_view_type #=> String
         | 
| 3996 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.table_id #=> String
         | 
| 3997 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.table_name #=> String
         | 
| 3998 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.table_size_bytes #=> Integer
         | 
| 3999 | 
            +
                #   resp.findings[0].resources[0].details.aws_dynamo_db_table.table_status #=> String
         | 
| 3290 4000 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_role.assume_role_policy_document #=> String
         | 
| 3291 4001 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_role.create_date #=> String
         | 
| 3292 4002 | 
             
                #   resp.findings[0].resources[0].details.aws_iam_role.role_id #=> String
         | 
| @@ -3299,6 +4009,7 @@ module Aws::SecurityHub | |
| 3299 4009 | 
             
                #   resp.findings[0].resources[0].details.aws_kms_key.key_manager #=> String
         | 
| 3300 4010 | 
             
                #   resp.findings[0].resources[0].details.aws_kms_key.key_state #=> String
         | 
| 3301 4011 | 
             
                #   resp.findings[0].resources[0].details.aws_kms_key.origin #=> String
         | 
| 4012 | 
            +
                #   resp.findings[0].resources[0].details.aws_kms_key.description #=> String
         | 
| 3302 4013 | 
             
                #   resp.findings[0].resources[0].details.aws_lambda_function.code.s3_bucket #=> String
         | 
| 3303 4014 | 
             
                #   resp.findings[0].resources[0].details.aws_lambda_function.code.s3_key #=> String
         | 
| 3304 4015 | 
             
                #   resp.findings[0].resources[0].details.aws_lambda_function.code.s3_object_version #=> String
         | 
| @@ -3359,6 +4070,91 @@ module Aws::SecurityHub | |
| 3359 4070 | 
             
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups #=> Array
         | 
| 3360 4071 | 
             
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].vpc_security_group_id #=> String
         | 
| 3361 4072 | 
             
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].status #=> String
         | 
| 4073 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.multi_az #=> Boolean
         | 
| 4074 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.enhanced_monitoring_resource_arn #=> String
         | 
| 4075 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_status #=> String
         | 
| 4076 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.master_username #=> String
         | 
| 4077 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.allocated_storage #=> Integer
         | 
| 4078 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_backup_window #=> String
         | 
| 4079 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.backup_retention_period #=> Integer
         | 
| 4080 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups #=> Array
         | 
| 4081 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups[0] #=> String
         | 
| 4082 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups #=> Array
         | 
| 4083 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].db_parameter_group_name #=> String
         | 
| 4084 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].parameter_apply_status #=> String
         | 
| 4085 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.availability_zone #=> String
         | 
| 4086 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_name #=> String
         | 
| 4087 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_description #=> String
         | 
| 4088 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.vpc_id #=> String
         | 
| 4089 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnet_group_status #=> String
         | 
| 4090 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets #=> Array
         | 
| 4091 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
         | 
| 4092 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
         | 
| 4093 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_status #=> String
         | 
| 4094 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_arn #=> String
         | 
| 4095 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_maintenance_window #=> String
         | 
| 4096 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_class #=> String
         | 
| 4097 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.allocated_storage #=> Integer
         | 
| 4098 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.master_user_password #=> String
         | 
| 4099 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.port #=> Integer
         | 
| 4100 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.backup_retention_period #=> Integer
         | 
| 4101 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.multi_az #=> Boolean
         | 
| 4102 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.engine_version #=> String
         | 
| 4103 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.license_model #=> String
         | 
| 4104 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.iops #=> Integer
         | 
| 4105 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_identifier #=> String
         | 
| 4106 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.storage_type #=> String
         | 
| 4107 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.ca_certificate_identifier #=> String
         | 
| 4108 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_subnet_group_name #=> String
         | 
| 4109 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable #=> Array
         | 
| 4110 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable[0] #=> String
         | 
| 4111 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable #=> Array
         | 
| 4112 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable[0] #=> String
         | 
| 4113 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features #=> Array
         | 
| 4114 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].name #=> String
         | 
| 4115 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].value #=> String
         | 
| 4116 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.latest_restorable_time #=> String
         | 
| 4117 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.auto_minor_version_upgrade #=> Boolean
         | 
| 4118 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_source_db_instance_identifier #=> String
         | 
| 4119 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers #=> Array
         | 
| 4120 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers[0] #=> String
         | 
| 4121 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers #=> Array
         | 
| 4122 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers[0] #=> String
         | 
| 4123 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.license_model #=> String
         | 
| 4124 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.iops #=> Integer
         | 
| 4125 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships #=> Array
         | 
| 4126 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].option_group_name #=> String
         | 
| 4127 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].status #=> String
         | 
| 4128 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.character_set_name #=> String
         | 
| 4129 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.secondary_availability_zone #=> String
         | 
| 4130 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos #=> Array
         | 
| 4131 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status_type #=> String
         | 
| 4132 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].normal #=> Boolean
         | 
| 4133 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status #=> String
         | 
| 4134 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].message #=> String
         | 
| 4135 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.storage_type #=> String
         | 
| 4136 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships #=> Array
         | 
| 4137 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].domain #=> String
         | 
| 4138 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].status #=> String
         | 
| 4139 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].fqdn #=> String
         | 
| 4140 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].iam_role_name #=> String
         | 
| 4141 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.copy_tags_to_snapshot #=> Boolean
         | 
| 4142 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_interval #=> Integer
         | 
| 4143 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_role_arn #=> String
         | 
| 4144 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.promotion_tier #=> Integer
         | 
| 4145 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.timezone #=> String
         | 
| 4146 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_enabled #=> Boolean
         | 
| 4147 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_kms_key_id #=> String
         | 
| 4148 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_retention_period #=> Integer
         | 
| 4149 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports #=> Array
         | 
| 4150 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports[0] #=> String
         | 
| 4151 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features #=> Array
         | 
| 4152 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].name #=> String
         | 
| 4153 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].value #=> String
         | 
| 4154 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.address #=> String
         | 
| 4155 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.port #=> Integer
         | 
| 4156 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.hosted_zone_id #=> String
         | 
| 4157 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_instance.max_allocated_storage #=> Integer
         | 
| 3362 4158 | 
             
                #   resp.findings[0].resources[0].details.aws_sns_topic.kms_master_key_id #=> String
         | 
| 3363 4159 | 
             
                #   resp.findings[0].resources[0].details.aws_sns_topic.subscription #=> Array
         | 
| 3364 4160 | 
             
                #   resp.findings[0].resources[0].details.aws_sns_topic.subscription[0].endpoint #=> String
         | 
| @@ -3380,6 +4176,109 @@ module Aws::SecurityHub | |
| 3380 4176 | 
             
                #   resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].rule_id #=> String
         | 
| 3381 4177 | 
             
                #   resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].type #=> String
         | 
| 3382 4178 | 
             
                #   resp.findings[0].resources[0].details.aws_waf_web_acl.web_acl_id #=> String
         | 
| 4179 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_snapshot_identifier #=> String
         | 
| 4180 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_instance_identifier #=> String
         | 
| 4181 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_create_time #=> String
         | 
| 4182 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine #=> String
         | 
| 4183 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.allocated_storage #=> Integer
         | 
| 4184 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.status #=> String
         | 
| 4185 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.port #=> Integer
         | 
| 4186 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.availability_zone #=> String
         | 
| 4187 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.vpc_id #=> String
         | 
| 4188 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.instance_create_time #=> String
         | 
| 4189 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.master_username #=> String
         | 
| 4190 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine_version #=> String
         | 
| 4191 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.license_model #=> String
         | 
| 4192 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_type #=> String
         | 
| 4193 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.iops #=> Integer
         | 
| 4194 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.option_group_name #=> String
         | 
| 4195 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.percent_progress #=> Integer
         | 
| 4196 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_region #=> String
         | 
| 4197 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_db_snapshot_identifier #=> String
         | 
| 4198 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.storage_type #=> String
         | 
| 4199 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.tde_credential_arn #=> String
         | 
| 4200 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.encrypted #=> Boolean
         | 
| 4201 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.kms_key_id #=> String
         | 
| 4202 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.timezone #=> String
         | 
| 4203 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.iam_database_authentication_enabled #=> Boolean
         | 
| 4204 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features #=> Array
         | 
| 4205 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].name #=> String
         | 
| 4206 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].value #=> String
         | 
| 4207 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_snapshot.dbi_resource_id #=> String
         | 
| 4208 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones #=> Array
         | 
| 4209 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones[0] #=> String
         | 
| 4210 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_create_time #=> String
         | 
| 4211 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine #=> String
         | 
| 4212 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.allocated_storage #=> Integer
         | 
| 4213 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.status #=> String
         | 
| 4214 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.port #=> Integer
         | 
| 4215 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.vpc_id #=> String
         | 
| 4216 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.cluster_create_time #=> String
         | 
| 4217 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.master_username #=> String
         | 
| 4218 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine_version #=> String
         | 
| 4219 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.license_model #=> String
         | 
| 4220 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_type #=> String
         | 
| 4221 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.percent_progress #=> Integer
         | 
| 4222 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.storage_encrypted #=> Boolean
         | 
| 4223 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.kms_key_id #=> String
         | 
| 4224 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_identifier #=> String
         | 
| 4225 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_snapshot_identifier #=> String
         | 
| 4226 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
         | 
| 4227 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.allocated_storage #=> Integer
         | 
| 4228 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones #=> Array
         | 
| 4229 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones[0] #=> String
         | 
| 4230 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.backup_retention_period #=> Integer
         | 
| 4231 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.database_name #=> String
         | 
| 4232 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.status #=> String
         | 
| 4233 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.endpoint #=> String
         | 
| 4234 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.reader_endpoint #=> String
         | 
| 4235 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints #=> Array
         | 
| 4236 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints[0] #=> String
         | 
| 4237 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.multi_az #=> Boolean
         | 
| 4238 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.engine #=> String
         | 
| 4239 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_version #=> String
         | 
| 4240 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.port #=> Integer
         | 
| 4241 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.master_username #=> String
         | 
| 4242 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_backup_window #=> String
         | 
| 4243 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_maintenance_window #=> String
         | 
| 4244 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers #=> Array
         | 
| 4245 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers[0] #=> String
         | 
| 4246 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups #=> Array
         | 
| 4247 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].vpc_security_group_id #=> String
         | 
| 4248 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].status #=> String
         | 
| 4249 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.hosted_zone_id #=> String
         | 
| 4250 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.storage_encrypted #=> Boolean
         | 
| 4251 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.kms_key_id #=> String
         | 
| 4252 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_resource_id #=> String
         | 
| 4253 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles #=> Array
         | 
| 4254 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].role_arn #=> String
         | 
| 4255 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].status #=> String
         | 
| 4256 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.cluster_create_time #=> String
         | 
| 4257 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports #=> Array
         | 
| 4258 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports[0] #=> String
         | 
| 4259 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_mode #=> String
         | 
| 4260 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.deletion_protection #=> Boolean
         | 
| 4261 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.http_endpoint_enabled #=> Boolean
         | 
| 4262 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.activity_stream_status #=> String
         | 
| 4263 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.copy_tags_to_snapshot #=> Boolean
         | 
| 4264 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.cross_account_clone #=> Boolean
         | 
| 4265 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships #=> Array
         | 
| 4266 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].domain #=> String
         | 
| 4267 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].status #=> String
         | 
| 4268 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].fqdn #=> String
         | 
| 4269 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].iam_role_name #=> String
         | 
| 4270 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_parameter_group #=> String
         | 
| 4271 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_subnet_group #=> String
         | 
| 4272 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships #=> Array
         | 
| 4273 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].db_cluster_option_group_name #=> String
         | 
| 4274 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].status #=> String
         | 
| 4275 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_identifier #=> String
         | 
| 4276 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members #=> Array
         | 
| 4277 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
         | 
| 4278 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].promotion_tier #=> Integer
         | 
| 4279 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_instance_identifier #=> String
         | 
| 4280 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_cluster_parameter_group_status #=> String
         | 
| 4281 | 
            +
                #   resp.findings[0].resources[0].details.aws_rds_db_cluster.iam_database_authentication_enabled #=> Boolean
         | 
| 3383 4282 | 
             
                #   resp.findings[0].resources[0].details.container.name #=> String
         | 
| 3384 4283 | 
             
                #   resp.findings[0].resources[0].details.container.image_id #=> String
         | 
| 3385 4284 | 
             
                #   resp.findings[0].resources[0].details.container.image_name #=> String
         | 
| @@ -3402,6 +4301,27 @@ module Aws::SecurityHub | |
| 3402 4301 | 
             
                #   resp.findings[0].note.text #=> String
         | 
| 3403 4302 | 
             
                #   resp.findings[0].note.updated_by #=> String
         | 
| 3404 4303 | 
             
                #   resp.findings[0].note.updated_at #=> String
         | 
| 4304 | 
            +
                #   resp.findings[0].vulnerabilities #=> Array
         | 
| 4305 | 
            +
                #   resp.findings[0].vulnerabilities[0].id #=> String
         | 
| 4306 | 
            +
                #   resp.findings[0].vulnerabilities[0].vulnerable_packages #=> Array
         | 
| 4307 | 
            +
                #   resp.findings[0].vulnerabilities[0].vulnerable_packages[0].name #=> String
         | 
| 4308 | 
            +
                #   resp.findings[0].vulnerabilities[0].vulnerable_packages[0].version #=> String
         | 
| 4309 | 
            +
                #   resp.findings[0].vulnerabilities[0].vulnerable_packages[0].epoch #=> String
         | 
| 4310 | 
            +
                #   resp.findings[0].vulnerabilities[0].vulnerable_packages[0].release #=> String
         | 
| 4311 | 
            +
                #   resp.findings[0].vulnerabilities[0].vulnerable_packages[0].architecture #=> String
         | 
| 4312 | 
            +
                #   resp.findings[0].vulnerabilities[0].cvss #=> Array
         | 
| 4313 | 
            +
                #   resp.findings[0].vulnerabilities[0].cvss[0].version #=> String
         | 
| 4314 | 
            +
                #   resp.findings[0].vulnerabilities[0].cvss[0].base_score #=> Float
         | 
| 4315 | 
            +
                #   resp.findings[0].vulnerabilities[0].cvss[0].base_vector #=> String
         | 
| 4316 | 
            +
                #   resp.findings[0].vulnerabilities[0].related_vulnerabilities #=> Array
         | 
| 4317 | 
            +
                #   resp.findings[0].vulnerabilities[0].related_vulnerabilities[0] #=> String
         | 
| 4318 | 
            +
                #   resp.findings[0].vulnerabilities[0].vendor.name #=> String
         | 
| 4319 | 
            +
                #   resp.findings[0].vulnerabilities[0].vendor.url #=> String
         | 
| 4320 | 
            +
                #   resp.findings[0].vulnerabilities[0].vendor.vendor_severity #=> String
         | 
| 4321 | 
            +
                #   resp.findings[0].vulnerabilities[0].vendor.vendor_created_at #=> String
         | 
| 4322 | 
            +
                #   resp.findings[0].vulnerabilities[0].vendor.vendor_updated_at #=> String
         | 
| 4323 | 
            +
                #   resp.findings[0].vulnerabilities[0].reference_urls #=> Array
         | 
| 4324 | 
            +
                #   resp.findings[0].vulnerabilities[0].reference_urls[0] #=> String
         | 
| 3405 4325 | 
             
                #   resp.next_token #=> String
         | 
| 3406 4326 | 
             
                #
         | 
| 3407 4327 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation
         | 
| @@ -3486,19 +4406,19 @@ module Aws::SecurityHub | |
| 3486 4406 | 
             
                #   resp.insights[0].name #=> String
         | 
| 3487 4407 | 
             
                #   resp.insights[0].filters.product_arn #=> Array
         | 
| 3488 4408 | 
             
                #   resp.insights[0].filters.product_arn[0].value #=> String
         | 
| 3489 | 
            -
                #   resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4409 | 
            +
                #   resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3490 4410 | 
             
                #   resp.insights[0].filters.aws_account_id #=> Array
         | 
| 3491 4411 | 
             
                #   resp.insights[0].filters.aws_account_id[0].value #=> String
         | 
| 3492 | 
            -
                #   resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4412 | 
            +
                #   resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3493 4413 | 
             
                #   resp.insights[0].filters.id #=> Array
         | 
| 3494 4414 | 
             
                #   resp.insights[0].filters.id[0].value #=> String
         | 
| 3495 | 
            -
                #   resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4415 | 
            +
                #   resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3496 4416 | 
             
                #   resp.insights[0].filters.generator_id #=> Array
         | 
| 3497 4417 | 
             
                #   resp.insights[0].filters.generator_id[0].value #=> String
         | 
| 3498 | 
            -
                #   resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4418 | 
            +
                #   resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3499 4419 | 
             
                #   resp.insights[0].filters.type #=> Array
         | 
| 3500 4420 | 
             
                #   resp.insights[0].filters.type[0].value #=> String
         | 
| 3501 | 
            -
                #   resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4421 | 
            +
                #   resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3502 4422 | 
             
                #   resp.insights[0].filters.first_observed_at #=> Array
         | 
| 3503 4423 | 
             
                #   resp.insights[0].filters.first_observed_at[0].start #=> String
         | 
| 3504 4424 | 
             
                #   resp.insights[0].filters.first_observed_at[0].end #=> String
         | 
| @@ -3529,7 +4449,7 @@ module Aws::SecurityHub | |
| 3529 4449 | 
             
                #   resp.insights[0].filters.severity_normalized[0].eq #=> Float
         | 
| 3530 4450 | 
             
                #   resp.insights[0].filters.severity_label #=> Array
         | 
| 3531 4451 | 
             
                #   resp.insights[0].filters.severity_label[0].value #=> String
         | 
| 3532 | 
            -
                #   resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4452 | 
            +
                #   resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3533 4453 | 
             
                #   resp.insights[0].filters.confidence #=> Array
         | 
| 3534 4454 | 
             
                #   resp.insights[0].filters.confidence[0].gte #=> Float
         | 
| 3535 4455 | 
             
                #   resp.insights[0].filters.confidence[0].lte #=> Float
         | 
| @@ -3540,48 +4460,48 @@ module Aws::SecurityHub | |
| 3540 4460 | 
             
                #   resp.insights[0].filters.criticality[0].eq #=> Float
         | 
| 3541 4461 | 
             
                #   resp.insights[0].filters.title #=> Array
         | 
| 3542 4462 | 
             
                #   resp.insights[0].filters.title[0].value #=> String
         | 
| 3543 | 
            -
                #   resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4463 | 
            +
                #   resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3544 4464 | 
             
                #   resp.insights[0].filters.description #=> Array
         | 
| 3545 4465 | 
             
                #   resp.insights[0].filters.description[0].value #=> String
         | 
| 3546 | 
            -
                #   resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4466 | 
            +
                #   resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3547 4467 | 
             
                #   resp.insights[0].filters.recommendation_text #=> Array
         | 
| 3548 4468 | 
             
                #   resp.insights[0].filters.recommendation_text[0].value #=> String
         | 
| 3549 | 
            -
                #   resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4469 | 
            +
                #   resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3550 4470 | 
             
                #   resp.insights[0].filters.source_url #=> Array
         | 
| 3551 4471 | 
             
                #   resp.insights[0].filters.source_url[0].value #=> String
         | 
| 3552 | 
            -
                #   resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4472 | 
            +
                #   resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3553 4473 | 
             
                #   resp.insights[0].filters.product_fields #=> Array
         | 
| 3554 4474 | 
             
                #   resp.insights[0].filters.product_fields[0].key #=> String
         | 
| 3555 4475 | 
             
                #   resp.insights[0].filters.product_fields[0].value #=> String
         | 
| 3556 | 
            -
                #   resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS"
         | 
| 4476 | 
            +
                #   resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
         | 
| 3557 4477 | 
             
                #   resp.insights[0].filters.product_name #=> Array
         | 
| 3558 4478 | 
             
                #   resp.insights[0].filters.product_name[0].value #=> String
         | 
| 3559 | 
            -
                #   resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4479 | 
            +
                #   resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3560 4480 | 
             
                #   resp.insights[0].filters.company_name #=> Array
         | 
| 3561 4481 | 
             
                #   resp.insights[0].filters.company_name[0].value #=> String
         | 
| 3562 | 
            -
                #   resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4482 | 
            +
                #   resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3563 4483 | 
             
                #   resp.insights[0].filters.user_defined_fields #=> Array
         | 
| 3564 4484 | 
             
                #   resp.insights[0].filters.user_defined_fields[0].key #=> String
         | 
| 3565 4485 | 
             
                #   resp.insights[0].filters.user_defined_fields[0].value #=> String
         | 
| 3566 | 
            -
                #   resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS"
         | 
| 4486 | 
            +
                #   resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
         | 
| 3567 4487 | 
             
                #   resp.insights[0].filters.malware_name #=> Array
         | 
| 3568 4488 | 
             
                #   resp.insights[0].filters.malware_name[0].value #=> String
         | 
| 3569 | 
            -
                #   resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4489 | 
            +
                #   resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3570 4490 | 
             
                #   resp.insights[0].filters.malware_type #=> Array
         | 
| 3571 4491 | 
             
                #   resp.insights[0].filters.malware_type[0].value #=> String
         | 
| 3572 | 
            -
                #   resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4492 | 
            +
                #   resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3573 4493 | 
             
                #   resp.insights[0].filters.malware_path #=> Array
         | 
| 3574 4494 | 
             
                #   resp.insights[0].filters.malware_path[0].value #=> String
         | 
| 3575 | 
            -
                #   resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4495 | 
            +
                #   resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3576 4496 | 
             
                #   resp.insights[0].filters.malware_state #=> Array
         | 
| 3577 4497 | 
             
                #   resp.insights[0].filters.malware_state[0].value #=> String
         | 
| 3578 | 
            -
                #   resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4498 | 
            +
                #   resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3579 4499 | 
             
                #   resp.insights[0].filters.network_direction #=> Array
         | 
| 3580 4500 | 
             
                #   resp.insights[0].filters.network_direction[0].value #=> String
         | 
| 3581 | 
            -
                #   resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4501 | 
            +
                #   resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3582 4502 | 
             
                #   resp.insights[0].filters.network_protocol #=> Array
         | 
| 3583 4503 | 
             
                #   resp.insights[0].filters.network_protocol[0].value #=> String
         | 
| 3584 | 
            -
                #   resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4504 | 
            +
                #   resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3585 4505 | 
             
                #   resp.insights[0].filters.network_source_ip_v4 #=> Array
         | 
| 3586 4506 | 
             
                #   resp.insights[0].filters.network_source_ip_v4[0].cidr #=> String
         | 
| 3587 4507 | 
             
                #   resp.insights[0].filters.network_source_ip_v6 #=> Array
         | 
| @@ -3592,10 +4512,10 @@ module Aws::SecurityHub | |
| 3592 4512 | 
             
                #   resp.insights[0].filters.network_source_port[0].eq #=> Float
         | 
| 3593 4513 | 
             
                #   resp.insights[0].filters.network_source_domain #=> Array
         | 
| 3594 4514 | 
             
                #   resp.insights[0].filters.network_source_domain[0].value #=> String
         | 
| 3595 | 
            -
                #   resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4515 | 
            +
                #   resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3596 4516 | 
             
                #   resp.insights[0].filters.network_source_mac #=> Array
         | 
| 3597 4517 | 
             
                #   resp.insights[0].filters.network_source_mac[0].value #=> String
         | 
| 3598 | 
            -
                #   resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4518 | 
            +
                #   resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3599 4519 | 
             
                #   resp.insights[0].filters.network_destination_ip_v4 #=> Array
         | 
| 3600 4520 | 
             
                #   resp.insights[0].filters.network_destination_ip_v4[0].cidr #=> String
         | 
| 3601 4521 | 
             
                #   resp.insights[0].filters.network_destination_ip_v6 #=> Array
         | 
| @@ -3606,13 +4526,13 @@ module Aws::SecurityHub | |
| 3606 4526 | 
             
                #   resp.insights[0].filters.network_destination_port[0].eq #=> Float
         | 
| 3607 4527 | 
             
                #   resp.insights[0].filters.network_destination_domain #=> Array
         | 
| 3608 4528 | 
             
                #   resp.insights[0].filters.network_destination_domain[0].value #=> String
         | 
| 3609 | 
            -
                #   resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4529 | 
            +
                #   resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3610 4530 | 
             
                #   resp.insights[0].filters.process_name #=> Array
         | 
| 3611 4531 | 
             
                #   resp.insights[0].filters.process_name[0].value #=> String
         | 
| 3612 | 
            -
                #   resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4532 | 
            +
                #   resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3613 4533 | 
             
                #   resp.insights[0].filters.process_path #=> Array
         | 
| 3614 4534 | 
             
                #   resp.insights[0].filters.process_path[0].value #=> String
         | 
| 3615 | 
            -
                #   resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4535 | 
            +
                #   resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3616 4536 | 
             
                #   resp.insights[0].filters.process_pid #=> Array
         | 
| 3617 4537 | 
             
                #   resp.insights[0].filters.process_pid[0].gte #=> Float
         | 
| 3618 4538 | 
             
                #   resp.insights[0].filters.process_pid[0].lte #=> Float
         | 
| @@ -3633,13 +4553,13 @@ module Aws::SecurityHub | |
| 3633 4553 | 
             
                #   resp.insights[0].filters.process_terminated_at[0].date_range.unit #=> String, one of "DAYS"
         | 
| 3634 4554 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_type #=> Array
         | 
| 3635 4555 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_type[0].value #=> String
         | 
| 3636 | 
            -
                #   resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4556 | 
            +
                #   resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3637 4557 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_value #=> Array
         | 
| 3638 4558 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_value[0].value #=> String
         | 
| 3639 | 
            -
                #   resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4559 | 
            +
                #   resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3640 4560 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_category #=> Array
         | 
| 3641 4561 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_category[0].value #=> String
         | 
| 3642 | 
            -
                #   resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4562 | 
            +
                #   resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3643 4563 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_last_observed_at #=> Array
         | 
| 3644 4564 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].start #=> String
         | 
| 3645 4565 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].end #=> String
         | 
| @@ -3647,48 +4567,48 @@ module Aws::SecurityHub | |
| 3647 4567 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].date_range.unit #=> String, one of "DAYS"
         | 
| 3648 4568 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_source #=> Array
         | 
| 3649 4569 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_source[0].value #=> String
         | 
| 3650 | 
            -
                #   resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4570 | 
            +
                #   resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3651 4571 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_source_url #=> Array
         | 
| 3652 4572 | 
             
                #   resp.insights[0].filters.threat_intel_indicator_source_url[0].value #=> String
         | 
| 3653 | 
            -
                #   resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4573 | 
            +
                #   resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3654 4574 | 
             
                #   resp.insights[0].filters.resource_type #=> Array
         | 
| 3655 4575 | 
             
                #   resp.insights[0].filters.resource_type[0].value #=> String
         | 
| 3656 | 
            -
                #   resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4576 | 
            +
                #   resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3657 4577 | 
             
                #   resp.insights[0].filters.resource_id #=> Array
         | 
| 3658 4578 | 
             
                #   resp.insights[0].filters.resource_id[0].value #=> String
         | 
| 3659 | 
            -
                #   resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4579 | 
            +
                #   resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3660 4580 | 
             
                #   resp.insights[0].filters.resource_partition #=> Array
         | 
| 3661 4581 | 
             
                #   resp.insights[0].filters.resource_partition[0].value #=> String
         | 
| 3662 | 
            -
                #   resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4582 | 
            +
                #   resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3663 4583 | 
             
                #   resp.insights[0].filters.resource_region #=> Array
         | 
| 3664 4584 | 
             
                #   resp.insights[0].filters.resource_region[0].value #=> String
         | 
| 3665 | 
            -
                #   resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4585 | 
            +
                #   resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3666 4586 | 
             
                #   resp.insights[0].filters.resource_tags #=> Array
         | 
| 3667 4587 | 
             
                #   resp.insights[0].filters.resource_tags[0].key #=> String
         | 
| 3668 4588 | 
             
                #   resp.insights[0].filters.resource_tags[0].value #=> String
         | 
| 3669 | 
            -
                #   resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS"
         | 
| 4589 | 
            +
                #   resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
         | 
| 3670 4590 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_type #=> Array
         | 
| 3671 4591 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_type[0].value #=> String
         | 
| 3672 | 
            -
                #   resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4592 | 
            +
                #   resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3673 4593 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_image_id #=> Array
         | 
| 3674 4594 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].value #=> String
         | 
| 3675 | 
            -
                #   resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4595 | 
            +
                #   resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3676 4596 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses #=> Array
         | 
| 3677 4597 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses[0].cidr #=> String
         | 
| 3678 4598 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses #=> Array
         | 
| 3679 4599 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses[0].cidr #=> String
         | 
| 3680 4600 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_key_name #=> Array
         | 
| 3681 4601 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].value #=> String
         | 
| 3682 | 
            -
                #   resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4602 | 
            +
                #   resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3683 4603 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn #=> Array
         | 
| 3684 4604 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].value #=> String
         | 
| 3685 | 
            -
                #   resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4605 | 
            +
                #   resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3686 4606 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_vpc_id #=> Array
         | 
| 3687 4607 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].value #=> String
         | 
| 3688 | 
            -
                #   resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4608 | 
            +
                #   resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3689 4609 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_subnet_id #=> Array
         | 
| 3690 4610 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].value #=> String
         | 
| 3691 | 
            -
                #   resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4611 | 
            +
                #   resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3692 4612 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_launched_at #=> Array
         | 
| 3693 4613 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].start #=> String
         | 
| 3694 4614 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].end #=> String
         | 
| @@ -3696,16 +4616,16 @@ module Aws::SecurityHub | |
| 3696 4616 | 
             
                #   resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].date_range.unit #=> String, one of "DAYS"
         | 
| 3697 4617 | 
             
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_id #=> Array
         | 
| 3698 4618 | 
             
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].value #=> String
         | 
| 3699 | 
            -
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4619 | 
            +
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3700 4620 | 
             
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_name #=> Array
         | 
| 3701 4621 | 
             
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].value #=> String
         | 
| 3702 | 
            -
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4622 | 
            +
                #   resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3703 4623 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_user_name #=> Array
         | 
| 3704 4624 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].value #=> String
         | 
| 3705 | 
            -
                #   resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4625 | 
            +
                #   resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3706 4626 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_status #=> Array
         | 
| 3707 4627 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_status[0].value #=> String
         | 
| 3708 | 
            -
                #   resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4628 | 
            +
                #   resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3709 4629 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_created_at #=> Array
         | 
| 3710 4630 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].start #=> String
         | 
| 3711 4631 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].end #=> String
         | 
| @@ -3713,13 +4633,13 @@ module Aws::SecurityHub | |
| 3713 4633 | 
             
                #   resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].date_range.unit #=> String, one of "DAYS"
         | 
| 3714 4634 | 
             
                #   resp.insights[0].filters.resource_container_name #=> Array
         | 
| 3715 4635 | 
             
                #   resp.insights[0].filters.resource_container_name[0].value #=> String
         | 
| 3716 | 
            -
                #   resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4636 | 
            +
                #   resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3717 4637 | 
             
                #   resp.insights[0].filters.resource_container_image_id #=> Array
         | 
| 3718 4638 | 
             
                #   resp.insights[0].filters.resource_container_image_id[0].value #=> String
         | 
| 3719 | 
            -
                #   resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4639 | 
            +
                #   resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3720 4640 | 
             
                #   resp.insights[0].filters.resource_container_image_name #=> Array
         | 
| 3721 4641 | 
             
                #   resp.insights[0].filters.resource_container_image_name[0].value #=> String
         | 
| 3722 | 
            -
                #   resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4642 | 
            +
                #   resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3723 4643 | 
             
                #   resp.insights[0].filters.resource_container_launched_at #=> Array
         | 
| 3724 4644 | 
             
                #   resp.insights[0].filters.resource_container_launched_at[0].start #=> String
         | 
| 3725 4645 | 
             
                #   resp.insights[0].filters.resource_container_launched_at[0].end #=> String
         | 
| @@ -3728,31 +4648,31 @@ module Aws::SecurityHub | |
| 3728 4648 | 
             
                #   resp.insights[0].filters.resource_details_other #=> Array
         | 
| 3729 4649 | 
             
                #   resp.insights[0].filters.resource_details_other[0].key #=> String
         | 
| 3730 4650 | 
             
                #   resp.insights[0].filters.resource_details_other[0].value #=> String
         | 
| 3731 | 
            -
                #   resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS"
         | 
| 4651 | 
            +
                #   resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
         | 
| 3732 4652 | 
             
                #   resp.insights[0].filters.compliance_status #=> Array
         | 
| 3733 4653 | 
             
                #   resp.insights[0].filters.compliance_status[0].value #=> String
         | 
| 3734 | 
            -
                #   resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4654 | 
            +
                #   resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3735 4655 | 
             
                #   resp.insights[0].filters.verification_state #=> Array
         | 
| 3736 4656 | 
             
                #   resp.insights[0].filters.verification_state[0].value #=> String
         | 
| 3737 | 
            -
                #   resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4657 | 
            +
                #   resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3738 4658 | 
             
                #   resp.insights[0].filters.workflow_state #=> Array
         | 
| 3739 4659 | 
             
                #   resp.insights[0].filters.workflow_state[0].value #=> String
         | 
| 3740 | 
            -
                #   resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4660 | 
            +
                #   resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3741 4661 | 
             
                #   resp.insights[0].filters.workflow_status #=> Array
         | 
| 3742 4662 | 
             
                #   resp.insights[0].filters.workflow_status[0].value #=> String
         | 
| 3743 | 
            -
                #   resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4663 | 
            +
                #   resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3744 4664 | 
             
                #   resp.insights[0].filters.record_state #=> Array
         | 
| 3745 4665 | 
             
                #   resp.insights[0].filters.record_state[0].value #=> String
         | 
| 3746 | 
            -
                #   resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4666 | 
            +
                #   resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3747 4667 | 
             
                #   resp.insights[0].filters.related_findings_product_arn #=> Array
         | 
| 3748 4668 | 
             
                #   resp.insights[0].filters.related_findings_product_arn[0].value #=> String
         | 
| 3749 | 
            -
                #   resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4669 | 
            +
                #   resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3750 4670 | 
             
                #   resp.insights[0].filters.related_findings_id #=> Array
         | 
| 3751 4671 | 
             
                #   resp.insights[0].filters.related_findings_id[0].value #=> String
         | 
| 3752 | 
            -
                #   resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4672 | 
            +
                #   resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3753 4673 | 
             
                #   resp.insights[0].filters.note_text #=> Array
         | 
| 3754 4674 | 
             
                #   resp.insights[0].filters.note_text[0].value #=> String
         | 
| 3755 | 
            -
                #   resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4675 | 
            +
                #   resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3756 4676 | 
             
                #   resp.insights[0].filters.note_updated_at #=> Array
         | 
| 3757 4677 | 
             
                #   resp.insights[0].filters.note_updated_at[0].start #=> String
         | 
| 3758 4678 | 
             
                #   resp.insights[0].filters.note_updated_at[0].end #=> String
         | 
| @@ -3760,7 +4680,7 @@ module Aws::SecurityHub | |
| 3760 4680 | 
             
                #   resp.insights[0].filters.note_updated_at[0].date_range.unit #=> String, one of "DAYS"
         | 
| 3761 4681 | 
             
                #   resp.insights[0].filters.note_updated_by #=> Array
         | 
| 3762 4682 | 
             
                #   resp.insights[0].filters.note_updated_by[0].value #=> String
         | 
| 3763 | 
            -
                #   resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX"
         | 
| 4683 | 
            +
                #   resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
         | 
| 3764 4684 | 
             
                #   resp.insights[0].filters.keyword #=> Array
         | 
| 3765 4685 | 
             
                #   resp.insights[0].filters.keyword[0].value #=> String
         | 
| 3766 4686 | 
             
                #   resp.insights[0].group_by_attribute #=> String
         | 
| @@ -4191,31 +5111,31 @@ module Aws::SecurityHub | |
| 4191 5111 | 
             
                #       product_arn: [
         | 
| 4192 5112 | 
             
                #         {
         | 
| 4193 5113 | 
             
                #           value: "NonEmptyString",
         | 
| 4194 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5114 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4195 5115 | 
             
                #         },
         | 
| 4196 5116 | 
             
                #       ],
         | 
| 4197 5117 | 
             
                #       aws_account_id: [
         | 
| 4198 5118 | 
             
                #         {
         | 
| 4199 5119 | 
             
                #           value: "NonEmptyString",
         | 
| 4200 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5120 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4201 5121 | 
             
                #         },
         | 
| 4202 5122 | 
             
                #       ],
         | 
| 4203 5123 | 
             
                #       id: [
         | 
| 4204 5124 | 
             
                #         {
         | 
| 4205 5125 | 
             
                #           value: "NonEmptyString",
         | 
| 4206 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5126 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4207 5127 | 
             
                #         },
         | 
| 4208 5128 | 
             
                #       ],
         | 
| 4209 5129 | 
             
                #       generator_id: [
         | 
| 4210 5130 | 
             
                #         {
         | 
| 4211 5131 | 
             
                #           value: "NonEmptyString",
         | 
| 4212 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5132 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4213 5133 | 
             
                #         },
         | 
| 4214 5134 | 
             
                #       ],
         | 
| 4215 5135 | 
             
                #       type: [
         | 
| 4216 5136 | 
             
                #         {
         | 
| 4217 5137 | 
             
                #           value: "NonEmptyString",
         | 
| 4218 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5138 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4219 5139 | 
             
                #         },
         | 
| 4220 5140 | 
             
                #       ],
         | 
| 4221 5141 | 
             
                #       first_observed_at: [
         | 
| @@ -4275,7 +5195,7 @@ module Aws::SecurityHub | |
| 4275 5195 | 
             
                #       severity_label: [
         | 
| 4276 5196 | 
             
                #         {
         | 
| 4277 5197 | 
             
                #           value: "NonEmptyString",
         | 
| 4278 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5198 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4279 5199 | 
             
                #         },
         | 
| 4280 5200 | 
             
                #       ],
         | 
| 4281 5201 | 
             
                #       confidence: [
         | 
| @@ -4295,87 +5215,87 @@ module Aws::SecurityHub | |
| 4295 5215 | 
             
                #       title: [
         | 
| 4296 5216 | 
             
                #         {
         | 
| 4297 5217 | 
             
                #           value: "NonEmptyString",
         | 
| 4298 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5218 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4299 5219 | 
             
                #         },
         | 
| 4300 5220 | 
             
                #       ],
         | 
| 4301 5221 | 
             
                #       description: [
         | 
| 4302 5222 | 
             
                #         {
         | 
| 4303 5223 | 
             
                #           value: "NonEmptyString",
         | 
| 4304 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5224 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4305 5225 | 
             
                #         },
         | 
| 4306 5226 | 
             
                #       ],
         | 
| 4307 5227 | 
             
                #       recommendation_text: [
         | 
| 4308 5228 | 
             
                #         {
         | 
| 4309 5229 | 
             
                #           value: "NonEmptyString",
         | 
| 4310 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5230 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4311 5231 | 
             
                #         },
         | 
| 4312 5232 | 
             
                #       ],
         | 
| 4313 5233 | 
             
                #       source_url: [
         | 
| 4314 5234 | 
             
                #         {
         | 
| 4315 5235 | 
             
                #           value: "NonEmptyString",
         | 
| 4316 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5236 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4317 5237 | 
             
                #         },
         | 
| 4318 5238 | 
             
                #       ],
         | 
| 4319 5239 | 
             
                #       product_fields: [
         | 
| 4320 5240 | 
             
                #         {
         | 
| 4321 5241 | 
             
                #           key: "NonEmptyString",
         | 
| 4322 5242 | 
             
                #           value: "NonEmptyString",
         | 
| 4323 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 5243 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 4324 5244 | 
             
                #         },
         | 
| 4325 5245 | 
             
                #       ],
         | 
| 4326 5246 | 
             
                #       product_name: [
         | 
| 4327 5247 | 
             
                #         {
         | 
| 4328 5248 | 
             
                #           value: "NonEmptyString",
         | 
| 4329 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5249 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4330 5250 | 
             
                #         },
         | 
| 4331 5251 | 
             
                #       ],
         | 
| 4332 5252 | 
             
                #       company_name: [
         | 
| 4333 5253 | 
             
                #         {
         | 
| 4334 5254 | 
             
                #           value: "NonEmptyString",
         | 
| 4335 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5255 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4336 5256 | 
             
                #         },
         | 
| 4337 5257 | 
             
                #       ],
         | 
| 4338 5258 | 
             
                #       user_defined_fields: [
         | 
| 4339 5259 | 
             
                #         {
         | 
| 4340 5260 | 
             
                #           key: "NonEmptyString",
         | 
| 4341 5261 | 
             
                #           value: "NonEmptyString",
         | 
| 4342 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 5262 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 4343 5263 | 
             
                #         },
         | 
| 4344 5264 | 
             
                #       ],
         | 
| 4345 5265 | 
             
                #       malware_name: [
         | 
| 4346 5266 | 
             
                #         {
         | 
| 4347 5267 | 
             
                #           value: "NonEmptyString",
         | 
| 4348 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5268 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4349 5269 | 
             
                #         },
         | 
| 4350 5270 | 
             
                #       ],
         | 
| 4351 5271 | 
             
                #       malware_type: [
         | 
| 4352 5272 | 
             
                #         {
         | 
| 4353 5273 | 
             
                #           value: "NonEmptyString",
         | 
| 4354 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5274 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4355 5275 | 
             
                #         },
         | 
| 4356 5276 | 
             
                #       ],
         | 
| 4357 5277 | 
             
                #       malware_path: [
         | 
| 4358 5278 | 
             
                #         {
         | 
| 4359 5279 | 
             
                #           value: "NonEmptyString",
         | 
| 4360 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5280 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4361 5281 | 
             
                #         },
         | 
| 4362 5282 | 
             
                #       ],
         | 
| 4363 5283 | 
             
                #       malware_state: [
         | 
| 4364 5284 | 
             
                #         {
         | 
| 4365 5285 | 
             
                #           value: "NonEmptyString",
         | 
| 4366 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5286 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4367 5287 | 
             
                #         },
         | 
| 4368 5288 | 
             
                #       ],
         | 
| 4369 5289 | 
             
                #       network_direction: [
         | 
| 4370 5290 | 
             
                #         {
         | 
| 4371 5291 | 
             
                #           value: "NonEmptyString",
         | 
| 4372 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5292 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4373 5293 | 
             
                #         },
         | 
| 4374 5294 | 
             
                #       ],
         | 
| 4375 5295 | 
             
                #       network_protocol: [
         | 
| 4376 5296 | 
             
                #         {
         | 
| 4377 5297 | 
             
                #           value: "NonEmptyString",
         | 
| 4378 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5298 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4379 5299 | 
             
                #         },
         | 
| 4380 5300 | 
             
                #       ],
         | 
| 4381 5301 | 
             
                #       network_source_ip_v4: [
         | 
| @@ -4398,13 +5318,13 @@ module Aws::SecurityHub | |
| 4398 5318 | 
             
                #       network_source_domain: [
         | 
| 4399 5319 | 
             
                #         {
         | 
| 4400 5320 | 
             
                #           value: "NonEmptyString",
         | 
| 4401 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5321 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4402 5322 | 
             
                #         },
         | 
| 4403 5323 | 
             
                #       ],
         | 
| 4404 5324 | 
             
                #       network_source_mac: [
         | 
| 4405 5325 | 
             
                #         {
         | 
| 4406 5326 | 
             
                #           value: "NonEmptyString",
         | 
| 4407 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5327 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4408 5328 | 
             
                #         },
         | 
| 4409 5329 | 
             
                #       ],
         | 
| 4410 5330 | 
             
                #       network_destination_ip_v4: [
         | 
| @@ -4427,19 +5347,19 @@ module Aws::SecurityHub | |
| 4427 5347 | 
             
                #       network_destination_domain: [
         | 
| 4428 5348 | 
             
                #         {
         | 
| 4429 5349 | 
             
                #           value: "NonEmptyString",
         | 
| 4430 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5350 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4431 5351 | 
             
                #         },
         | 
| 4432 5352 | 
             
                #       ],
         | 
| 4433 5353 | 
             
                #       process_name: [
         | 
| 4434 5354 | 
             
                #         {
         | 
| 4435 5355 | 
             
                #           value: "NonEmptyString",
         | 
| 4436 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5356 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4437 5357 | 
             
                #         },
         | 
| 4438 5358 | 
             
                #       ],
         | 
| 4439 5359 | 
             
                #       process_path: [
         | 
| 4440 5360 | 
             
                #         {
         | 
| 4441 5361 | 
             
                #           value: "NonEmptyString",
         | 
| 4442 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5362 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4443 5363 | 
             
                #         },
         | 
| 4444 5364 | 
             
                #       ],
         | 
| 4445 5365 | 
             
                #       process_pid: [
         | 
| @@ -4479,19 +5399,19 @@ module Aws::SecurityHub | |
| 4479 5399 | 
             
                #       threat_intel_indicator_type: [
         | 
| 4480 5400 | 
             
                #         {
         | 
| 4481 5401 | 
             
                #           value: "NonEmptyString",
         | 
| 4482 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5402 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4483 5403 | 
             
                #         },
         | 
| 4484 5404 | 
             
                #       ],
         | 
| 4485 5405 | 
             
                #       threat_intel_indicator_value: [
         | 
| 4486 5406 | 
             
                #         {
         | 
| 4487 5407 | 
             
                #           value: "NonEmptyString",
         | 
| 4488 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5408 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4489 5409 | 
             
                #         },
         | 
| 4490 5410 | 
             
                #       ],
         | 
| 4491 5411 | 
             
                #       threat_intel_indicator_category: [
         | 
| 4492 5412 | 
             
                #         {
         | 
| 4493 5413 | 
             
                #           value: "NonEmptyString",
         | 
| 4494 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5414 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4495 5415 | 
             
                #         },
         | 
| 4496 5416 | 
             
                #       ],
         | 
| 4497 5417 | 
             
                #       threat_intel_indicator_last_observed_at: [
         | 
| @@ -4507,56 +5427,56 @@ module Aws::SecurityHub | |
| 4507 5427 | 
             
                #       threat_intel_indicator_source: [
         | 
| 4508 5428 | 
             
                #         {
         | 
| 4509 5429 | 
             
                #           value: "NonEmptyString",
         | 
| 4510 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5430 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4511 5431 | 
             
                #         },
         | 
| 4512 5432 | 
             
                #       ],
         | 
| 4513 5433 | 
             
                #       threat_intel_indicator_source_url: [
         | 
| 4514 5434 | 
             
                #         {
         | 
| 4515 5435 | 
             
                #           value: "NonEmptyString",
         | 
| 4516 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5436 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4517 5437 | 
             
                #         },
         | 
| 4518 5438 | 
             
                #       ],
         | 
| 4519 5439 | 
             
                #       resource_type: [
         | 
| 4520 5440 | 
             
                #         {
         | 
| 4521 5441 | 
             
                #           value: "NonEmptyString",
         | 
| 4522 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5442 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4523 5443 | 
             
                #         },
         | 
| 4524 5444 | 
             
                #       ],
         | 
| 4525 5445 | 
             
                #       resource_id: [
         | 
| 4526 5446 | 
             
                #         {
         | 
| 4527 5447 | 
             
                #           value: "NonEmptyString",
         | 
| 4528 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5448 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4529 5449 | 
             
                #         },
         | 
| 4530 5450 | 
             
                #       ],
         | 
| 4531 5451 | 
             
                #       resource_partition: [
         | 
| 4532 5452 | 
             
                #         {
         | 
| 4533 5453 | 
             
                #           value: "NonEmptyString",
         | 
| 4534 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5454 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4535 5455 | 
             
                #         },
         | 
| 4536 5456 | 
             
                #       ],
         | 
| 4537 5457 | 
             
                #       resource_region: [
         | 
| 4538 5458 | 
             
                #         {
         | 
| 4539 5459 | 
             
                #           value: "NonEmptyString",
         | 
| 4540 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5460 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4541 5461 | 
             
                #         },
         | 
| 4542 5462 | 
             
                #       ],
         | 
| 4543 5463 | 
             
                #       resource_tags: [
         | 
| 4544 5464 | 
             
                #         {
         | 
| 4545 5465 | 
             
                #           key: "NonEmptyString",
         | 
| 4546 5466 | 
             
                #           value: "NonEmptyString",
         | 
| 4547 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 5467 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 4548 5468 | 
             
                #         },
         | 
| 4549 5469 | 
             
                #       ],
         | 
| 4550 5470 | 
             
                #       resource_aws_ec2_instance_type: [
         | 
| 4551 5471 | 
             
                #         {
         | 
| 4552 5472 | 
             
                #           value: "NonEmptyString",
         | 
| 4553 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5473 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4554 5474 | 
             
                #         },
         | 
| 4555 5475 | 
             
                #       ],
         | 
| 4556 5476 | 
             
                #       resource_aws_ec2_instance_image_id: [
         | 
| 4557 5477 | 
             
                #         {
         | 
| 4558 5478 | 
             
                #           value: "NonEmptyString",
         | 
| 4559 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5479 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4560 5480 | 
             
                #         },
         | 
| 4561 5481 | 
             
                #       ],
         | 
| 4562 5482 | 
             
                #       resource_aws_ec2_instance_ip_v4_addresses: [
         | 
| @@ -4572,25 +5492,25 @@ module Aws::SecurityHub | |
| 4572 5492 | 
             
                #       resource_aws_ec2_instance_key_name: [
         | 
| 4573 5493 | 
             
                #         {
         | 
| 4574 5494 | 
             
                #           value: "NonEmptyString",
         | 
| 4575 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5495 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4576 5496 | 
             
                #         },
         | 
| 4577 5497 | 
             
                #       ],
         | 
| 4578 5498 | 
             
                #       resource_aws_ec2_instance_iam_instance_profile_arn: [
         | 
| 4579 5499 | 
             
                #         {
         | 
| 4580 5500 | 
             
                #           value: "NonEmptyString",
         | 
| 4581 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5501 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4582 5502 | 
             
                #         },
         | 
| 4583 5503 | 
             
                #       ],
         | 
| 4584 5504 | 
             
                #       resource_aws_ec2_instance_vpc_id: [
         | 
| 4585 5505 | 
             
                #         {
         | 
| 4586 5506 | 
             
                #           value: "NonEmptyString",
         | 
| 4587 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5507 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4588 5508 | 
             
                #         },
         | 
| 4589 5509 | 
             
                #       ],
         | 
| 4590 5510 | 
             
                #       resource_aws_ec2_instance_subnet_id: [
         | 
| 4591 5511 | 
             
                #         {
         | 
| 4592 5512 | 
             
                #           value: "NonEmptyString",
         | 
| 4593 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5513 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4594 5514 | 
             
                #         },
         | 
| 4595 5515 | 
             
                #       ],
         | 
| 4596 5516 | 
             
                #       resource_aws_ec2_instance_launched_at: [
         | 
| @@ -4606,25 +5526,25 @@ module Aws::SecurityHub | |
| 4606 5526 | 
             
                #       resource_aws_s3_bucket_owner_id: [
         | 
| 4607 5527 | 
             
                #         {
         | 
| 4608 5528 | 
             
                #           value: "NonEmptyString",
         | 
| 4609 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5529 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4610 5530 | 
             
                #         },
         | 
| 4611 5531 | 
             
                #       ],
         | 
| 4612 5532 | 
             
                #       resource_aws_s3_bucket_owner_name: [
         | 
| 4613 5533 | 
             
                #         {
         | 
| 4614 5534 | 
             
                #           value: "NonEmptyString",
         | 
| 4615 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5535 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4616 5536 | 
             
                #         },
         | 
| 4617 5537 | 
             
                #       ],
         | 
| 4618 5538 | 
             
                #       resource_aws_iam_access_key_user_name: [
         | 
| 4619 5539 | 
             
                #         {
         | 
| 4620 5540 | 
             
                #           value: "NonEmptyString",
         | 
| 4621 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5541 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4622 5542 | 
             
                #         },
         | 
| 4623 5543 | 
             
                #       ],
         | 
| 4624 5544 | 
             
                #       resource_aws_iam_access_key_status: [
         | 
| 4625 5545 | 
             
                #         {
         | 
| 4626 5546 | 
             
                #           value: "NonEmptyString",
         | 
| 4627 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5547 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4628 5548 | 
             
                #         },
         | 
| 4629 5549 | 
             
                #       ],
         | 
| 4630 5550 | 
             
                #       resource_aws_iam_access_key_created_at: [
         | 
| @@ -4640,19 +5560,19 @@ module Aws::SecurityHub | |
| 4640 5560 | 
             
                #       resource_container_name: [
         | 
| 4641 5561 | 
             
                #         {
         | 
| 4642 5562 | 
             
                #           value: "NonEmptyString",
         | 
| 4643 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5563 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4644 5564 | 
             
                #         },
         | 
| 4645 5565 | 
             
                #       ],
         | 
| 4646 5566 | 
             
                #       resource_container_image_id: [
         | 
| 4647 5567 | 
             
                #         {
         | 
| 4648 5568 | 
             
                #           value: "NonEmptyString",
         | 
| 4649 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5569 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4650 5570 | 
             
                #         },
         | 
| 4651 5571 | 
             
                #       ],
         | 
| 4652 5572 | 
             
                #       resource_container_image_name: [
         | 
| 4653 5573 | 
             
                #         {
         | 
| 4654 5574 | 
             
                #           value: "NonEmptyString",
         | 
| 4655 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5575 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4656 5576 | 
             
                #         },
         | 
| 4657 5577 | 
             
                #       ],
         | 
| 4658 5578 | 
             
                #       resource_container_launched_at: [
         | 
| @@ -4669,55 +5589,55 @@ module Aws::SecurityHub | |
| 4669 5589 | 
             
                #         {
         | 
| 4670 5590 | 
             
                #           key: "NonEmptyString",
         | 
| 4671 5591 | 
             
                #           value: "NonEmptyString",
         | 
| 4672 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 5592 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 4673 5593 | 
             
                #         },
         | 
| 4674 5594 | 
             
                #       ],
         | 
| 4675 5595 | 
             
                #       compliance_status: [
         | 
| 4676 5596 | 
             
                #         {
         | 
| 4677 5597 | 
             
                #           value: "NonEmptyString",
         | 
| 4678 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5598 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4679 5599 | 
             
                #         },
         | 
| 4680 5600 | 
             
                #       ],
         | 
| 4681 5601 | 
             
                #       verification_state: [
         | 
| 4682 5602 | 
             
                #         {
         | 
| 4683 5603 | 
             
                #           value: "NonEmptyString",
         | 
| 4684 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5604 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4685 5605 | 
             
                #         },
         | 
| 4686 5606 | 
             
                #       ],
         | 
| 4687 5607 | 
             
                #       workflow_state: [
         | 
| 4688 5608 | 
             
                #         {
         | 
| 4689 5609 | 
             
                #           value: "NonEmptyString",
         | 
| 4690 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5610 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4691 5611 | 
             
                #         },
         | 
| 4692 5612 | 
             
                #       ],
         | 
| 4693 5613 | 
             
                #       workflow_status: [
         | 
| 4694 5614 | 
             
                #         {
         | 
| 4695 5615 | 
             
                #           value: "NonEmptyString",
         | 
| 4696 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5616 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4697 5617 | 
             
                #         },
         | 
| 4698 5618 | 
             
                #       ],
         | 
| 4699 5619 | 
             
                #       record_state: [
         | 
| 4700 5620 | 
             
                #         {
         | 
| 4701 5621 | 
             
                #           value: "NonEmptyString",
         | 
| 4702 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5622 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4703 5623 | 
             
                #         },
         | 
| 4704 5624 | 
             
                #       ],
         | 
| 4705 5625 | 
             
                #       related_findings_product_arn: [
         | 
| 4706 5626 | 
             
                #         {
         | 
| 4707 5627 | 
             
                #           value: "NonEmptyString",
         | 
| 4708 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5628 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4709 5629 | 
             
                #         },
         | 
| 4710 5630 | 
             
                #       ],
         | 
| 4711 5631 | 
             
                #       related_findings_id: [
         | 
| 4712 5632 | 
             
                #         {
         | 
| 4713 5633 | 
             
                #           value: "NonEmptyString",
         | 
| 4714 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5634 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4715 5635 | 
             
                #         },
         | 
| 4716 5636 | 
             
                #       ],
         | 
| 4717 5637 | 
             
                #       note_text: [
         | 
| 4718 5638 | 
             
                #         {
         | 
| 4719 5639 | 
             
                #           value: "NonEmptyString",
         | 
| 4720 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5640 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4721 5641 | 
             
                #         },
         | 
| 4722 5642 | 
             
                #       ],
         | 
| 4723 5643 | 
             
                #       note_updated_at: [
         | 
| @@ -4733,7 +5653,7 @@ module Aws::SecurityHub | |
| 4733 5653 | 
             
                #       note_updated_by: [
         | 
| 4734 5654 | 
             
                #         {
         | 
| 4735 5655 | 
             
                #           value: "NonEmptyString",
         | 
| 4736 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5656 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4737 5657 | 
             
                #         },
         | 
| 4738 5658 | 
             
                #       ],
         | 
| 4739 5659 | 
             
                #       keyword: [
         | 
| @@ -4784,31 +5704,31 @@ module Aws::SecurityHub | |
| 4784 5704 | 
             
                #       product_arn: [
         | 
| 4785 5705 | 
             
                #         {
         | 
| 4786 5706 | 
             
                #           value: "NonEmptyString",
         | 
| 4787 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5707 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4788 5708 | 
             
                #         },
         | 
| 4789 5709 | 
             
                #       ],
         | 
| 4790 5710 | 
             
                #       aws_account_id: [
         | 
| 4791 5711 | 
             
                #         {
         | 
| 4792 5712 | 
             
                #           value: "NonEmptyString",
         | 
| 4793 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5713 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4794 5714 | 
             
                #         },
         | 
| 4795 5715 | 
             
                #       ],
         | 
| 4796 5716 | 
             
                #       id: [
         | 
| 4797 5717 | 
             
                #         {
         | 
| 4798 5718 | 
             
                #           value: "NonEmptyString",
         | 
| 4799 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5719 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4800 5720 | 
             
                #         },
         | 
| 4801 5721 | 
             
                #       ],
         | 
| 4802 5722 | 
             
                #       generator_id: [
         | 
| 4803 5723 | 
             
                #         {
         | 
| 4804 5724 | 
             
                #           value: "NonEmptyString",
         | 
| 4805 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5725 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4806 5726 | 
             
                #         },
         | 
| 4807 5727 | 
             
                #       ],
         | 
| 4808 5728 | 
             
                #       type: [
         | 
| 4809 5729 | 
             
                #         {
         | 
| 4810 5730 | 
             
                #           value: "NonEmptyString",
         | 
| 4811 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5731 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4812 5732 | 
             
                #         },
         | 
| 4813 5733 | 
             
                #       ],
         | 
| 4814 5734 | 
             
                #       first_observed_at: [
         | 
| @@ -4868,7 +5788,7 @@ module Aws::SecurityHub | |
| 4868 5788 | 
             
                #       severity_label: [
         | 
| 4869 5789 | 
             
                #         {
         | 
| 4870 5790 | 
             
                #           value: "NonEmptyString",
         | 
| 4871 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5791 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4872 5792 | 
             
                #         },
         | 
| 4873 5793 | 
             
                #       ],
         | 
| 4874 5794 | 
             
                #       confidence: [
         | 
| @@ -4888,87 +5808,87 @@ module Aws::SecurityHub | |
| 4888 5808 | 
             
                #       title: [
         | 
| 4889 5809 | 
             
                #         {
         | 
| 4890 5810 | 
             
                #           value: "NonEmptyString",
         | 
| 4891 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5811 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4892 5812 | 
             
                #         },
         | 
| 4893 5813 | 
             
                #       ],
         | 
| 4894 5814 | 
             
                #       description: [
         | 
| 4895 5815 | 
             
                #         {
         | 
| 4896 5816 | 
             
                #           value: "NonEmptyString",
         | 
| 4897 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5817 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4898 5818 | 
             
                #         },
         | 
| 4899 5819 | 
             
                #       ],
         | 
| 4900 5820 | 
             
                #       recommendation_text: [
         | 
| 4901 5821 | 
             
                #         {
         | 
| 4902 5822 | 
             
                #           value: "NonEmptyString",
         | 
| 4903 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5823 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4904 5824 | 
             
                #         },
         | 
| 4905 5825 | 
             
                #       ],
         | 
| 4906 5826 | 
             
                #       source_url: [
         | 
| 4907 5827 | 
             
                #         {
         | 
| 4908 5828 | 
             
                #           value: "NonEmptyString",
         | 
| 4909 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5829 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4910 5830 | 
             
                #         },
         | 
| 4911 5831 | 
             
                #       ],
         | 
| 4912 5832 | 
             
                #       product_fields: [
         | 
| 4913 5833 | 
             
                #         {
         | 
| 4914 5834 | 
             
                #           key: "NonEmptyString",
         | 
| 4915 5835 | 
             
                #           value: "NonEmptyString",
         | 
| 4916 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 5836 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 4917 5837 | 
             
                #         },
         | 
| 4918 5838 | 
             
                #       ],
         | 
| 4919 5839 | 
             
                #       product_name: [
         | 
| 4920 5840 | 
             
                #         {
         | 
| 4921 5841 | 
             
                #           value: "NonEmptyString",
         | 
| 4922 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5842 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4923 5843 | 
             
                #         },
         | 
| 4924 5844 | 
             
                #       ],
         | 
| 4925 5845 | 
             
                #       company_name: [
         | 
| 4926 5846 | 
             
                #         {
         | 
| 4927 5847 | 
             
                #           value: "NonEmptyString",
         | 
| 4928 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5848 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4929 5849 | 
             
                #         },
         | 
| 4930 5850 | 
             
                #       ],
         | 
| 4931 5851 | 
             
                #       user_defined_fields: [
         | 
| 4932 5852 | 
             
                #         {
         | 
| 4933 5853 | 
             
                #           key: "NonEmptyString",
         | 
| 4934 5854 | 
             
                #           value: "NonEmptyString",
         | 
| 4935 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 5855 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 4936 5856 | 
             
                #         },
         | 
| 4937 5857 | 
             
                #       ],
         | 
| 4938 5858 | 
             
                #       malware_name: [
         | 
| 4939 5859 | 
             
                #         {
         | 
| 4940 5860 | 
             
                #           value: "NonEmptyString",
         | 
| 4941 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5861 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4942 5862 | 
             
                #         },
         | 
| 4943 5863 | 
             
                #       ],
         | 
| 4944 5864 | 
             
                #       malware_type: [
         | 
| 4945 5865 | 
             
                #         {
         | 
| 4946 5866 | 
             
                #           value: "NonEmptyString",
         | 
| 4947 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5867 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4948 5868 | 
             
                #         },
         | 
| 4949 5869 | 
             
                #       ],
         | 
| 4950 5870 | 
             
                #       malware_path: [
         | 
| 4951 5871 | 
             
                #         {
         | 
| 4952 5872 | 
             
                #           value: "NonEmptyString",
         | 
| 4953 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5873 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4954 5874 | 
             
                #         },
         | 
| 4955 5875 | 
             
                #       ],
         | 
| 4956 5876 | 
             
                #       malware_state: [
         | 
| 4957 5877 | 
             
                #         {
         | 
| 4958 5878 | 
             
                #           value: "NonEmptyString",
         | 
| 4959 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5879 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4960 5880 | 
             
                #         },
         | 
| 4961 5881 | 
             
                #       ],
         | 
| 4962 5882 | 
             
                #       network_direction: [
         | 
| 4963 5883 | 
             
                #         {
         | 
| 4964 5884 | 
             
                #           value: "NonEmptyString",
         | 
| 4965 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5885 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4966 5886 | 
             
                #         },
         | 
| 4967 5887 | 
             
                #       ],
         | 
| 4968 5888 | 
             
                #       network_protocol: [
         | 
| 4969 5889 | 
             
                #         {
         | 
| 4970 5890 | 
             
                #           value: "NonEmptyString",
         | 
| 4971 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5891 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4972 5892 | 
             
                #         },
         | 
| 4973 5893 | 
             
                #       ],
         | 
| 4974 5894 | 
             
                #       network_source_ip_v4: [
         | 
| @@ -4991,13 +5911,13 @@ module Aws::SecurityHub | |
| 4991 5911 | 
             
                #       network_source_domain: [
         | 
| 4992 5912 | 
             
                #         {
         | 
| 4993 5913 | 
             
                #           value: "NonEmptyString",
         | 
| 4994 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5914 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 4995 5915 | 
             
                #         },
         | 
| 4996 5916 | 
             
                #       ],
         | 
| 4997 5917 | 
             
                #       network_source_mac: [
         | 
| 4998 5918 | 
             
                #         {
         | 
| 4999 5919 | 
             
                #           value: "NonEmptyString",
         | 
| 5000 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5920 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5001 5921 | 
             
                #         },
         | 
| 5002 5922 | 
             
                #       ],
         | 
| 5003 5923 | 
             
                #       network_destination_ip_v4: [
         | 
| @@ -5020,19 +5940,19 @@ module Aws::SecurityHub | |
| 5020 5940 | 
             
                #       network_destination_domain: [
         | 
| 5021 5941 | 
             
                #         {
         | 
| 5022 5942 | 
             
                #           value: "NonEmptyString",
         | 
| 5023 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5943 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5024 5944 | 
             
                #         },
         | 
| 5025 5945 | 
             
                #       ],
         | 
| 5026 5946 | 
             
                #       process_name: [
         | 
| 5027 5947 | 
             
                #         {
         | 
| 5028 5948 | 
             
                #           value: "NonEmptyString",
         | 
| 5029 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5949 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5030 5950 | 
             
                #         },
         | 
| 5031 5951 | 
             
                #       ],
         | 
| 5032 5952 | 
             
                #       process_path: [
         | 
| 5033 5953 | 
             
                #         {
         | 
| 5034 5954 | 
             
                #           value: "NonEmptyString",
         | 
| 5035 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5955 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5036 5956 | 
             
                #         },
         | 
| 5037 5957 | 
             
                #       ],
         | 
| 5038 5958 | 
             
                #       process_pid: [
         | 
| @@ -5072,19 +5992,19 @@ module Aws::SecurityHub | |
| 5072 5992 | 
             
                #       threat_intel_indicator_type: [
         | 
| 5073 5993 | 
             
                #         {
         | 
| 5074 5994 | 
             
                #           value: "NonEmptyString",
         | 
| 5075 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 5995 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5076 5996 | 
             
                #         },
         | 
| 5077 5997 | 
             
                #       ],
         | 
| 5078 5998 | 
             
                #       threat_intel_indicator_value: [
         | 
| 5079 5999 | 
             
                #         {
         | 
| 5080 6000 | 
             
                #           value: "NonEmptyString",
         | 
| 5081 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6001 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5082 6002 | 
             
                #         },
         | 
| 5083 6003 | 
             
                #       ],
         | 
| 5084 6004 | 
             
                #       threat_intel_indicator_category: [
         | 
| 5085 6005 | 
             
                #         {
         | 
| 5086 6006 | 
             
                #           value: "NonEmptyString",
         | 
| 5087 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6007 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5088 6008 | 
             
                #         },
         | 
| 5089 6009 | 
             
                #       ],
         | 
| 5090 6010 | 
             
                #       threat_intel_indicator_last_observed_at: [
         | 
| @@ -5100,56 +6020,56 @@ module Aws::SecurityHub | |
| 5100 6020 | 
             
                #       threat_intel_indicator_source: [
         | 
| 5101 6021 | 
             
                #         {
         | 
| 5102 6022 | 
             
                #           value: "NonEmptyString",
         | 
| 5103 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6023 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5104 6024 | 
             
                #         },
         | 
| 5105 6025 | 
             
                #       ],
         | 
| 5106 6026 | 
             
                #       threat_intel_indicator_source_url: [
         | 
| 5107 6027 | 
             
                #         {
         | 
| 5108 6028 | 
             
                #           value: "NonEmptyString",
         | 
| 5109 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6029 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5110 6030 | 
             
                #         },
         | 
| 5111 6031 | 
             
                #       ],
         | 
| 5112 6032 | 
             
                #       resource_type: [
         | 
| 5113 6033 | 
             
                #         {
         | 
| 5114 6034 | 
             
                #           value: "NonEmptyString",
         | 
| 5115 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6035 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5116 6036 | 
             
                #         },
         | 
| 5117 6037 | 
             
                #       ],
         | 
| 5118 6038 | 
             
                #       resource_id: [
         | 
| 5119 6039 | 
             
                #         {
         | 
| 5120 6040 | 
             
                #           value: "NonEmptyString",
         | 
| 5121 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6041 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5122 6042 | 
             
                #         },
         | 
| 5123 6043 | 
             
                #       ],
         | 
| 5124 6044 | 
             
                #       resource_partition: [
         | 
| 5125 6045 | 
             
                #         {
         | 
| 5126 6046 | 
             
                #           value: "NonEmptyString",
         | 
| 5127 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6047 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5128 6048 | 
             
                #         },
         | 
| 5129 6049 | 
             
                #       ],
         | 
| 5130 6050 | 
             
                #       resource_region: [
         | 
| 5131 6051 | 
             
                #         {
         | 
| 5132 6052 | 
             
                #           value: "NonEmptyString",
         | 
| 5133 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6053 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5134 6054 | 
             
                #         },
         | 
| 5135 6055 | 
             
                #       ],
         | 
| 5136 6056 | 
             
                #       resource_tags: [
         | 
| 5137 6057 | 
             
                #         {
         | 
| 5138 6058 | 
             
                #           key: "NonEmptyString",
         | 
| 5139 6059 | 
             
                #           value: "NonEmptyString",
         | 
| 5140 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 6060 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 5141 6061 | 
             
                #         },
         | 
| 5142 6062 | 
             
                #       ],
         | 
| 5143 6063 | 
             
                #       resource_aws_ec2_instance_type: [
         | 
| 5144 6064 | 
             
                #         {
         | 
| 5145 6065 | 
             
                #           value: "NonEmptyString",
         | 
| 5146 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6066 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5147 6067 | 
             
                #         },
         | 
| 5148 6068 | 
             
                #       ],
         | 
| 5149 6069 | 
             
                #       resource_aws_ec2_instance_image_id: [
         | 
| 5150 6070 | 
             
                #         {
         | 
| 5151 6071 | 
             
                #           value: "NonEmptyString",
         | 
| 5152 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6072 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5153 6073 | 
             
                #         },
         | 
| 5154 6074 | 
             
                #       ],
         | 
| 5155 6075 | 
             
                #       resource_aws_ec2_instance_ip_v4_addresses: [
         | 
| @@ -5165,25 +6085,25 @@ module Aws::SecurityHub | |
| 5165 6085 | 
             
                #       resource_aws_ec2_instance_key_name: [
         | 
| 5166 6086 | 
             
                #         {
         | 
| 5167 6087 | 
             
                #           value: "NonEmptyString",
         | 
| 5168 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6088 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5169 6089 | 
             
                #         },
         | 
| 5170 6090 | 
             
                #       ],
         | 
| 5171 6091 | 
             
                #       resource_aws_ec2_instance_iam_instance_profile_arn: [
         | 
| 5172 6092 | 
             
                #         {
         | 
| 5173 6093 | 
             
                #           value: "NonEmptyString",
         | 
| 5174 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6094 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5175 6095 | 
             
                #         },
         | 
| 5176 6096 | 
             
                #       ],
         | 
| 5177 6097 | 
             
                #       resource_aws_ec2_instance_vpc_id: [
         | 
| 5178 6098 | 
             
                #         {
         | 
| 5179 6099 | 
             
                #           value: "NonEmptyString",
         | 
| 5180 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6100 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5181 6101 | 
             
                #         },
         | 
| 5182 6102 | 
             
                #       ],
         | 
| 5183 6103 | 
             
                #       resource_aws_ec2_instance_subnet_id: [
         | 
| 5184 6104 | 
             
                #         {
         | 
| 5185 6105 | 
             
                #           value: "NonEmptyString",
         | 
| 5186 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6106 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5187 6107 | 
             
                #         },
         | 
| 5188 6108 | 
             
                #       ],
         | 
| 5189 6109 | 
             
                #       resource_aws_ec2_instance_launched_at: [
         | 
| @@ -5199,25 +6119,25 @@ module Aws::SecurityHub | |
| 5199 6119 | 
             
                #       resource_aws_s3_bucket_owner_id: [
         | 
| 5200 6120 | 
             
                #         {
         | 
| 5201 6121 | 
             
                #           value: "NonEmptyString",
         | 
| 5202 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6122 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5203 6123 | 
             
                #         },
         | 
| 5204 6124 | 
             
                #       ],
         | 
| 5205 6125 | 
             
                #       resource_aws_s3_bucket_owner_name: [
         | 
| 5206 6126 | 
             
                #         {
         | 
| 5207 6127 | 
             
                #           value: "NonEmptyString",
         | 
| 5208 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6128 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5209 6129 | 
             
                #         },
         | 
| 5210 6130 | 
             
                #       ],
         | 
| 5211 6131 | 
             
                #       resource_aws_iam_access_key_user_name: [
         | 
| 5212 6132 | 
             
                #         {
         | 
| 5213 6133 | 
             
                #           value: "NonEmptyString",
         | 
| 5214 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6134 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5215 6135 | 
             
                #         },
         | 
| 5216 6136 | 
             
                #       ],
         | 
| 5217 6137 | 
             
                #       resource_aws_iam_access_key_status: [
         | 
| 5218 6138 | 
             
                #         {
         | 
| 5219 6139 | 
             
                #           value: "NonEmptyString",
         | 
| 5220 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6140 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5221 6141 | 
             
                #         },
         | 
| 5222 6142 | 
             
                #       ],
         | 
| 5223 6143 | 
             
                #       resource_aws_iam_access_key_created_at: [
         | 
| @@ -5233,19 +6153,19 @@ module Aws::SecurityHub | |
| 5233 6153 | 
             
                #       resource_container_name: [
         | 
| 5234 6154 | 
             
                #         {
         | 
| 5235 6155 | 
             
                #           value: "NonEmptyString",
         | 
| 5236 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6156 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5237 6157 | 
             
                #         },
         | 
| 5238 6158 | 
             
                #       ],
         | 
| 5239 6159 | 
             
                #       resource_container_image_id: [
         | 
| 5240 6160 | 
             
                #         {
         | 
| 5241 6161 | 
             
                #           value: "NonEmptyString",
         | 
| 5242 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6162 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5243 6163 | 
             
                #         },
         | 
| 5244 6164 | 
             
                #       ],
         | 
| 5245 6165 | 
             
                #       resource_container_image_name: [
         | 
| 5246 6166 | 
             
                #         {
         | 
| 5247 6167 | 
             
                #           value: "NonEmptyString",
         | 
| 5248 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6168 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5249 6169 | 
             
                #         },
         | 
| 5250 6170 | 
             
                #       ],
         | 
| 5251 6171 | 
             
                #       resource_container_launched_at: [
         | 
| @@ -5262,55 +6182,55 @@ module Aws::SecurityHub | |
| 5262 6182 | 
             
                #         {
         | 
| 5263 6183 | 
             
                #           key: "NonEmptyString",
         | 
| 5264 6184 | 
             
                #           value: "NonEmptyString",
         | 
| 5265 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS
         | 
| 6185 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
         | 
| 5266 6186 | 
             
                #         },
         | 
| 5267 6187 | 
             
                #       ],
         | 
| 5268 6188 | 
             
                #       compliance_status: [
         | 
| 5269 6189 | 
             
                #         {
         | 
| 5270 6190 | 
             
                #           value: "NonEmptyString",
         | 
| 5271 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6191 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5272 6192 | 
             
                #         },
         | 
| 5273 6193 | 
             
                #       ],
         | 
| 5274 6194 | 
             
                #       verification_state: [
         | 
| 5275 6195 | 
             
                #         {
         | 
| 5276 6196 | 
             
                #           value: "NonEmptyString",
         | 
| 5277 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6197 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5278 6198 | 
             
                #         },
         | 
| 5279 6199 | 
             
                #       ],
         | 
| 5280 6200 | 
             
                #       workflow_state: [
         | 
| 5281 6201 | 
             
                #         {
         | 
| 5282 6202 | 
             
                #           value: "NonEmptyString",
         | 
| 5283 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6203 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5284 6204 | 
             
                #         },
         | 
| 5285 6205 | 
             
                #       ],
         | 
| 5286 6206 | 
             
                #       workflow_status: [
         | 
| 5287 6207 | 
             
                #         {
         | 
| 5288 6208 | 
             
                #           value: "NonEmptyString",
         | 
| 5289 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6209 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5290 6210 | 
             
                #         },
         | 
| 5291 6211 | 
             
                #       ],
         | 
| 5292 6212 | 
             
                #       record_state: [
         | 
| 5293 6213 | 
             
                #         {
         | 
| 5294 6214 | 
             
                #           value: "NonEmptyString",
         | 
| 5295 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6215 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5296 6216 | 
             
                #         },
         | 
| 5297 6217 | 
             
                #       ],
         | 
| 5298 6218 | 
             
                #       related_findings_product_arn: [
         | 
| 5299 6219 | 
             
                #         {
         | 
| 5300 6220 | 
             
                #           value: "NonEmptyString",
         | 
| 5301 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6221 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5302 6222 | 
             
                #         },
         | 
| 5303 6223 | 
             
                #       ],
         | 
| 5304 6224 | 
             
                #       related_findings_id: [
         | 
| 5305 6225 | 
             
                #         {
         | 
| 5306 6226 | 
             
                #           value: "NonEmptyString",
         | 
| 5307 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6227 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5308 6228 | 
             
                #         },
         | 
| 5309 6229 | 
             
                #       ],
         | 
| 5310 6230 | 
             
                #       note_text: [
         | 
| 5311 6231 | 
             
                #         {
         | 
| 5312 6232 | 
             
                #           value: "NonEmptyString",
         | 
| 5313 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6233 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5314 6234 | 
             
                #         },
         | 
| 5315 6235 | 
             
                #       ],
         | 
| 5316 6236 | 
             
                #       note_updated_at: [
         | 
| @@ -5326,7 +6246,7 @@ module Aws::SecurityHub | |
| 5326 6246 | 
             
                #       note_updated_by: [
         | 
| 5327 6247 | 
             
                #         {
         | 
| 5328 6248 | 
             
                #           value: "NonEmptyString",
         | 
| 5329 | 
            -
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX
         | 
| 6249 | 
            +
                #           comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
         | 
| 5330 6250 | 
             
                #         },
         | 
| 5331 6251 | 
             
                #       ],
         | 
| 5332 6252 | 
             
                #       keyword: [
         | 
| @@ -5347,6 +6267,33 @@ module Aws::SecurityHub | |
| 5347 6267 | 
             
                  req.send_request(options)
         | 
| 5348 6268 | 
             
                end
         | 
| 5349 6269 |  | 
| 6270 | 
            +
                # Updates configuration options for Security Hub.
         | 
| 6271 | 
            +
                #
         | 
| 6272 | 
            +
                # @option params [Boolean] :auto_enable_controls
         | 
| 6273 | 
            +
                #   Whether to automatically enable new controls when they are added to
         | 
| 6274 | 
            +
                #   standards that are enabled.
         | 
| 6275 | 
            +
                #
         | 
| 6276 | 
            +
                #   By default, this is set to `true`, and new controls are enabled
         | 
| 6277 | 
            +
                #   automatically. To not automatically enable new controls, set this to
         | 
| 6278 | 
            +
                #   `false`.
         | 
| 6279 | 
            +
                #
         | 
| 6280 | 
            +
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         | 
| 6281 | 
            +
                #
         | 
| 6282 | 
            +
                # @example Request syntax with placeholder values
         | 
| 6283 | 
            +
                #
         | 
| 6284 | 
            +
                #   resp = client.update_security_hub_configuration({
         | 
| 6285 | 
            +
                #     auto_enable_controls: false,
         | 
| 6286 | 
            +
                #   })
         | 
| 6287 | 
            +
                #
         | 
| 6288 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateSecurityHubConfiguration AWS API Documentation
         | 
| 6289 | 
            +
                #
         | 
| 6290 | 
            +
                # @overload update_security_hub_configuration(params = {})
         | 
| 6291 | 
            +
                # @param [Hash] params ({})
         | 
| 6292 | 
            +
                def update_security_hub_configuration(params = {}, options = {})
         | 
| 6293 | 
            +
                  req = build_request(:update_security_hub_configuration, params)
         | 
| 6294 | 
            +
                  req.send_request(options)
         | 
| 6295 | 
            +
                end
         | 
| 6296 | 
            +
             | 
| 5350 6297 | 
             
                # Used to control whether an individual security standard control is
         | 
| 5351 6298 | 
             
                # enabled or disabled.
         | 
| 5352 6299 | 
             
                #
         | 
| @@ -5358,7 +6305,7 @@ module Aws::SecurityHub | |
| 5358 6305 | 
             
                #
         | 
| 5359 6306 | 
             
                # @option params [String] :disabled_reason
         | 
| 5360 6307 | 
             
                #   A description of the reason why you are disabling a security standard
         | 
| 5361 | 
            -
                #   control.
         | 
| 6308 | 
            +
                #   control. If you are disabling a control, then this is required.
         | 
| 5362 6309 | 
             
                #
         | 
| 5363 6310 | 
             
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         | 
| 5364 6311 | 
             
                #
         | 
| @@ -5392,7 +6339,7 @@ module Aws::SecurityHub | |
| 5392 6339 | 
             
                    params: params,
         | 
| 5393 6340 | 
             
                    config: config)
         | 
| 5394 6341 | 
             
                  context[:gem_name] = 'aws-sdk-securityhub'
         | 
| 5395 | 
            -
                  context[:gem_version] = '1. | 
| 6342 | 
            +
                  context[:gem_version] = '1.31.0'
         | 
| 5396 6343 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 5397 6344 | 
             
                end
         | 
| 5398 6345 |  |