aws-sdk-securityhub 1.27.1 → 1.32.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 +4 -2
- data/lib/aws-sdk-securityhub/client.rb +1259 -299
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63932fd1ce625cec5453b939af90ffa7f77546d7324135170792577ffd791cfc
|
4
|
+
data.tar.gz: 0d5ee5baa4d0d2eaa3452369a78f7ef51120b26f739a0204483c62740f169e0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a164aa9f60a716f9a0b472b72e49f0191618119ba6a3d8f25a42f8f2ad2fd92f8a81e13a53d1cfed5f92335da7678fecc21be97fe676440e6597fddafb3dc85a
|
7
|
+
data.tar.gz: 73b42cee94f87e5c016876fcc7ae93e4298bcb4842f653f52b51a6c9088e1b1883ec7cd4f645dfbaa90b5a8768828d8b1cb22cabe58790e65b2312e1e43a2f80
|
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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-securityhub/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::SecurityHub
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.32.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:
|
@@ -83,13 +85,28 @@ module Aws::SecurityHub
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::SecurityHub
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -525,6 +542,10 @@ module Aws::SecurityHub
|
|
525
542
|
# network: {
|
526
543
|
# direction: "IN", # accepts IN, OUT
|
527
544
|
# protocol: "NonEmptyString",
|
545
|
+
# open_port_range: {
|
546
|
+
# begin: 1,
|
547
|
+
# end: 1,
|
548
|
+
# },
|
528
549
|
# source_ip_v4: "NonEmptyString",
|
529
550
|
# source_ip_v6: "NonEmptyString",
|
530
551
|
# source_port: 1,
|
@@ -535,6 +556,54 @@ module Aws::SecurityHub
|
|
535
556
|
# destination_port: 1,
|
536
557
|
# destination_domain: "NonEmptyString",
|
537
558
|
# },
|
559
|
+
# network_path: [
|
560
|
+
# {
|
561
|
+
# component_id: "NonEmptyString",
|
562
|
+
# component_type: "NonEmptyString",
|
563
|
+
# egress: {
|
564
|
+
# protocol: "NonEmptyString",
|
565
|
+
# destination: {
|
566
|
+
# address: ["NonEmptyString"],
|
567
|
+
# port_ranges: [
|
568
|
+
# {
|
569
|
+
# begin: 1,
|
570
|
+
# end: 1,
|
571
|
+
# },
|
572
|
+
# ],
|
573
|
+
# },
|
574
|
+
# source: {
|
575
|
+
# address: ["NonEmptyString"],
|
576
|
+
# port_ranges: [
|
577
|
+
# {
|
578
|
+
# begin: 1,
|
579
|
+
# end: 1,
|
580
|
+
# },
|
581
|
+
# ],
|
582
|
+
# },
|
583
|
+
# },
|
584
|
+
# ingress: {
|
585
|
+
# protocol: "NonEmptyString",
|
586
|
+
# destination: {
|
587
|
+
# address: ["NonEmptyString"],
|
588
|
+
# port_ranges: [
|
589
|
+
# {
|
590
|
+
# begin: 1,
|
591
|
+
# end: 1,
|
592
|
+
# },
|
593
|
+
# ],
|
594
|
+
# },
|
595
|
+
# source: {
|
596
|
+
# address: ["NonEmptyString"],
|
597
|
+
# port_ranges: [
|
598
|
+
# {
|
599
|
+
# begin: 1,
|
600
|
+
# end: 1,
|
601
|
+
# },
|
602
|
+
# ],
|
603
|
+
# },
|
604
|
+
# },
|
605
|
+
# },
|
606
|
+
# ],
|
538
607
|
# process: {
|
539
608
|
# name: "NonEmptyString",
|
540
609
|
# path: "NonEmptyString",
|
@@ -563,6 +632,13 @@ module Aws::SecurityHub
|
|
563
632
|
# "NonEmptyString" => "NonEmptyString",
|
564
633
|
# },
|
565
634
|
# details: {
|
635
|
+
# aws_auto_scaling_auto_scaling_group: {
|
636
|
+
# launch_configuration_name: "NonEmptyString",
|
637
|
+
# load_balancer_names: ["NonEmptyString"],
|
638
|
+
# health_check_type: "NonEmptyString",
|
639
|
+
# health_check_grace_period: 1,
|
640
|
+
# created_time: "NonEmptyString",
|
641
|
+
# },
|
566
642
|
# aws_code_build_project: {
|
567
643
|
# encryption_key: "NonEmptyString",
|
568
644
|
# environment: {
|
@@ -710,6 +786,52 @@ module Aws::SecurityHub
|
|
710
786
|
# },
|
711
787
|
# ],
|
712
788
|
# },
|
789
|
+
# aws_ec2_volume: {
|
790
|
+
# create_time: "NonEmptyString",
|
791
|
+
# encrypted: false,
|
792
|
+
# size: 1,
|
793
|
+
# snapshot_id: "NonEmptyString",
|
794
|
+
# status: "NonEmptyString",
|
795
|
+
# kms_key_id: "NonEmptyString",
|
796
|
+
# attachments: [
|
797
|
+
# {
|
798
|
+
# attach_time: "NonEmptyString",
|
799
|
+
# delete_on_termination: false,
|
800
|
+
# instance_id: "NonEmptyString",
|
801
|
+
# status: "NonEmptyString",
|
802
|
+
# },
|
803
|
+
# ],
|
804
|
+
# },
|
805
|
+
# aws_ec2_vpc: {
|
806
|
+
# cidr_block_association_set: [
|
807
|
+
# {
|
808
|
+
# association_id: "NonEmptyString",
|
809
|
+
# cidr_block: "NonEmptyString",
|
810
|
+
# cidr_block_state: "NonEmptyString",
|
811
|
+
# },
|
812
|
+
# ],
|
813
|
+
# ipv_6_cidr_block_association_set: [
|
814
|
+
# {
|
815
|
+
# association_id: "NonEmptyString",
|
816
|
+
# ipv_6_cidr_block: "NonEmptyString",
|
817
|
+
# cidr_block_state: "NonEmptyString",
|
818
|
+
# },
|
819
|
+
# ],
|
820
|
+
# dhcp_options_id: "NonEmptyString",
|
821
|
+
# state: "NonEmptyString",
|
822
|
+
# },
|
823
|
+
# aws_ec2_eip: {
|
824
|
+
# instance_id: "NonEmptyString",
|
825
|
+
# public_ip: "NonEmptyString",
|
826
|
+
# allocation_id: "NonEmptyString",
|
827
|
+
# association_id: "NonEmptyString",
|
828
|
+
# domain: "NonEmptyString",
|
829
|
+
# public_ipv_4_pool: "NonEmptyString",
|
830
|
+
# network_border_group: "NonEmptyString",
|
831
|
+
# network_interface_id: "NonEmptyString",
|
832
|
+
# network_interface_owner_id: "NonEmptyString",
|
833
|
+
# private_ip_address: "NonEmptyString",
|
834
|
+
# },
|
713
835
|
# aws_elbv_2_load_balancer: {
|
714
836
|
# availability_zones: [
|
715
837
|
# {
|
@@ -780,6 +902,18 @@ module Aws::SecurityHub
|
|
780
902
|
# server_side_encryption: "NonEmptyString",
|
781
903
|
# ssekms_key_id: "NonEmptyString",
|
782
904
|
# },
|
905
|
+
# aws_secrets_manager_secret: {
|
906
|
+
# rotation_rules: {
|
907
|
+
# automatically_after_days: 1,
|
908
|
+
# },
|
909
|
+
# rotation_occurred_within_frequency: false,
|
910
|
+
# kms_key_id: "NonEmptyString",
|
911
|
+
# rotation_enabled: false,
|
912
|
+
# rotation_lambda_arn: "NonEmptyString",
|
913
|
+
# deleted: false,
|
914
|
+
# name: "NonEmptyString",
|
915
|
+
# description: "NonEmptyString",
|
916
|
+
# },
|
783
917
|
# aws_iam_access_key: {
|
784
918
|
# user_name: "NonEmptyString",
|
785
919
|
# status: "Active", # accepts Active, Inactive
|
@@ -788,6 +922,159 @@ module Aws::SecurityHub
|
|
788
922
|
# principal_type: "NonEmptyString",
|
789
923
|
# principal_name: "NonEmptyString",
|
790
924
|
# },
|
925
|
+
# aws_iam_user: {
|
926
|
+
# attached_managed_policies: [
|
927
|
+
# {
|
928
|
+
# policy_name: "NonEmptyString",
|
929
|
+
# policy_arn: "NonEmptyString",
|
930
|
+
# },
|
931
|
+
# ],
|
932
|
+
# create_date: "NonEmptyString",
|
933
|
+
# group_list: ["NonEmptyString"],
|
934
|
+
# path: "NonEmptyString",
|
935
|
+
# permissions_boundary: {
|
936
|
+
# permissions_boundary_arn: "NonEmptyString",
|
937
|
+
# permissions_boundary_type: "NonEmptyString",
|
938
|
+
# },
|
939
|
+
# user_id: "NonEmptyString",
|
940
|
+
# user_name: "NonEmptyString",
|
941
|
+
# user_policy_list: [
|
942
|
+
# {
|
943
|
+
# policy_name: "NonEmptyString",
|
944
|
+
# },
|
945
|
+
# ],
|
946
|
+
# },
|
947
|
+
# aws_iam_policy: {
|
948
|
+
# attachment_count: 1,
|
949
|
+
# create_date: "NonEmptyString",
|
950
|
+
# default_version_id: "NonEmptyString",
|
951
|
+
# description: "NonEmptyString",
|
952
|
+
# is_attachable: false,
|
953
|
+
# path: "NonEmptyString",
|
954
|
+
# permissions_boundary_usage_count: 1,
|
955
|
+
# policy_id: "NonEmptyString",
|
956
|
+
# policy_name: "NonEmptyString",
|
957
|
+
# policy_version_list: [
|
958
|
+
# {
|
959
|
+
# version_id: "NonEmptyString",
|
960
|
+
# is_default_version: false,
|
961
|
+
# create_date: "NonEmptyString",
|
962
|
+
# },
|
963
|
+
# ],
|
964
|
+
# update_date: "NonEmptyString",
|
965
|
+
# },
|
966
|
+
# aws_dynamo_db_table: {
|
967
|
+
# attribute_definitions: [
|
968
|
+
# {
|
969
|
+
# attribute_name: "NonEmptyString",
|
970
|
+
# attribute_type: "NonEmptyString",
|
971
|
+
# },
|
972
|
+
# ],
|
973
|
+
# billing_mode_summary: {
|
974
|
+
# billing_mode: "NonEmptyString",
|
975
|
+
# last_update_to_pay_per_request_date_time: "NonEmptyString",
|
976
|
+
# },
|
977
|
+
# creation_date_time: "NonEmptyString",
|
978
|
+
# global_secondary_indexes: [
|
979
|
+
# {
|
980
|
+
# backfilling: false,
|
981
|
+
# index_arn: "NonEmptyString",
|
982
|
+
# index_name: "NonEmptyString",
|
983
|
+
# index_size_bytes: 1,
|
984
|
+
# index_status: "NonEmptyString",
|
985
|
+
# item_count: 1,
|
986
|
+
# key_schema: [
|
987
|
+
# {
|
988
|
+
# attribute_name: "NonEmptyString",
|
989
|
+
# key_type: "NonEmptyString",
|
990
|
+
# },
|
991
|
+
# ],
|
992
|
+
# projection: {
|
993
|
+
# non_key_attributes: ["NonEmptyString"],
|
994
|
+
# projection_type: "NonEmptyString",
|
995
|
+
# },
|
996
|
+
# provisioned_throughput: {
|
997
|
+
# last_decrease_date_time: "NonEmptyString",
|
998
|
+
# last_increase_date_time: "NonEmptyString",
|
999
|
+
# number_of_decreases_today: 1,
|
1000
|
+
# read_capacity_units: 1,
|
1001
|
+
# write_capacity_units: 1,
|
1002
|
+
# },
|
1003
|
+
# },
|
1004
|
+
# ],
|
1005
|
+
# global_table_version: "NonEmptyString",
|
1006
|
+
# item_count: 1,
|
1007
|
+
# key_schema: [
|
1008
|
+
# {
|
1009
|
+
# attribute_name: "NonEmptyString",
|
1010
|
+
# key_type: "NonEmptyString",
|
1011
|
+
# },
|
1012
|
+
# ],
|
1013
|
+
# latest_stream_arn: "NonEmptyString",
|
1014
|
+
# latest_stream_label: "NonEmptyString",
|
1015
|
+
# local_secondary_indexes: [
|
1016
|
+
# {
|
1017
|
+
# index_arn: "NonEmptyString",
|
1018
|
+
# index_name: "NonEmptyString",
|
1019
|
+
# key_schema: [
|
1020
|
+
# {
|
1021
|
+
# attribute_name: "NonEmptyString",
|
1022
|
+
# key_type: "NonEmptyString",
|
1023
|
+
# },
|
1024
|
+
# ],
|
1025
|
+
# projection: {
|
1026
|
+
# non_key_attributes: ["NonEmptyString"],
|
1027
|
+
# projection_type: "NonEmptyString",
|
1028
|
+
# },
|
1029
|
+
# },
|
1030
|
+
# ],
|
1031
|
+
# provisioned_throughput: {
|
1032
|
+
# last_decrease_date_time: "NonEmptyString",
|
1033
|
+
# last_increase_date_time: "NonEmptyString",
|
1034
|
+
# number_of_decreases_today: 1,
|
1035
|
+
# read_capacity_units: 1,
|
1036
|
+
# write_capacity_units: 1,
|
1037
|
+
# },
|
1038
|
+
# replicas: [
|
1039
|
+
# {
|
1040
|
+
# global_secondary_indexes: [
|
1041
|
+
# {
|
1042
|
+
# index_name: "NonEmptyString",
|
1043
|
+
# provisioned_throughput_override: {
|
1044
|
+
# read_capacity_units: 1,
|
1045
|
+
# },
|
1046
|
+
# },
|
1047
|
+
# ],
|
1048
|
+
# kms_master_key_id: "NonEmptyString",
|
1049
|
+
# provisioned_throughput_override: {
|
1050
|
+
# read_capacity_units: 1,
|
1051
|
+
# },
|
1052
|
+
# region_name: "NonEmptyString",
|
1053
|
+
# replica_status: "NonEmptyString",
|
1054
|
+
# replica_status_description: "NonEmptyString",
|
1055
|
+
# },
|
1056
|
+
# ],
|
1057
|
+
# restore_summary: {
|
1058
|
+
# source_backup_arn: "NonEmptyString",
|
1059
|
+
# source_table_arn: "NonEmptyString",
|
1060
|
+
# restore_date_time: "NonEmptyString",
|
1061
|
+
# restore_in_progress: false,
|
1062
|
+
# },
|
1063
|
+
# sse_description: {
|
1064
|
+
# inaccessible_encryption_date_time: "NonEmptyString",
|
1065
|
+
# status: "NonEmptyString",
|
1066
|
+
# sse_type: "NonEmptyString",
|
1067
|
+
# kms_master_key_arn: "NonEmptyString",
|
1068
|
+
# },
|
1069
|
+
# stream_specification: {
|
1070
|
+
# stream_enabled: false,
|
1071
|
+
# stream_view_type: "NonEmptyString",
|
1072
|
+
# },
|
1073
|
+
# table_id: "NonEmptyString",
|
1074
|
+
# table_name: "NonEmptyString",
|
1075
|
+
# table_size_bytes: 1,
|
1076
|
+
# table_status: "NonEmptyString",
|
1077
|
+
# },
|
791
1078
|
# aws_iam_role: {
|
792
1079
|
# assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument",
|
793
1080
|
# create_date: "NonEmptyString",
|
@@ -803,6 +1090,7 @@ module Aws::SecurityHub
|
|
803
1090
|
# key_manager: "NonEmptyString",
|
804
1091
|
# key_state: "NonEmptyString",
|
805
1092
|
# origin: "NonEmptyString",
|
1093
|
+
# description: "NonEmptyString",
|
806
1094
|
# },
|
807
1095
|
# aws_lambda_function: {
|
808
1096
|
# code: {
|
@@ -890,6 +1178,116 @@ module Aws::SecurityHub
|
|
890
1178
|
# status: "NonEmptyString",
|
891
1179
|
# },
|
892
1180
|
# ],
|
1181
|
+
# multi_az: false,
|
1182
|
+
# enhanced_monitoring_resource_arn: "NonEmptyString",
|
1183
|
+
# db_instance_status: "NonEmptyString",
|
1184
|
+
# master_username: "NonEmptyString",
|
1185
|
+
# allocated_storage: 1,
|
1186
|
+
# preferred_backup_window: "NonEmptyString",
|
1187
|
+
# backup_retention_period: 1,
|
1188
|
+
# db_security_groups: ["NonEmptyString"],
|
1189
|
+
# db_parameter_groups: [
|
1190
|
+
# {
|
1191
|
+
# db_parameter_group_name: "NonEmptyString",
|
1192
|
+
# parameter_apply_status: "NonEmptyString",
|
1193
|
+
# },
|
1194
|
+
# ],
|
1195
|
+
# availability_zone: "NonEmptyString",
|
1196
|
+
# db_subnet_group: {
|
1197
|
+
# db_subnet_group_name: "NonEmptyString",
|
1198
|
+
# db_subnet_group_description: "NonEmptyString",
|
1199
|
+
# vpc_id: "NonEmptyString",
|
1200
|
+
# subnet_group_status: "NonEmptyString",
|
1201
|
+
# subnets: [
|
1202
|
+
# {
|
1203
|
+
# subnet_identifier: "NonEmptyString",
|
1204
|
+
# subnet_availability_zone: {
|
1205
|
+
# name: "NonEmptyString",
|
1206
|
+
# },
|
1207
|
+
# subnet_status: "NonEmptyString",
|
1208
|
+
# },
|
1209
|
+
# ],
|
1210
|
+
# db_subnet_group_arn: "NonEmptyString",
|
1211
|
+
# },
|
1212
|
+
# preferred_maintenance_window: "NonEmptyString",
|
1213
|
+
# pending_modified_values: {
|
1214
|
+
# db_instance_class: "NonEmptyString",
|
1215
|
+
# allocated_storage: 1,
|
1216
|
+
# master_user_password: "NonEmptyString",
|
1217
|
+
# port: 1,
|
1218
|
+
# backup_retention_period: 1,
|
1219
|
+
# multi_az: false,
|
1220
|
+
# engine_version: "NonEmptyString",
|
1221
|
+
# license_model: "NonEmptyString",
|
1222
|
+
# iops: 1,
|
1223
|
+
# db_instance_identifier: "NonEmptyString",
|
1224
|
+
# storage_type: "NonEmptyString",
|
1225
|
+
# ca_certificate_identifier: "NonEmptyString",
|
1226
|
+
# db_subnet_group_name: "NonEmptyString",
|
1227
|
+
# pending_cloud_watch_logs_exports: {
|
1228
|
+
# log_types_to_enable: ["NonEmptyString"],
|
1229
|
+
# log_types_to_disable: ["NonEmptyString"],
|
1230
|
+
# },
|
1231
|
+
# processor_features: [
|
1232
|
+
# {
|
1233
|
+
# name: "NonEmptyString",
|
1234
|
+
# value: "NonEmptyString",
|
1235
|
+
# },
|
1236
|
+
# ],
|
1237
|
+
# },
|
1238
|
+
# latest_restorable_time: "NonEmptyString",
|
1239
|
+
# auto_minor_version_upgrade: false,
|
1240
|
+
# read_replica_source_db_instance_identifier: "NonEmptyString",
|
1241
|
+
# read_replica_db_instance_identifiers: ["NonEmptyString"],
|
1242
|
+
# read_replica_db_cluster_identifiers: ["NonEmptyString"],
|
1243
|
+
# license_model: "NonEmptyString",
|
1244
|
+
# iops: 1,
|
1245
|
+
# option_group_memberships: [
|
1246
|
+
# {
|
1247
|
+
# option_group_name: "NonEmptyString",
|
1248
|
+
# status: "NonEmptyString",
|
1249
|
+
# },
|
1250
|
+
# ],
|
1251
|
+
# character_set_name: "NonEmptyString",
|
1252
|
+
# secondary_availability_zone: "NonEmptyString",
|
1253
|
+
# status_infos: [
|
1254
|
+
# {
|
1255
|
+
# status_type: "NonEmptyString",
|
1256
|
+
# normal: false,
|
1257
|
+
# status: "NonEmptyString",
|
1258
|
+
# message: "NonEmptyString",
|
1259
|
+
# },
|
1260
|
+
# ],
|
1261
|
+
# storage_type: "NonEmptyString",
|
1262
|
+
# domain_memberships: [
|
1263
|
+
# {
|
1264
|
+
# domain: "NonEmptyString",
|
1265
|
+
# status: "NonEmptyString",
|
1266
|
+
# fqdn: "NonEmptyString",
|
1267
|
+
# iam_role_name: "NonEmptyString",
|
1268
|
+
# },
|
1269
|
+
# ],
|
1270
|
+
# copy_tags_to_snapshot: false,
|
1271
|
+
# monitoring_interval: 1,
|
1272
|
+
# monitoring_role_arn: "NonEmptyString",
|
1273
|
+
# promotion_tier: 1,
|
1274
|
+
# timezone: "NonEmptyString",
|
1275
|
+
# performance_insights_enabled: false,
|
1276
|
+
# performance_insights_kms_key_id: "NonEmptyString",
|
1277
|
+
# performance_insights_retention_period: 1,
|
1278
|
+
# enabled_cloud_watch_logs_exports: ["NonEmptyString"],
|
1279
|
+
# processor_features: [
|
1280
|
+
# {
|
1281
|
+
# name: "NonEmptyString",
|
1282
|
+
# value: "NonEmptyString",
|
1283
|
+
# },
|
1284
|
+
# ],
|
1285
|
+
# listener_endpoint: {
|
1286
|
+
# address: "NonEmptyString",
|
1287
|
+
# port: 1,
|
1288
|
+
# hosted_zone_id: "NonEmptyString",
|
1289
|
+
# },
|
1290
|
+
# max_allocated_storage: 1,
|
893
1291
|
# },
|
894
1292
|
# aws_sns_topic: {
|
895
1293
|
# kms_master_key_id: "NonEmptyString",
|
@@ -931,6 +1329,128 @@ module Aws::SecurityHub
|
|
931
1329
|
# ],
|
932
1330
|
# web_acl_id: "NonEmptyString",
|
933
1331
|
# },
|
1332
|
+
# aws_rds_db_snapshot: {
|
1333
|
+
# db_snapshot_identifier: "NonEmptyString",
|
1334
|
+
# db_instance_identifier: "NonEmptyString",
|
1335
|
+
# snapshot_create_time: "NonEmptyString",
|
1336
|
+
# engine: "NonEmptyString",
|
1337
|
+
# allocated_storage: 1,
|
1338
|
+
# status: "NonEmptyString",
|
1339
|
+
# port: 1,
|
1340
|
+
# availability_zone: "NonEmptyString",
|
1341
|
+
# vpc_id: "NonEmptyString",
|
1342
|
+
# instance_create_time: "NonEmptyString",
|
1343
|
+
# master_username: "NonEmptyString",
|
1344
|
+
# engine_version: "NonEmptyString",
|
1345
|
+
# license_model: "NonEmptyString",
|
1346
|
+
# snapshot_type: "NonEmptyString",
|
1347
|
+
# iops: 1,
|
1348
|
+
# option_group_name: "NonEmptyString",
|
1349
|
+
# percent_progress: 1,
|
1350
|
+
# source_region: "NonEmptyString",
|
1351
|
+
# source_db_snapshot_identifier: "NonEmptyString",
|
1352
|
+
# storage_type: "NonEmptyString",
|
1353
|
+
# tde_credential_arn: "NonEmptyString",
|
1354
|
+
# encrypted: false,
|
1355
|
+
# kms_key_id: "NonEmptyString",
|
1356
|
+
# timezone: "NonEmptyString",
|
1357
|
+
# iam_database_authentication_enabled: false,
|
1358
|
+
# processor_features: [
|
1359
|
+
# {
|
1360
|
+
# name: "NonEmptyString",
|
1361
|
+
# value: "NonEmptyString",
|
1362
|
+
# },
|
1363
|
+
# ],
|
1364
|
+
# dbi_resource_id: "NonEmptyString",
|
1365
|
+
# },
|
1366
|
+
# aws_rds_db_cluster_snapshot: {
|
1367
|
+
# availability_zones: ["NonEmptyString"],
|
1368
|
+
# snapshot_create_time: "NonEmptyString",
|
1369
|
+
# engine: "NonEmptyString",
|
1370
|
+
# allocated_storage: 1,
|
1371
|
+
# status: "NonEmptyString",
|
1372
|
+
# port: 1,
|
1373
|
+
# vpc_id: "NonEmptyString",
|
1374
|
+
# cluster_create_time: "NonEmptyString",
|
1375
|
+
# master_username: "NonEmptyString",
|
1376
|
+
# engine_version: "NonEmptyString",
|
1377
|
+
# license_model: "NonEmptyString",
|
1378
|
+
# snapshot_type: "NonEmptyString",
|
1379
|
+
# percent_progress: 1,
|
1380
|
+
# storage_encrypted: false,
|
1381
|
+
# kms_key_id: "NonEmptyString",
|
1382
|
+
# db_cluster_identifier: "NonEmptyString",
|
1383
|
+
# db_cluster_snapshot_identifier: "NonEmptyString",
|
1384
|
+
# iam_database_authentication_enabled: false,
|
1385
|
+
# },
|
1386
|
+
# aws_rds_db_cluster: {
|
1387
|
+
# allocated_storage: 1,
|
1388
|
+
# availability_zones: ["NonEmptyString"],
|
1389
|
+
# backup_retention_period: 1,
|
1390
|
+
# database_name: "NonEmptyString",
|
1391
|
+
# status: "NonEmptyString",
|
1392
|
+
# endpoint: "NonEmptyString",
|
1393
|
+
# reader_endpoint: "NonEmptyString",
|
1394
|
+
# custom_endpoints: ["NonEmptyString"],
|
1395
|
+
# multi_az: false,
|
1396
|
+
# engine: "NonEmptyString",
|
1397
|
+
# engine_version: "NonEmptyString",
|
1398
|
+
# port: 1,
|
1399
|
+
# master_username: "NonEmptyString",
|
1400
|
+
# preferred_backup_window: "NonEmptyString",
|
1401
|
+
# preferred_maintenance_window: "NonEmptyString",
|
1402
|
+
# read_replica_identifiers: ["NonEmptyString"],
|
1403
|
+
# vpc_security_groups: [
|
1404
|
+
# {
|
1405
|
+
# vpc_security_group_id: "NonEmptyString",
|
1406
|
+
# status: "NonEmptyString",
|
1407
|
+
# },
|
1408
|
+
# ],
|
1409
|
+
# hosted_zone_id: "NonEmptyString",
|
1410
|
+
# storage_encrypted: false,
|
1411
|
+
# kms_key_id: "NonEmptyString",
|
1412
|
+
# db_cluster_resource_id: "NonEmptyString",
|
1413
|
+
# associated_roles: [
|
1414
|
+
# {
|
1415
|
+
# role_arn: "NonEmptyString",
|
1416
|
+
# status: "NonEmptyString",
|
1417
|
+
# },
|
1418
|
+
# ],
|
1419
|
+
# cluster_create_time: "NonEmptyString",
|
1420
|
+
# enabled_cloud_watch_logs_exports: ["NonEmptyString"],
|
1421
|
+
# engine_mode: "NonEmptyString",
|
1422
|
+
# deletion_protection: false,
|
1423
|
+
# http_endpoint_enabled: false,
|
1424
|
+
# activity_stream_status: "NonEmptyString",
|
1425
|
+
# copy_tags_to_snapshot: false,
|
1426
|
+
# cross_account_clone: false,
|
1427
|
+
# domain_memberships: [
|
1428
|
+
# {
|
1429
|
+
# domain: "NonEmptyString",
|
1430
|
+
# status: "NonEmptyString",
|
1431
|
+
# fqdn: "NonEmptyString",
|
1432
|
+
# iam_role_name: "NonEmptyString",
|
1433
|
+
# },
|
1434
|
+
# ],
|
1435
|
+
# db_cluster_parameter_group: "NonEmptyString",
|
1436
|
+
# db_subnet_group: "NonEmptyString",
|
1437
|
+
# db_cluster_option_group_memberships: [
|
1438
|
+
# {
|
1439
|
+
# db_cluster_option_group_name: "NonEmptyString",
|
1440
|
+
# status: "NonEmptyString",
|
1441
|
+
# },
|
1442
|
+
# ],
|
1443
|
+
# db_cluster_identifier: "NonEmptyString",
|
1444
|
+
# db_cluster_members: [
|
1445
|
+
# {
|
1446
|
+
# is_cluster_writer: false,
|
1447
|
+
# promotion_tier: 1,
|
1448
|
+
# db_instance_identifier: "NonEmptyString",
|
1449
|
+
# db_cluster_parameter_group_status: "NonEmptyString",
|
1450
|
+
# },
|
1451
|
+
# ],
|
1452
|
+
# iam_database_authentication_enabled: false,
|
1453
|
+
# },
|
934
1454
|
# container: {
|
935
1455
|
# name: "NonEmptyString",
|
936
1456
|
# image_id: "NonEmptyString",
|
@@ -970,6 +1490,36 @@ module Aws::SecurityHub
|
|
970
1490
|
# updated_by: "NonEmptyString", # required
|
971
1491
|
# updated_at: "NonEmptyString", # required
|
972
1492
|
# },
|
1493
|
+
# vulnerabilities: [
|
1494
|
+
# {
|
1495
|
+
# id: "NonEmptyString", # required
|
1496
|
+
# vulnerable_packages: [
|
1497
|
+
# {
|
1498
|
+
# name: "NonEmptyString",
|
1499
|
+
# version: "NonEmptyString",
|
1500
|
+
# epoch: "NonEmptyString",
|
1501
|
+
# release: "NonEmptyString",
|
1502
|
+
# architecture: "NonEmptyString",
|
1503
|
+
# },
|
1504
|
+
# ],
|
1505
|
+
# cvss: [
|
1506
|
+
# {
|
1507
|
+
# version: "NonEmptyString",
|
1508
|
+
# base_score: 1.0,
|
1509
|
+
# base_vector: "NonEmptyString",
|
1510
|
+
# },
|
1511
|
+
# ],
|
1512
|
+
# related_vulnerabilities: ["NonEmptyString"],
|
1513
|
+
# vendor: {
|
1514
|
+
# name: "NonEmptyString", # required
|
1515
|
+
# url: "NonEmptyString",
|
1516
|
+
# vendor_severity: "NonEmptyString",
|
1517
|
+
# vendor_created_at: "NonEmptyString",
|
1518
|
+
# vendor_updated_at: "NonEmptyString",
|
1519
|
+
# },
|
1520
|
+
# reference_urls: ["NonEmptyString"],
|
1521
|
+
# },
|
1522
|
+
# ],
|
973
1523
|
# },
|
974
1524
|
# ],
|
975
1525
|
# })
|
@@ -1230,31 +1780,31 @@ module Aws::SecurityHub
|
|
1230
1780
|
# product_arn: [
|
1231
1781
|
# {
|
1232
1782
|
# value: "NonEmptyString",
|
1233
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1783
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1234
1784
|
# },
|
1235
1785
|
# ],
|
1236
1786
|
# aws_account_id: [
|
1237
1787
|
# {
|
1238
1788
|
# value: "NonEmptyString",
|
1239
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1789
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1240
1790
|
# },
|
1241
1791
|
# ],
|
1242
1792
|
# id: [
|
1243
1793
|
# {
|
1244
1794
|
# value: "NonEmptyString",
|
1245
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1795
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1246
1796
|
# },
|
1247
1797
|
# ],
|
1248
1798
|
# generator_id: [
|
1249
1799
|
# {
|
1250
1800
|
# value: "NonEmptyString",
|
1251
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1801
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1252
1802
|
# },
|
1253
1803
|
# ],
|
1254
1804
|
# type: [
|
1255
1805
|
# {
|
1256
1806
|
# value: "NonEmptyString",
|
1257
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1807
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1258
1808
|
# },
|
1259
1809
|
# ],
|
1260
1810
|
# first_observed_at: [
|
@@ -1314,7 +1864,7 @@ module Aws::SecurityHub
|
|
1314
1864
|
# severity_label: [
|
1315
1865
|
# {
|
1316
1866
|
# value: "NonEmptyString",
|
1317
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1867
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1318
1868
|
# },
|
1319
1869
|
# ],
|
1320
1870
|
# confidence: [
|
@@ -1334,87 +1884,87 @@ module Aws::SecurityHub
|
|
1334
1884
|
# title: [
|
1335
1885
|
# {
|
1336
1886
|
# value: "NonEmptyString",
|
1337
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1887
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1338
1888
|
# },
|
1339
1889
|
# ],
|
1340
1890
|
# description: [
|
1341
1891
|
# {
|
1342
1892
|
# value: "NonEmptyString",
|
1343
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1893
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1344
1894
|
# },
|
1345
1895
|
# ],
|
1346
1896
|
# recommendation_text: [
|
1347
1897
|
# {
|
1348
1898
|
# value: "NonEmptyString",
|
1349
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1899
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1350
1900
|
# },
|
1351
1901
|
# ],
|
1352
1902
|
# source_url: [
|
1353
1903
|
# {
|
1354
1904
|
# value: "NonEmptyString",
|
1355
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1905
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1356
1906
|
# },
|
1357
1907
|
# ],
|
1358
1908
|
# product_fields: [
|
1359
1909
|
# {
|
1360
1910
|
# key: "NonEmptyString",
|
1361
1911
|
# value: "NonEmptyString",
|
1362
|
-
# comparison: "EQUALS", # accepts EQUALS
|
1912
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1363
1913
|
# },
|
1364
1914
|
# ],
|
1365
1915
|
# product_name: [
|
1366
1916
|
# {
|
1367
1917
|
# value: "NonEmptyString",
|
1368
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1918
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1369
1919
|
# },
|
1370
1920
|
# ],
|
1371
1921
|
# company_name: [
|
1372
1922
|
# {
|
1373
1923
|
# value: "NonEmptyString",
|
1374
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1924
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1375
1925
|
# },
|
1376
1926
|
# ],
|
1377
1927
|
# user_defined_fields: [
|
1378
1928
|
# {
|
1379
1929
|
# key: "NonEmptyString",
|
1380
1930
|
# value: "NonEmptyString",
|
1381
|
-
# comparison: "EQUALS", # accepts EQUALS
|
1931
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1382
1932
|
# },
|
1383
1933
|
# ],
|
1384
1934
|
# malware_name: [
|
1385
1935
|
# {
|
1386
1936
|
# value: "NonEmptyString",
|
1387
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1937
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1388
1938
|
# },
|
1389
1939
|
# ],
|
1390
1940
|
# malware_type: [
|
1391
1941
|
# {
|
1392
1942
|
# value: "NonEmptyString",
|
1393
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1943
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1394
1944
|
# },
|
1395
1945
|
# ],
|
1396
1946
|
# malware_path: [
|
1397
1947
|
# {
|
1398
1948
|
# value: "NonEmptyString",
|
1399
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1949
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1400
1950
|
# },
|
1401
1951
|
# ],
|
1402
1952
|
# malware_state: [
|
1403
1953
|
# {
|
1404
1954
|
# value: "NonEmptyString",
|
1405
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1955
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1406
1956
|
# },
|
1407
1957
|
# ],
|
1408
1958
|
# network_direction: [
|
1409
1959
|
# {
|
1410
1960
|
# value: "NonEmptyString",
|
1411
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1961
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1412
1962
|
# },
|
1413
1963
|
# ],
|
1414
1964
|
# network_protocol: [
|
1415
1965
|
# {
|
1416
1966
|
# value: "NonEmptyString",
|
1417
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1967
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1418
1968
|
# },
|
1419
1969
|
# ],
|
1420
1970
|
# network_source_ip_v4: [
|
@@ -1437,13 +1987,13 @@ module Aws::SecurityHub
|
|
1437
1987
|
# network_source_domain: [
|
1438
1988
|
# {
|
1439
1989
|
# value: "NonEmptyString",
|
1440
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1990
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1441
1991
|
# },
|
1442
1992
|
# ],
|
1443
1993
|
# network_source_mac: [
|
1444
1994
|
# {
|
1445
1995
|
# value: "NonEmptyString",
|
1446
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1996
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1447
1997
|
# },
|
1448
1998
|
# ],
|
1449
1999
|
# network_destination_ip_v4: [
|
@@ -1466,19 +2016,19 @@ module Aws::SecurityHub
|
|
1466
2016
|
# network_destination_domain: [
|
1467
2017
|
# {
|
1468
2018
|
# value: "NonEmptyString",
|
1469
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2019
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1470
2020
|
# },
|
1471
2021
|
# ],
|
1472
2022
|
# process_name: [
|
1473
2023
|
# {
|
1474
2024
|
# value: "NonEmptyString",
|
1475
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2025
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1476
2026
|
# },
|
1477
2027
|
# ],
|
1478
2028
|
# process_path: [
|
1479
2029
|
# {
|
1480
2030
|
# value: "NonEmptyString",
|
1481
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2031
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1482
2032
|
# },
|
1483
2033
|
# ],
|
1484
2034
|
# process_pid: [
|
@@ -1518,19 +2068,19 @@ module Aws::SecurityHub
|
|
1518
2068
|
# threat_intel_indicator_type: [
|
1519
2069
|
# {
|
1520
2070
|
# value: "NonEmptyString",
|
1521
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2071
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1522
2072
|
# },
|
1523
2073
|
# ],
|
1524
2074
|
# threat_intel_indicator_value: [
|
1525
2075
|
# {
|
1526
2076
|
# value: "NonEmptyString",
|
1527
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2077
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1528
2078
|
# },
|
1529
2079
|
# ],
|
1530
2080
|
# threat_intel_indicator_category: [
|
1531
2081
|
# {
|
1532
2082
|
# value: "NonEmptyString",
|
1533
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2083
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1534
2084
|
# },
|
1535
2085
|
# ],
|
1536
2086
|
# threat_intel_indicator_last_observed_at: [
|
@@ -1546,56 +2096,56 @@ module Aws::SecurityHub
|
|
1546
2096
|
# threat_intel_indicator_source: [
|
1547
2097
|
# {
|
1548
2098
|
# value: "NonEmptyString",
|
1549
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2099
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1550
2100
|
# },
|
1551
2101
|
# ],
|
1552
2102
|
# threat_intel_indicator_source_url: [
|
1553
2103
|
# {
|
1554
2104
|
# value: "NonEmptyString",
|
1555
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2105
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1556
2106
|
# },
|
1557
2107
|
# ],
|
1558
2108
|
# resource_type: [
|
1559
2109
|
# {
|
1560
2110
|
# value: "NonEmptyString",
|
1561
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2111
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1562
2112
|
# },
|
1563
2113
|
# ],
|
1564
2114
|
# resource_id: [
|
1565
2115
|
# {
|
1566
2116
|
# value: "NonEmptyString",
|
1567
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2117
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1568
2118
|
# },
|
1569
2119
|
# ],
|
1570
2120
|
# resource_partition: [
|
1571
2121
|
# {
|
1572
2122
|
# value: "NonEmptyString",
|
1573
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2123
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1574
2124
|
# },
|
1575
2125
|
# ],
|
1576
2126
|
# resource_region: [
|
1577
2127
|
# {
|
1578
2128
|
# value: "NonEmptyString",
|
1579
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2129
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1580
2130
|
# },
|
1581
2131
|
# ],
|
1582
2132
|
# resource_tags: [
|
1583
2133
|
# {
|
1584
2134
|
# key: "NonEmptyString",
|
1585
2135
|
# value: "NonEmptyString",
|
1586
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2136
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1587
2137
|
# },
|
1588
2138
|
# ],
|
1589
2139
|
# resource_aws_ec2_instance_type: [
|
1590
2140
|
# {
|
1591
2141
|
# value: "NonEmptyString",
|
1592
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2142
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1593
2143
|
# },
|
1594
2144
|
# ],
|
1595
2145
|
# resource_aws_ec2_instance_image_id: [
|
1596
2146
|
# {
|
1597
2147
|
# value: "NonEmptyString",
|
1598
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2148
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1599
2149
|
# },
|
1600
2150
|
# ],
|
1601
2151
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -1611,25 +2161,25 @@ module Aws::SecurityHub
|
|
1611
2161
|
# resource_aws_ec2_instance_key_name: [
|
1612
2162
|
# {
|
1613
2163
|
# value: "NonEmptyString",
|
1614
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2164
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1615
2165
|
# },
|
1616
2166
|
# ],
|
1617
2167
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
1618
2168
|
# {
|
1619
2169
|
# value: "NonEmptyString",
|
1620
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2170
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1621
2171
|
# },
|
1622
2172
|
# ],
|
1623
2173
|
# resource_aws_ec2_instance_vpc_id: [
|
1624
2174
|
# {
|
1625
2175
|
# value: "NonEmptyString",
|
1626
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2176
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1627
2177
|
# },
|
1628
2178
|
# ],
|
1629
2179
|
# resource_aws_ec2_instance_subnet_id: [
|
1630
2180
|
# {
|
1631
2181
|
# value: "NonEmptyString",
|
1632
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2182
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1633
2183
|
# },
|
1634
2184
|
# ],
|
1635
2185
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -1645,25 +2195,25 @@ module Aws::SecurityHub
|
|
1645
2195
|
# resource_aws_s3_bucket_owner_id: [
|
1646
2196
|
# {
|
1647
2197
|
# value: "NonEmptyString",
|
1648
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2198
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1649
2199
|
# },
|
1650
2200
|
# ],
|
1651
2201
|
# resource_aws_s3_bucket_owner_name: [
|
1652
2202
|
# {
|
1653
2203
|
# value: "NonEmptyString",
|
1654
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2204
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1655
2205
|
# },
|
1656
2206
|
# ],
|
1657
2207
|
# resource_aws_iam_access_key_user_name: [
|
1658
2208
|
# {
|
1659
2209
|
# value: "NonEmptyString",
|
1660
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2210
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1661
2211
|
# },
|
1662
2212
|
# ],
|
1663
2213
|
# resource_aws_iam_access_key_status: [
|
1664
2214
|
# {
|
1665
2215
|
# value: "NonEmptyString",
|
1666
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2216
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1667
2217
|
# },
|
1668
2218
|
# ],
|
1669
2219
|
# resource_aws_iam_access_key_created_at: [
|
@@ -1679,19 +2229,19 @@ module Aws::SecurityHub
|
|
1679
2229
|
# resource_container_name: [
|
1680
2230
|
# {
|
1681
2231
|
# value: "NonEmptyString",
|
1682
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2232
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1683
2233
|
# },
|
1684
2234
|
# ],
|
1685
2235
|
# resource_container_image_id: [
|
1686
2236
|
# {
|
1687
2237
|
# value: "NonEmptyString",
|
1688
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2238
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1689
2239
|
# },
|
1690
2240
|
# ],
|
1691
2241
|
# resource_container_image_name: [
|
1692
2242
|
# {
|
1693
2243
|
# value: "NonEmptyString",
|
1694
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2244
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1695
2245
|
# },
|
1696
2246
|
# ],
|
1697
2247
|
# resource_container_launched_at: [
|
@@ -1708,55 +2258,55 @@ module Aws::SecurityHub
|
|
1708
2258
|
# {
|
1709
2259
|
# key: "NonEmptyString",
|
1710
2260
|
# value: "NonEmptyString",
|
1711
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2261
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1712
2262
|
# },
|
1713
2263
|
# ],
|
1714
2264
|
# compliance_status: [
|
1715
2265
|
# {
|
1716
2266
|
# value: "NonEmptyString",
|
1717
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2267
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1718
2268
|
# },
|
1719
2269
|
# ],
|
1720
2270
|
# verification_state: [
|
1721
2271
|
# {
|
1722
2272
|
# value: "NonEmptyString",
|
1723
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2273
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1724
2274
|
# },
|
1725
2275
|
# ],
|
1726
2276
|
# workflow_state: [
|
1727
2277
|
# {
|
1728
2278
|
# value: "NonEmptyString",
|
1729
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2279
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1730
2280
|
# },
|
1731
2281
|
# ],
|
1732
2282
|
# workflow_status: [
|
1733
2283
|
# {
|
1734
2284
|
# value: "NonEmptyString",
|
1735
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2285
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1736
2286
|
# },
|
1737
2287
|
# ],
|
1738
2288
|
# record_state: [
|
1739
2289
|
# {
|
1740
2290
|
# value: "NonEmptyString",
|
1741
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2291
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1742
2292
|
# },
|
1743
2293
|
# ],
|
1744
2294
|
# related_findings_product_arn: [
|
1745
2295
|
# {
|
1746
2296
|
# value: "NonEmptyString",
|
1747
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2297
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1748
2298
|
# },
|
1749
2299
|
# ],
|
1750
2300
|
# related_findings_id: [
|
1751
2301
|
# {
|
1752
2302
|
# value: "NonEmptyString",
|
1753
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2303
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1754
2304
|
# },
|
1755
2305
|
# ],
|
1756
2306
|
# note_text: [
|
1757
2307
|
# {
|
1758
2308
|
# value: "NonEmptyString",
|
1759
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2309
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1760
2310
|
# },
|
1761
2311
|
# ],
|
1762
2312
|
# note_updated_at: [
|
@@ -1772,7 +2322,7 @@ module Aws::SecurityHub
|
|
1772
2322
|
# note_updated_by: [
|
1773
2323
|
# {
|
1774
2324
|
# value: "NonEmptyString",
|
1775
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2325
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1776
2326
|
# },
|
1777
2327
|
# ],
|
1778
2328
|
# keyword: [
|
@@ -2066,6 +2616,7 @@ module Aws::SecurityHub
|
|
2066
2616
|
#
|
2067
2617
|
# * {Types::DescribeHubResponse#hub_arn #hub_arn} => String
|
2068
2618
|
# * {Types::DescribeHubResponse#subscribed_at #subscribed_at} => String
|
2619
|
+
# * {Types::DescribeHubResponse#auto_enable_controls #auto_enable_controls} => Boolean
|
2069
2620
|
#
|
2070
2621
|
# @example Request syntax with placeholder values
|
2071
2622
|
#
|
@@ -2077,6 +2628,7 @@ module Aws::SecurityHub
|
|
2077
2628
|
#
|
2078
2629
|
# resp.hub_arn #=> String
|
2079
2630
|
# resp.subscribed_at #=> String
|
2631
|
+
# resp.auto_enable_controls #=> Boolean
|
2080
2632
|
#
|
2081
2633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeHub AWS API Documentation
|
2082
2634
|
#
|
@@ -2493,6 +3045,10 @@ module Aws::SecurityHub
|
|
2493
3045
|
# The finding attributes used to define a condition to filter the
|
2494
3046
|
# returned findings.
|
2495
3047
|
#
|
3048
|
+
# Note that in the available filter fields, `WorkflowState` is
|
3049
|
+
# deprecated. To search for a finding based on its workflow status, use
|
3050
|
+
# `WorkflowStatus`.
|
3051
|
+
#
|
2496
3052
|
# @option params [Array<Types::SortCriterion>] :sort_criteria
|
2497
3053
|
# The finding attributes used to sort the list of returned findings.
|
2498
3054
|
#
|
@@ -2521,31 +3077,31 @@ module Aws::SecurityHub
|
|
2521
3077
|
# product_arn: [
|
2522
3078
|
# {
|
2523
3079
|
# value: "NonEmptyString",
|
2524
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3080
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2525
3081
|
# },
|
2526
3082
|
# ],
|
2527
3083
|
# aws_account_id: [
|
2528
3084
|
# {
|
2529
3085
|
# value: "NonEmptyString",
|
2530
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3086
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2531
3087
|
# },
|
2532
3088
|
# ],
|
2533
3089
|
# id: [
|
2534
3090
|
# {
|
2535
3091
|
# value: "NonEmptyString",
|
2536
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3092
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2537
3093
|
# },
|
2538
3094
|
# ],
|
2539
3095
|
# generator_id: [
|
2540
3096
|
# {
|
2541
3097
|
# value: "NonEmptyString",
|
2542
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3098
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2543
3099
|
# },
|
2544
3100
|
# ],
|
2545
3101
|
# type: [
|
2546
3102
|
# {
|
2547
3103
|
# value: "NonEmptyString",
|
2548
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3104
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2549
3105
|
# },
|
2550
3106
|
# ],
|
2551
3107
|
# first_observed_at: [
|
@@ -2605,7 +3161,7 @@ module Aws::SecurityHub
|
|
2605
3161
|
# severity_label: [
|
2606
3162
|
# {
|
2607
3163
|
# value: "NonEmptyString",
|
2608
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3164
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2609
3165
|
# },
|
2610
3166
|
# ],
|
2611
3167
|
# confidence: [
|
@@ -2625,87 +3181,87 @@ module Aws::SecurityHub
|
|
2625
3181
|
# title: [
|
2626
3182
|
# {
|
2627
3183
|
# value: "NonEmptyString",
|
2628
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3184
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2629
3185
|
# },
|
2630
3186
|
# ],
|
2631
3187
|
# description: [
|
2632
3188
|
# {
|
2633
3189
|
# value: "NonEmptyString",
|
2634
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3190
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2635
3191
|
# },
|
2636
3192
|
# ],
|
2637
3193
|
# recommendation_text: [
|
2638
3194
|
# {
|
2639
3195
|
# value: "NonEmptyString",
|
2640
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3196
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2641
3197
|
# },
|
2642
3198
|
# ],
|
2643
3199
|
# source_url: [
|
2644
3200
|
# {
|
2645
3201
|
# value: "NonEmptyString",
|
2646
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3202
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2647
3203
|
# },
|
2648
3204
|
# ],
|
2649
3205
|
# product_fields: [
|
2650
3206
|
# {
|
2651
3207
|
# key: "NonEmptyString",
|
2652
3208
|
# value: "NonEmptyString",
|
2653
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3209
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2654
3210
|
# },
|
2655
3211
|
# ],
|
2656
3212
|
# product_name: [
|
2657
3213
|
# {
|
2658
3214
|
# value: "NonEmptyString",
|
2659
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3215
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2660
3216
|
# },
|
2661
3217
|
# ],
|
2662
3218
|
# company_name: [
|
2663
3219
|
# {
|
2664
3220
|
# value: "NonEmptyString",
|
2665
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3221
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2666
3222
|
# },
|
2667
3223
|
# ],
|
2668
3224
|
# user_defined_fields: [
|
2669
3225
|
# {
|
2670
3226
|
# key: "NonEmptyString",
|
2671
3227
|
# value: "NonEmptyString",
|
2672
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3228
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2673
3229
|
# },
|
2674
3230
|
# ],
|
2675
3231
|
# malware_name: [
|
2676
3232
|
# {
|
2677
3233
|
# value: "NonEmptyString",
|
2678
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3234
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2679
3235
|
# },
|
2680
3236
|
# ],
|
2681
3237
|
# malware_type: [
|
2682
3238
|
# {
|
2683
3239
|
# value: "NonEmptyString",
|
2684
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3240
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2685
3241
|
# },
|
2686
3242
|
# ],
|
2687
3243
|
# malware_path: [
|
2688
3244
|
# {
|
2689
3245
|
# value: "NonEmptyString",
|
2690
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3246
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2691
3247
|
# },
|
2692
3248
|
# ],
|
2693
3249
|
# malware_state: [
|
2694
3250
|
# {
|
2695
3251
|
# value: "NonEmptyString",
|
2696
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3252
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2697
3253
|
# },
|
2698
3254
|
# ],
|
2699
3255
|
# network_direction: [
|
2700
3256
|
# {
|
2701
3257
|
# value: "NonEmptyString",
|
2702
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3258
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2703
3259
|
# },
|
2704
3260
|
# ],
|
2705
3261
|
# network_protocol: [
|
2706
3262
|
# {
|
2707
3263
|
# value: "NonEmptyString",
|
2708
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3264
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2709
3265
|
# },
|
2710
3266
|
# ],
|
2711
3267
|
# network_source_ip_v4: [
|
@@ -2728,13 +3284,13 @@ module Aws::SecurityHub
|
|
2728
3284
|
# network_source_domain: [
|
2729
3285
|
# {
|
2730
3286
|
# value: "NonEmptyString",
|
2731
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3287
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2732
3288
|
# },
|
2733
3289
|
# ],
|
2734
3290
|
# network_source_mac: [
|
2735
3291
|
# {
|
2736
3292
|
# value: "NonEmptyString",
|
2737
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3293
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2738
3294
|
# },
|
2739
3295
|
# ],
|
2740
3296
|
# network_destination_ip_v4: [
|
@@ -2757,19 +3313,19 @@ module Aws::SecurityHub
|
|
2757
3313
|
# network_destination_domain: [
|
2758
3314
|
# {
|
2759
3315
|
# value: "NonEmptyString",
|
2760
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3316
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2761
3317
|
# },
|
2762
3318
|
# ],
|
2763
3319
|
# process_name: [
|
2764
3320
|
# {
|
2765
3321
|
# value: "NonEmptyString",
|
2766
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3322
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2767
3323
|
# },
|
2768
3324
|
# ],
|
2769
3325
|
# process_path: [
|
2770
3326
|
# {
|
2771
3327
|
# value: "NonEmptyString",
|
2772
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3328
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2773
3329
|
# },
|
2774
3330
|
# ],
|
2775
3331
|
# process_pid: [
|
@@ -2809,19 +3365,19 @@ module Aws::SecurityHub
|
|
2809
3365
|
# threat_intel_indicator_type: [
|
2810
3366
|
# {
|
2811
3367
|
# value: "NonEmptyString",
|
2812
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3368
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2813
3369
|
# },
|
2814
3370
|
# ],
|
2815
3371
|
# threat_intel_indicator_value: [
|
2816
3372
|
# {
|
2817
3373
|
# value: "NonEmptyString",
|
2818
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3374
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2819
3375
|
# },
|
2820
3376
|
# ],
|
2821
3377
|
# threat_intel_indicator_category: [
|
2822
3378
|
# {
|
2823
3379
|
# value: "NonEmptyString",
|
2824
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3380
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2825
3381
|
# },
|
2826
3382
|
# ],
|
2827
3383
|
# threat_intel_indicator_last_observed_at: [
|
@@ -2837,56 +3393,56 @@ module Aws::SecurityHub
|
|
2837
3393
|
# threat_intel_indicator_source: [
|
2838
3394
|
# {
|
2839
3395
|
# value: "NonEmptyString",
|
2840
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3396
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2841
3397
|
# },
|
2842
3398
|
# ],
|
2843
3399
|
# threat_intel_indicator_source_url: [
|
2844
3400
|
# {
|
2845
3401
|
# value: "NonEmptyString",
|
2846
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3402
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2847
3403
|
# },
|
2848
3404
|
# ],
|
2849
3405
|
# resource_type: [
|
2850
3406
|
# {
|
2851
3407
|
# value: "NonEmptyString",
|
2852
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3408
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2853
3409
|
# },
|
2854
3410
|
# ],
|
2855
3411
|
# resource_id: [
|
2856
3412
|
# {
|
2857
3413
|
# value: "NonEmptyString",
|
2858
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3414
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2859
3415
|
# },
|
2860
3416
|
# ],
|
2861
3417
|
# resource_partition: [
|
2862
3418
|
# {
|
2863
3419
|
# value: "NonEmptyString",
|
2864
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3420
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2865
3421
|
# },
|
2866
3422
|
# ],
|
2867
3423
|
# resource_region: [
|
2868
3424
|
# {
|
2869
3425
|
# value: "NonEmptyString",
|
2870
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3426
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2871
3427
|
# },
|
2872
3428
|
# ],
|
2873
3429
|
# resource_tags: [
|
2874
3430
|
# {
|
2875
3431
|
# key: "NonEmptyString",
|
2876
3432
|
# value: "NonEmptyString",
|
2877
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3433
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2878
3434
|
# },
|
2879
3435
|
# ],
|
2880
3436
|
# resource_aws_ec2_instance_type: [
|
2881
3437
|
# {
|
2882
3438
|
# value: "NonEmptyString",
|
2883
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3439
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2884
3440
|
# },
|
2885
3441
|
# ],
|
2886
3442
|
# resource_aws_ec2_instance_image_id: [
|
2887
3443
|
# {
|
2888
3444
|
# value: "NonEmptyString",
|
2889
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3445
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2890
3446
|
# },
|
2891
3447
|
# ],
|
2892
3448
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -2902,25 +3458,25 @@ module Aws::SecurityHub
|
|
2902
3458
|
# resource_aws_ec2_instance_key_name: [
|
2903
3459
|
# {
|
2904
3460
|
# value: "NonEmptyString",
|
2905
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3461
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2906
3462
|
# },
|
2907
3463
|
# ],
|
2908
3464
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
2909
3465
|
# {
|
2910
3466
|
# value: "NonEmptyString",
|
2911
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3467
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2912
3468
|
# },
|
2913
3469
|
# ],
|
2914
3470
|
# resource_aws_ec2_instance_vpc_id: [
|
2915
3471
|
# {
|
2916
3472
|
# value: "NonEmptyString",
|
2917
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3473
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2918
3474
|
# },
|
2919
3475
|
# ],
|
2920
3476
|
# resource_aws_ec2_instance_subnet_id: [
|
2921
3477
|
# {
|
2922
3478
|
# value: "NonEmptyString",
|
2923
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3479
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2924
3480
|
# },
|
2925
3481
|
# ],
|
2926
3482
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -2936,25 +3492,25 @@ module Aws::SecurityHub
|
|
2936
3492
|
# resource_aws_s3_bucket_owner_id: [
|
2937
3493
|
# {
|
2938
3494
|
# value: "NonEmptyString",
|
2939
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3495
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2940
3496
|
# },
|
2941
3497
|
# ],
|
2942
3498
|
# resource_aws_s3_bucket_owner_name: [
|
2943
3499
|
# {
|
2944
3500
|
# value: "NonEmptyString",
|
2945
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3501
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2946
3502
|
# },
|
2947
3503
|
# ],
|
2948
3504
|
# resource_aws_iam_access_key_user_name: [
|
2949
3505
|
# {
|
2950
3506
|
# value: "NonEmptyString",
|
2951
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3507
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2952
3508
|
# },
|
2953
3509
|
# ],
|
2954
3510
|
# resource_aws_iam_access_key_status: [
|
2955
3511
|
# {
|
2956
3512
|
# value: "NonEmptyString",
|
2957
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3513
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2958
3514
|
# },
|
2959
3515
|
# ],
|
2960
3516
|
# resource_aws_iam_access_key_created_at: [
|
@@ -2970,19 +3526,19 @@ module Aws::SecurityHub
|
|
2970
3526
|
# resource_container_name: [
|
2971
3527
|
# {
|
2972
3528
|
# value: "NonEmptyString",
|
2973
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3529
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2974
3530
|
# },
|
2975
3531
|
# ],
|
2976
3532
|
# resource_container_image_id: [
|
2977
3533
|
# {
|
2978
3534
|
# value: "NonEmptyString",
|
2979
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3535
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2980
3536
|
# },
|
2981
3537
|
# ],
|
2982
3538
|
# resource_container_image_name: [
|
2983
3539
|
# {
|
2984
3540
|
# value: "NonEmptyString",
|
2985
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3541
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2986
3542
|
# },
|
2987
3543
|
# ],
|
2988
3544
|
# resource_container_launched_at: [
|
@@ -2999,55 +3555,55 @@ module Aws::SecurityHub
|
|
2999
3555
|
# {
|
3000
3556
|
# key: "NonEmptyString",
|
3001
3557
|
# value: "NonEmptyString",
|
3002
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3558
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
3003
3559
|
# },
|
3004
3560
|
# ],
|
3005
3561
|
# compliance_status: [
|
3006
3562
|
# {
|
3007
3563
|
# value: "NonEmptyString",
|
3008
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3564
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3009
3565
|
# },
|
3010
3566
|
# ],
|
3011
3567
|
# verification_state: [
|
3012
3568
|
# {
|
3013
3569
|
# value: "NonEmptyString",
|
3014
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3570
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3015
3571
|
# },
|
3016
3572
|
# ],
|
3017
3573
|
# workflow_state: [
|
3018
3574
|
# {
|
3019
3575
|
# value: "NonEmptyString",
|
3020
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3576
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3021
3577
|
# },
|
3022
3578
|
# ],
|
3023
3579
|
# workflow_status: [
|
3024
3580
|
# {
|
3025
3581
|
# value: "NonEmptyString",
|
3026
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3582
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3027
3583
|
# },
|
3028
3584
|
# ],
|
3029
3585
|
# record_state: [
|
3030
3586
|
# {
|
3031
3587
|
# value: "NonEmptyString",
|
3032
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3588
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3033
3589
|
# },
|
3034
3590
|
# ],
|
3035
3591
|
# related_findings_product_arn: [
|
3036
3592
|
# {
|
3037
3593
|
# value: "NonEmptyString",
|
3038
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3594
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3039
3595
|
# },
|
3040
3596
|
# ],
|
3041
3597
|
# related_findings_id: [
|
3042
3598
|
# {
|
3043
3599
|
# value: "NonEmptyString",
|
3044
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3600
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3045
3601
|
# },
|
3046
3602
|
# ],
|
3047
3603
|
# note_text: [
|
3048
3604
|
# {
|
3049
3605
|
# value: "NonEmptyString",
|
3050
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3606
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3051
3607
|
# },
|
3052
3608
|
# ],
|
3053
3609
|
# note_updated_at: [
|
@@ -3063,7 +3619,7 @@ module Aws::SecurityHub
|
|
3063
3619
|
# note_updated_by: [
|
3064
3620
|
# {
|
3065
3621
|
# value: "NonEmptyString",
|
3066
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3622
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3067
3623
|
# },
|
3068
3624
|
# ],
|
3069
3625
|
# keyword: [
|
@@ -3118,6 +3674,8 @@ module Aws::SecurityHub
|
|
3118
3674
|
# resp.findings[0].malware[0].state #=> String, one of "OBSERVED", "REMOVAL_FAILED", "REMOVED"
|
3119
3675
|
# resp.findings[0].network.direction #=> String, one of "IN", "OUT"
|
3120
3676
|
# resp.findings[0].network.protocol #=> String
|
3677
|
+
# resp.findings[0].network.open_port_range.begin #=> Integer
|
3678
|
+
# resp.findings[0].network.open_port_range.end #=> Integer
|
3121
3679
|
# resp.findings[0].network.source_ip_v4 #=> String
|
3122
3680
|
# resp.findings[0].network.source_ip_v6 #=> String
|
3123
3681
|
# resp.findings[0].network.source_port #=> Integer
|
@@ -3127,6 +3685,31 @@ module Aws::SecurityHub
|
|
3127
3685
|
# resp.findings[0].network.destination_ip_v6 #=> String
|
3128
3686
|
# resp.findings[0].network.destination_port #=> Integer
|
3129
3687
|
# resp.findings[0].network.destination_domain #=> String
|
3688
|
+
# resp.findings[0].network_path #=> Array
|
3689
|
+
# resp.findings[0].network_path[0].component_id #=> String
|
3690
|
+
# resp.findings[0].network_path[0].component_type #=> String
|
3691
|
+
# resp.findings[0].network_path[0].egress.protocol #=> String
|
3692
|
+
# resp.findings[0].network_path[0].egress.destination.address #=> Array
|
3693
|
+
# resp.findings[0].network_path[0].egress.destination.address[0] #=> String
|
3694
|
+
# resp.findings[0].network_path[0].egress.destination.port_ranges #=> Array
|
3695
|
+
# resp.findings[0].network_path[0].egress.destination.port_ranges[0].begin #=> Integer
|
3696
|
+
# resp.findings[0].network_path[0].egress.destination.port_ranges[0].end #=> Integer
|
3697
|
+
# resp.findings[0].network_path[0].egress.source.address #=> Array
|
3698
|
+
# resp.findings[0].network_path[0].egress.source.address[0] #=> String
|
3699
|
+
# resp.findings[0].network_path[0].egress.source.port_ranges #=> Array
|
3700
|
+
# resp.findings[0].network_path[0].egress.source.port_ranges[0].begin #=> Integer
|
3701
|
+
# resp.findings[0].network_path[0].egress.source.port_ranges[0].end #=> Integer
|
3702
|
+
# resp.findings[0].network_path[0].ingress.protocol #=> String
|
3703
|
+
# resp.findings[0].network_path[0].ingress.destination.address #=> Array
|
3704
|
+
# resp.findings[0].network_path[0].ingress.destination.address[0] #=> String
|
3705
|
+
# resp.findings[0].network_path[0].ingress.destination.port_ranges #=> Array
|
3706
|
+
# resp.findings[0].network_path[0].ingress.destination.port_ranges[0].begin #=> Integer
|
3707
|
+
# resp.findings[0].network_path[0].ingress.destination.port_ranges[0].end #=> Integer
|
3708
|
+
# resp.findings[0].network_path[0].ingress.source.address #=> Array
|
3709
|
+
# resp.findings[0].network_path[0].ingress.source.address[0] #=> String
|
3710
|
+
# resp.findings[0].network_path[0].ingress.source.port_ranges #=> Array
|
3711
|
+
# resp.findings[0].network_path[0].ingress.source.port_ranges[0].begin #=> Integer
|
3712
|
+
# resp.findings[0].network_path[0].ingress.source.port_ranges[0].end #=> Integer
|
3130
3713
|
# resp.findings[0].process.name #=> String
|
3131
3714
|
# resp.findings[0].process.path #=> String
|
3132
3715
|
# resp.findings[0].process.pid #=> Integer
|
@@ -3147,6 +3730,12 @@ module Aws::SecurityHub
|
|
3147
3730
|
# resp.findings[0].resources[0].region #=> String
|
3148
3731
|
# resp.findings[0].resources[0].tags #=> Hash
|
3149
3732
|
# resp.findings[0].resources[0].tags["NonEmptyString"] #=> String
|
3733
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_configuration_name #=> String
|
3734
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names #=> Array
|
3735
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names[0] #=> String
|
3736
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_type #=> String
|
3737
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_grace_period #=> Integer
|
3738
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.created_time #=> String
|
3150
3739
|
# resp.findings[0].resources[0].details.aws_code_build_project.encryption_key #=> String
|
3151
3740
|
# resp.findings[0].resources[0].details.aws_code_build_project.environment.certificate #=> String
|
3152
3741
|
# resp.findings[0].resources[0].details.aws_code_build_project.environment.image_pull_credentials_type #=> String
|
@@ -3238,6 +3827,37 @@ module Aws::SecurityHub
|
|
3238
3827
|
# resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ipv_6_ranges[0].cidr_ipv_6 #=> String
|
3239
3828
|
# resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids #=> Array
|
3240
3829
|
# resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids[0].prefix_list_id #=> String
|
3830
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.create_time #=> String
|
3831
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.encrypted #=> Boolean
|
3832
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.size #=> Integer
|
3833
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.snapshot_id #=> String
|
3834
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.status #=> String
|
3835
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.kms_key_id #=> String
|
3836
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments #=> Array
|
3837
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].attach_time #=> String
|
3838
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].delete_on_termination #=> Boolean
|
3839
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].instance_id #=> String
|
3840
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].status #=> String
|
3841
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set #=> Array
|
3842
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].association_id #=> String
|
3843
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block #=> String
|
3844
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block_state #=> String
|
3845
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set #=> Array
|
3846
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].association_id #=> String
|
3847
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
3848
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].cidr_block_state #=> String
|
3849
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.dhcp_options_id #=> String
|
3850
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.state #=> String
|
3851
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.instance_id #=> String
|
3852
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.public_ip #=> String
|
3853
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.allocation_id #=> String
|
3854
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.association_id #=> String
|
3855
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.domain #=> String
|
3856
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.public_ipv_4_pool #=> String
|
3857
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_border_group #=> String
|
3858
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_id #=> String
|
3859
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_owner_id #=> String
|
3860
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.private_ip_address #=> String
|
3241
3861
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones #=> Array
|
3242
3862
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].zone_name #=> String
|
3243
3863
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].subnet_id #=> String
|
@@ -3283,12 +3903,115 @@ module Aws::SecurityHub
|
|
3283
3903
|
# resp.findings[0].resources[0].details.aws_s3_object.content_type #=> String
|
3284
3904
|
# resp.findings[0].resources[0].details.aws_s3_object.server_side_encryption #=> String
|
3285
3905
|
# resp.findings[0].resources[0].details.aws_s3_object.ssekms_key_id #=> String
|
3906
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_rules.automatically_after_days #=> Integer
|
3907
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_occurred_within_frequency #=> Boolean
|
3908
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.kms_key_id #=> String
|
3909
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_enabled #=> Boolean
|
3910
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_lambda_arn #=> String
|
3911
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.deleted #=> Boolean
|
3912
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.name #=> String
|
3913
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.description #=> String
|
3286
3914
|
# resp.findings[0].resources[0].details.aws_iam_access_key.user_name #=> String
|
3287
3915
|
# resp.findings[0].resources[0].details.aws_iam_access_key.status #=> String, one of "Active", "Inactive"
|
3288
3916
|
# resp.findings[0].resources[0].details.aws_iam_access_key.created_at #=> String
|
3289
3917
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_id #=> String
|
3290
3918
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_type #=> String
|
3291
3919
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_name #=> String
|
3920
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies #=> Array
|
3921
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_name #=> String
|
3922
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_arn #=> String
|
3923
|
+
# resp.findings[0].resources[0].details.aws_iam_user.create_date #=> String
|
3924
|
+
# resp.findings[0].resources[0].details.aws_iam_user.group_list #=> Array
|
3925
|
+
# resp.findings[0].resources[0].details.aws_iam_user.group_list[0] #=> String
|
3926
|
+
# resp.findings[0].resources[0].details.aws_iam_user.path #=> String
|
3927
|
+
# resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_arn #=> String
|
3928
|
+
# resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_type #=> String
|
3929
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_id #=> String
|
3930
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_name #=> String
|
3931
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_policy_list #=> Array
|
3932
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_policy_list[0].policy_name #=> String
|
3933
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.attachment_count #=> Integer
|
3934
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.create_date #=> String
|
3935
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.default_version_id #=> String
|
3936
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.description #=> String
|
3937
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.is_attachable #=> Boolean
|
3938
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.path #=> String
|
3939
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.permissions_boundary_usage_count #=> Integer
|
3940
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_id #=> String
|
3941
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_name #=> String
|
3942
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list #=> Array
|
3943
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].version_id #=> String
|
3944
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].is_default_version #=> Boolean
|
3945
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].create_date #=> String
|
3946
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.update_date #=> String
|
3947
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions #=> Array
|
3948
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_name #=> String
|
3949
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_type #=> String
|
3950
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.billing_mode #=> String
|
3951
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.last_update_to_pay_per_request_date_time #=> String
|
3952
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.creation_date_time #=> String
|
3953
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes #=> Array
|
3954
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].backfilling #=> Boolean
|
3955
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_arn #=> String
|
3956
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_name #=> String
|
3957
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_size_bytes #=> Integer
|
3958
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_status #=> String
|
3959
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].item_count #=> Integer
|
3960
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema #=> Array
|
3961
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].attribute_name #=> String
|
3962
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].key_type #=> String
|
3963
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes #=> Array
|
3964
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes[0] #=> String
|
3965
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.projection_type #=> String
|
3966
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_decrease_date_time #=> String
|
3967
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_increase_date_time #=> String
|
3968
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.number_of_decreases_today #=> Integer
|
3969
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.read_capacity_units #=> Integer
|
3970
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.write_capacity_units #=> Integer
|
3971
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_table_version #=> String
|
3972
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.item_count #=> Integer
|
3973
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema #=> Array
|
3974
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].attribute_name #=> String
|
3975
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].key_type #=> String
|
3976
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_arn #=> String
|
3977
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_label #=> String
|
3978
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes #=> Array
|
3979
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_arn #=> String
|
3980
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_name #=> String
|
3981
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema #=> Array
|
3982
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].attribute_name #=> String
|
3983
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].key_type #=> String
|
3984
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes #=> Array
|
3985
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes[0] #=> String
|
3986
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.projection_type #=> String
|
3987
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_decrease_date_time #=> String
|
3988
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_increase_date_time #=> String
|
3989
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.number_of_decreases_today #=> Integer
|
3990
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.read_capacity_units #=> Integer
|
3991
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.write_capacity_units #=> Integer
|
3992
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas #=> Array
|
3993
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes #=> Array
|
3994
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
3995
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
3996
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].kms_master_key_id #=> String
|
3997
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
3998
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].region_name #=> String
|
3999
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status #=> String
|
4000
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status_description #=> String
|
4001
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_backup_arn #=> String
|
4002
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_table_arn #=> String
|
4003
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_date_time #=> String
|
4004
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_in_progress #=> Boolean
|
4005
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.inaccessible_encryption_date_time #=> String
|
4006
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.status #=> String
|
4007
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.sse_type #=> String
|
4008
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.kms_master_key_arn #=> String
|
4009
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_enabled #=> Boolean
|
4010
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_view_type #=> String
|
4011
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_id #=> String
|
4012
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_name #=> String
|
4013
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_size_bytes #=> Integer
|
4014
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_status #=> String
|
3292
4015
|
# resp.findings[0].resources[0].details.aws_iam_role.assume_role_policy_document #=> String
|
3293
4016
|
# resp.findings[0].resources[0].details.aws_iam_role.create_date #=> String
|
3294
4017
|
# resp.findings[0].resources[0].details.aws_iam_role.role_id #=> String
|
@@ -3301,6 +4024,7 @@ module Aws::SecurityHub
|
|
3301
4024
|
# resp.findings[0].resources[0].details.aws_kms_key.key_manager #=> String
|
3302
4025
|
# resp.findings[0].resources[0].details.aws_kms_key.key_state #=> String
|
3303
4026
|
# resp.findings[0].resources[0].details.aws_kms_key.origin #=> String
|
4027
|
+
# resp.findings[0].resources[0].details.aws_kms_key.description #=> String
|
3304
4028
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_bucket #=> String
|
3305
4029
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_key #=> String
|
3306
4030
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_object_version #=> String
|
@@ -3361,6 +4085,91 @@ module Aws::SecurityHub
|
|
3361
4085
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups #=> Array
|
3362
4086
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].vpc_security_group_id #=> String
|
3363
4087
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].status #=> String
|
4088
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.multi_az #=> Boolean
|
4089
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enhanced_monitoring_resource_arn #=> String
|
4090
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_status #=> String
|
4091
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.master_username #=> String
|
4092
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.allocated_storage #=> Integer
|
4093
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_backup_window #=> String
|
4094
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.backup_retention_period #=> Integer
|
4095
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups #=> Array
|
4096
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups[0] #=> String
|
4097
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups #=> Array
|
4098
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].db_parameter_group_name #=> String
|
4099
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].parameter_apply_status #=> String
|
4100
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.availability_zone #=> String
|
4101
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_name #=> String
|
4102
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_description #=> String
|
4103
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.vpc_id #=> String
|
4104
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnet_group_status #=> String
|
4105
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets #=> Array
|
4106
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4107
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4108
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4109
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4110
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_maintenance_window #=> String
|
4111
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_class #=> String
|
4112
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.allocated_storage #=> Integer
|
4113
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.master_user_password #=> String
|
4114
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.port #=> Integer
|
4115
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.backup_retention_period #=> Integer
|
4116
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.multi_az #=> Boolean
|
4117
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.engine_version #=> String
|
4118
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.license_model #=> String
|
4119
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.iops #=> Integer
|
4120
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_identifier #=> String
|
4121
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.storage_type #=> String
|
4122
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.ca_certificate_identifier #=> String
|
4123
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_subnet_group_name #=> String
|
4124
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable #=> Array
|
4125
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable[0] #=> String
|
4126
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable #=> Array
|
4127
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable[0] #=> String
|
4128
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features #=> Array
|
4129
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].name #=> String
|
4130
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].value #=> String
|
4131
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.latest_restorable_time #=> String
|
4132
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.auto_minor_version_upgrade #=> Boolean
|
4133
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_source_db_instance_identifier #=> String
|
4134
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers #=> Array
|
4135
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers[0] #=> String
|
4136
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers #=> Array
|
4137
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
4138
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.license_model #=> String
|
4139
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.iops #=> Integer
|
4140
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships #=> Array
|
4141
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].option_group_name #=> String
|
4142
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].status #=> String
|
4143
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.character_set_name #=> String
|
4144
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.secondary_availability_zone #=> String
|
4145
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos #=> Array
|
4146
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status_type #=> String
|
4147
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].normal #=> Boolean
|
4148
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status #=> String
|
4149
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].message #=> String
|
4150
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.storage_type #=> String
|
4151
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships #=> Array
|
4152
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].domain #=> String
|
4153
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].status #=> String
|
4154
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].fqdn #=> String
|
4155
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].iam_role_name #=> String
|
4156
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.copy_tags_to_snapshot #=> Boolean
|
4157
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_interval #=> Integer
|
4158
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_role_arn #=> String
|
4159
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.promotion_tier #=> Integer
|
4160
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.timezone #=> String
|
4161
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_enabled #=> Boolean
|
4162
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_kms_key_id #=> String
|
4163
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_retention_period #=> Integer
|
4164
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports #=> Array
|
4165
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports[0] #=> String
|
4166
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features #=> Array
|
4167
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].name #=> String
|
4168
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].value #=> String
|
4169
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.address #=> String
|
4170
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.port #=> Integer
|
4171
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.hosted_zone_id #=> String
|
4172
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.max_allocated_storage #=> Integer
|
3364
4173
|
# resp.findings[0].resources[0].details.aws_sns_topic.kms_master_key_id #=> String
|
3365
4174
|
# resp.findings[0].resources[0].details.aws_sns_topic.subscription #=> Array
|
3366
4175
|
# resp.findings[0].resources[0].details.aws_sns_topic.subscription[0].endpoint #=> String
|
@@ -3382,6 +4191,109 @@ module Aws::SecurityHub
|
|
3382
4191
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].rule_id #=> String
|
3383
4192
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].type #=> String
|
3384
4193
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.web_acl_id #=> String
|
4194
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_snapshot_identifier #=> String
|
4195
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_instance_identifier #=> String
|
4196
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_create_time #=> String
|
4197
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine #=> String
|
4198
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.allocated_storage #=> Integer
|
4199
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.status #=> String
|
4200
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.port #=> Integer
|
4201
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.availability_zone #=> String
|
4202
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.vpc_id #=> String
|
4203
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.instance_create_time #=> String
|
4204
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.master_username #=> String
|
4205
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine_version #=> String
|
4206
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.license_model #=> String
|
4207
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_type #=> String
|
4208
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.iops #=> Integer
|
4209
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.option_group_name #=> String
|
4210
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.percent_progress #=> Integer
|
4211
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_region #=> String
|
4212
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_db_snapshot_identifier #=> String
|
4213
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.storage_type #=> String
|
4214
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.tde_credential_arn #=> String
|
4215
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.encrypted #=> Boolean
|
4216
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.kms_key_id #=> String
|
4217
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.timezone #=> String
|
4218
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.iam_database_authentication_enabled #=> Boolean
|
4219
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features #=> Array
|
4220
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].name #=> String
|
4221
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].value #=> String
|
4222
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.dbi_resource_id #=> String
|
4223
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones #=> Array
|
4224
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones[0] #=> String
|
4225
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_create_time #=> String
|
4226
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine #=> String
|
4227
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.allocated_storage #=> Integer
|
4228
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.status #=> String
|
4229
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.port #=> Integer
|
4230
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.vpc_id #=> String
|
4231
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.cluster_create_time #=> String
|
4232
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.master_username #=> String
|
4233
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine_version #=> String
|
4234
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.license_model #=> String
|
4235
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_type #=> String
|
4236
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.percent_progress #=> Integer
|
4237
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.storage_encrypted #=> Boolean
|
4238
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.kms_key_id #=> String
|
4239
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_identifier #=> String
|
4240
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_snapshot_identifier #=> String
|
4241
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
4242
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.allocated_storage #=> Integer
|
4243
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones #=> Array
|
4244
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones[0] #=> String
|
4245
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.backup_retention_period #=> Integer
|
4246
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.database_name #=> String
|
4247
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.status #=> String
|
4248
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.endpoint #=> String
|
4249
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.reader_endpoint #=> String
|
4250
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints #=> Array
|
4251
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints[0] #=> String
|
4252
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.multi_az #=> Boolean
|
4253
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine #=> String
|
4254
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_version #=> String
|
4255
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.port #=> Integer
|
4256
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.master_username #=> String
|
4257
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_backup_window #=> String
|
4258
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_maintenance_window #=> String
|
4259
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers #=> Array
|
4260
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers[0] #=> String
|
4261
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups #=> Array
|
4262
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].vpc_security_group_id #=> String
|
4263
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].status #=> String
|
4264
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.hosted_zone_id #=> String
|
4265
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.storage_encrypted #=> Boolean
|
4266
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.kms_key_id #=> String
|
4267
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_resource_id #=> String
|
4268
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles #=> Array
|
4269
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].role_arn #=> String
|
4270
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].status #=> String
|
4271
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.cluster_create_time #=> String
|
4272
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports #=> Array
|
4273
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports[0] #=> String
|
4274
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_mode #=> String
|
4275
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.deletion_protection #=> Boolean
|
4276
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.http_endpoint_enabled #=> Boolean
|
4277
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.activity_stream_status #=> String
|
4278
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.copy_tags_to_snapshot #=> Boolean
|
4279
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.cross_account_clone #=> Boolean
|
4280
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships #=> Array
|
4281
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].domain #=> String
|
4282
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].status #=> String
|
4283
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].fqdn #=> String
|
4284
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].iam_role_name #=> String
|
4285
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_parameter_group #=> String
|
4286
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_subnet_group #=> String
|
4287
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships #=> Array
|
4288
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].db_cluster_option_group_name #=> String
|
4289
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
4290
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_identifier #=> String
|
4291
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members #=> Array
|
4292
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
|
4293
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].promotion_tier #=> Integer
|
4294
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_instance_identifier #=> String
|
4295
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_cluster_parameter_group_status #=> String
|
4296
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.iam_database_authentication_enabled #=> Boolean
|
3385
4297
|
# resp.findings[0].resources[0].details.container.name #=> String
|
3386
4298
|
# resp.findings[0].resources[0].details.container.image_id #=> String
|
3387
4299
|
# resp.findings[0].resources[0].details.container.image_name #=> String
|
@@ -3404,6 +4316,27 @@ module Aws::SecurityHub
|
|
3404
4316
|
# resp.findings[0].note.text #=> String
|
3405
4317
|
# resp.findings[0].note.updated_by #=> String
|
3406
4318
|
# resp.findings[0].note.updated_at #=> String
|
4319
|
+
# resp.findings[0].vulnerabilities #=> Array
|
4320
|
+
# resp.findings[0].vulnerabilities[0].id #=> String
|
4321
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages #=> Array
|
4322
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].name #=> String
|
4323
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].version #=> String
|
4324
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].epoch #=> String
|
4325
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].release #=> String
|
4326
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].architecture #=> String
|
4327
|
+
# resp.findings[0].vulnerabilities[0].cvss #=> Array
|
4328
|
+
# resp.findings[0].vulnerabilities[0].cvss[0].version #=> String
|
4329
|
+
# resp.findings[0].vulnerabilities[0].cvss[0].base_score #=> Float
|
4330
|
+
# resp.findings[0].vulnerabilities[0].cvss[0].base_vector #=> String
|
4331
|
+
# resp.findings[0].vulnerabilities[0].related_vulnerabilities #=> Array
|
4332
|
+
# resp.findings[0].vulnerabilities[0].related_vulnerabilities[0] #=> String
|
4333
|
+
# resp.findings[0].vulnerabilities[0].vendor.name #=> String
|
4334
|
+
# resp.findings[0].vulnerabilities[0].vendor.url #=> String
|
4335
|
+
# resp.findings[0].vulnerabilities[0].vendor.vendor_severity #=> String
|
4336
|
+
# resp.findings[0].vulnerabilities[0].vendor.vendor_created_at #=> String
|
4337
|
+
# resp.findings[0].vulnerabilities[0].vendor.vendor_updated_at #=> String
|
4338
|
+
# resp.findings[0].vulnerabilities[0].reference_urls #=> Array
|
4339
|
+
# resp.findings[0].vulnerabilities[0].reference_urls[0] #=> String
|
3407
4340
|
# resp.next_token #=> String
|
3408
4341
|
#
|
3409
4342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation
|
@@ -3488,19 +4421,19 @@ module Aws::SecurityHub
|
|
3488
4421
|
# resp.insights[0].name #=> String
|
3489
4422
|
# resp.insights[0].filters.product_arn #=> Array
|
3490
4423
|
# resp.insights[0].filters.product_arn[0].value #=> String
|
3491
|
-
# resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4424
|
+
# resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3492
4425
|
# resp.insights[0].filters.aws_account_id #=> Array
|
3493
4426
|
# resp.insights[0].filters.aws_account_id[0].value #=> String
|
3494
|
-
# resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4427
|
+
# resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3495
4428
|
# resp.insights[0].filters.id #=> Array
|
3496
4429
|
# resp.insights[0].filters.id[0].value #=> String
|
3497
|
-
# resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4430
|
+
# resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3498
4431
|
# resp.insights[0].filters.generator_id #=> Array
|
3499
4432
|
# resp.insights[0].filters.generator_id[0].value #=> String
|
3500
|
-
# resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4433
|
+
# resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3501
4434
|
# resp.insights[0].filters.type #=> Array
|
3502
4435
|
# resp.insights[0].filters.type[0].value #=> String
|
3503
|
-
# resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4436
|
+
# resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3504
4437
|
# resp.insights[0].filters.first_observed_at #=> Array
|
3505
4438
|
# resp.insights[0].filters.first_observed_at[0].start #=> String
|
3506
4439
|
# resp.insights[0].filters.first_observed_at[0].end #=> String
|
@@ -3531,7 +4464,7 @@ module Aws::SecurityHub
|
|
3531
4464
|
# resp.insights[0].filters.severity_normalized[0].eq #=> Float
|
3532
4465
|
# resp.insights[0].filters.severity_label #=> Array
|
3533
4466
|
# resp.insights[0].filters.severity_label[0].value #=> String
|
3534
|
-
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4467
|
+
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3535
4468
|
# resp.insights[0].filters.confidence #=> Array
|
3536
4469
|
# resp.insights[0].filters.confidence[0].gte #=> Float
|
3537
4470
|
# resp.insights[0].filters.confidence[0].lte #=> Float
|
@@ -3542,48 +4475,48 @@ module Aws::SecurityHub
|
|
3542
4475
|
# resp.insights[0].filters.criticality[0].eq #=> Float
|
3543
4476
|
# resp.insights[0].filters.title #=> Array
|
3544
4477
|
# resp.insights[0].filters.title[0].value #=> String
|
3545
|
-
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4478
|
+
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3546
4479
|
# resp.insights[0].filters.description #=> Array
|
3547
4480
|
# resp.insights[0].filters.description[0].value #=> String
|
3548
|
-
# resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4481
|
+
# resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3549
4482
|
# resp.insights[0].filters.recommendation_text #=> Array
|
3550
4483
|
# resp.insights[0].filters.recommendation_text[0].value #=> String
|
3551
|
-
# resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4484
|
+
# resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3552
4485
|
# resp.insights[0].filters.source_url #=> Array
|
3553
4486
|
# resp.insights[0].filters.source_url[0].value #=> String
|
3554
|
-
# resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4487
|
+
# resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3555
4488
|
# resp.insights[0].filters.product_fields #=> Array
|
3556
4489
|
# resp.insights[0].filters.product_fields[0].key #=> String
|
3557
4490
|
# resp.insights[0].filters.product_fields[0].value #=> String
|
3558
|
-
# resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS"
|
4491
|
+
# resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3559
4492
|
# resp.insights[0].filters.product_name #=> Array
|
3560
4493
|
# resp.insights[0].filters.product_name[0].value #=> String
|
3561
|
-
# resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4494
|
+
# resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3562
4495
|
# resp.insights[0].filters.company_name #=> Array
|
3563
4496
|
# resp.insights[0].filters.company_name[0].value #=> String
|
3564
|
-
# resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4497
|
+
# resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3565
4498
|
# resp.insights[0].filters.user_defined_fields #=> Array
|
3566
4499
|
# resp.insights[0].filters.user_defined_fields[0].key #=> String
|
3567
4500
|
# resp.insights[0].filters.user_defined_fields[0].value #=> String
|
3568
|
-
# resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS"
|
4501
|
+
# resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3569
4502
|
# resp.insights[0].filters.malware_name #=> Array
|
3570
4503
|
# resp.insights[0].filters.malware_name[0].value #=> String
|
3571
|
-
# resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4504
|
+
# resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3572
4505
|
# resp.insights[0].filters.malware_type #=> Array
|
3573
4506
|
# resp.insights[0].filters.malware_type[0].value #=> String
|
3574
|
-
# resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4507
|
+
# resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3575
4508
|
# resp.insights[0].filters.malware_path #=> Array
|
3576
4509
|
# resp.insights[0].filters.malware_path[0].value #=> String
|
3577
|
-
# resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4510
|
+
# resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3578
4511
|
# resp.insights[0].filters.malware_state #=> Array
|
3579
4512
|
# resp.insights[0].filters.malware_state[0].value #=> String
|
3580
|
-
# resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4513
|
+
# resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3581
4514
|
# resp.insights[0].filters.network_direction #=> Array
|
3582
4515
|
# resp.insights[0].filters.network_direction[0].value #=> String
|
3583
|
-
# resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4516
|
+
# resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3584
4517
|
# resp.insights[0].filters.network_protocol #=> Array
|
3585
4518
|
# resp.insights[0].filters.network_protocol[0].value #=> String
|
3586
|
-
# resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4519
|
+
# resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3587
4520
|
# resp.insights[0].filters.network_source_ip_v4 #=> Array
|
3588
4521
|
# resp.insights[0].filters.network_source_ip_v4[0].cidr #=> String
|
3589
4522
|
# resp.insights[0].filters.network_source_ip_v6 #=> Array
|
@@ -3594,10 +4527,10 @@ module Aws::SecurityHub
|
|
3594
4527
|
# resp.insights[0].filters.network_source_port[0].eq #=> Float
|
3595
4528
|
# resp.insights[0].filters.network_source_domain #=> Array
|
3596
4529
|
# resp.insights[0].filters.network_source_domain[0].value #=> String
|
3597
|
-
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4530
|
+
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3598
4531
|
# resp.insights[0].filters.network_source_mac #=> Array
|
3599
4532
|
# resp.insights[0].filters.network_source_mac[0].value #=> String
|
3600
|
-
# resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4533
|
+
# resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3601
4534
|
# resp.insights[0].filters.network_destination_ip_v4 #=> Array
|
3602
4535
|
# resp.insights[0].filters.network_destination_ip_v4[0].cidr #=> String
|
3603
4536
|
# resp.insights[0].filters.network_destination_ip_v6 #=> Array
|
@@ -3608,13 +4541,13 @@ module Aws::SecurityHub
|
|
3608
4541
|
# resp.insights[0].filters.network_destination_port[0].eq #=> Float
|
3609
4542
|
# resp.insights[0].filters.network_destination_domain #=> Array
|
3610
4543
|
# resp.insights[0].filters.network_destination_domain[0].value #=> String
|
3611
|
-
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4544
|
+
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3612
4545
|
# resp.insights[0].filters.process_name #=> Array
|
3613
4546
|
# resp.insights[0].filters.process_name[0].value #=> String
|
3614
|
-
# resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4547
|
+
# resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3615
4548
|
# resp.insights[0].filters.process_path #=> Array
|
3616
4549
|
# resp.insights[0].filters.process_path[0].value #=> String
|
3617
|
-
# resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4550
|
+
# resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3618
4551
|
# resp.insights[0].filters.process_pid #=> Array
|
3619
4552
|
# resp.insights[0].filters.process_pid[0].gte #=> Float
|
3620
4553
|
# resp.insights[0].filters.process_pid[0].lte #=> Float
|
@@ -3635,13 +4568,13 @@ module Aws::SecurityHub
|
|
3635
4568
|
# resp.insights[0].filters.process_terminated_at[0].date_range.unit #=> String, one of "DAYS"
|
3636
4569
|
# resp.insights[0].filters.threat_intel_indicator_type #=> Array
|
3637
4570
|
# resp.insights[0].filters.threat_intel_indicator_type[0].value #=> String
|
3638
|
-
# resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4571
|
+
# resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3639
4572
|
# resp.insights[0].filters.threat_intel_indicator_value #=> Array
|
3640
4573
|
# resp.insights[0].filters.threat_intel_indicator_value[0].value #=> String
|
3641
|
-
# resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4574
|
+
# resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3642
4575
|
# resp.insights[0].filters.threat_intel_indicator_category #=> Array
|
3643
4576
|
# resp.insights[0].filters.threat_intel_indicator_category[0].value #=> String
|
3644
|
-
# resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4577
|
+
# resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3645
4578
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at #=> Array
|
3646
4579
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].start #=> String
|
3647
4580
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].end #=> String
|
@@ -3649,48 +4582,48 @@ module Aws::SecurityHub
|
|
3649
4582
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].date_range.unit #=> String, one of "DAYS"
|
3650
4583
|
# resp.insights[0].filters.threat_intel_indicator_source #=> Array
|
3651
4584
|
# resp.insights[0].filters.threat_intel_indicator_source[0].value #=> String
|
3652
|
-
# resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4585
|
+
# resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3653
4586
|
# resp.insights[0].filters.threat_intel_indicator_source_url #=> Array
|
3654
4587
|
# resp.insights[0].filters.threat_intel_indicator_source_url[0].value #=> String
|
3655
|
-
# resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4588
|
+
# resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3656
4589
|
# resp.insights[0].filters.resource_type #=> Array
|
3657
4590
|
# resp.insights[0].filters.resource_type[0].value #=> String
|
3658
|
-
# resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4591
|
+
# resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3659
4592
|
# resp.insights[0].filters.resource_id #=> Array
|
3660
4593
|
# resp.insights[0].filters.resource_id[0].value #=> String
|
3661
|
-
# resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4594
|
+
# resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3662
4595
|
# resp.insights[0].filters.resource_partition #=> Array
|
3663
4596
|
# resp.insights[0].filters.resource_partition[0].value #=> String
|
3664
|
-
# resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4597
|
+
# resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3665
4598
|
# resp.insights[0].filters.resource_region #=> Array
|
3666
4599
|
# resp.insights[0].filters.resource_region[0].value #=> String
|
3667
|
-
# resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4600
|
+
# resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3668
4601
|
# resp.insights[0].filters.resource_tags #=> Array
|
3669
4602
|
# resp.insights[0].filters.resource_tags[0].key #=> String
|
3670
4603
|
# resp.insights[0].filters.resource_tags[0].value #=> String
|
3671
|
-
# resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS"
|
4604
|
+
# resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3672
4605
|
# resp.insights[0].filters.resource_aws_ec2_instance_type #=> Array
|
3673
4606
|
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].value #=> String
|
3674
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4607
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3675
4608
|
# resp.insights[0].filters.resource_aws_ec2_instance_image_id #=> Array
|
3676
4609
|
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].value #=> String
|
3677
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4610
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3678
4611
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses #=> Array
|
3679
4612
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses[0].cidr #=> String
|
3680
4613
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses #=> Array
|
3681
4614
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses[0].cidr #=> String
|
3682
4615
|
# resp.insights[0].filters.resource_aws_ec2_instance_key_name #=> Array
|
3683
4616
|
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].value #=> String
|
3684
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4617
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3685
4618
|
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn #=> Array
|
3686
4619
|
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].value #=> String
|
3687
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4620
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3688
4621
|
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id #=> Array
|
3689
4622
|
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].value #=> String
|
3690
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4623
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3691
4624
|
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id #=> Array
|
3692
4625
|
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].value #=> String
|
3693
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4626
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3694
4627
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at #=> Array
|
3695
4628
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].start #=> String
|
3696
4629
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].end #=> String
|
@@ -3698,16 +4631,16 @@ module Aws::SecurityHub
|
|
3698
4631
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].date_range.unit #=> String, one of "DAYS"
|
3699
4632
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id #=> Array
|
3700
4633
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].value #=> String
|
3701
|
-
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4634
|
+
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3702
4635
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name #=> Array
|
3703
4636
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].value #=> String
|
3704
|
-
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4637
|
+
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3705
4638
|
# resp.insights[0].filters.resource_aws_iam_access_key_user_name #=> Array
|
3706
4639
|
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].value #=> String
|
3707
|
-
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4640
|
+
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3708
4641
|
# resp.insights[0].filters.resource_aws_iam_access_key_status #=> Array
|
3709
4642
|
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].value #=> String
|
3710
|
-
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4643
|
+
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3711
4644
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at #=> Array
|
3712
4645
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].start #=> String
|
3713
4646
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].end #=> String
|
@@ -3715,13 +4648,13 @@ module Aws::SecurityHub
|
|
3715
4648
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].date_range.unit #=> String, one of "DAYS"
|
3716
4649
|
# resp.insights[0].filters.resource_container_name #=> Array
|
3717
4650
|
# resp.insights[0].filters.resource_container_name[0].value #=> String
|
3718
|
-
# resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4651
|
+
# resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3719
4652
|
# resp.insights[0].filters.resource_container_image_id #=> Array
|
3720
4653
|
# resp.insights[0].filters.resource_container_image_id[0].value #=> String
|
3721
|
-
# resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4654
|
+
# resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3722
4655
|
# resp.insights[0].filters.resource_container_image_name #=> Array
|
3723
4656
|
# resp.insights[0].filters.resource_container_image_name[0].value #=> String
|
3724
|
-
# resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4657
|
+
# resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3725
4658
|
# resp.insights[0].filters.resource_container_launched_at #=> Array
|
3726
4659
|
# resp.insights[0].filters.resource_container_launched_at[0].start #=> String
|
3727
4660
|
# resp.insights[0].filters.resource_container_launched_at[0].end #=> String
|
@@ -3730,31 +4663,31 @@ module Aws::SecurityHub
|
|
3730
4663
|
# resp.insights[0].filters.resource_details_other #=> Array
|
3731
4664
|
# resp.insights[0].filters.resource_details_other[0].key #=> String
|
3732
4665
|
# resp.insights[0].filters.resource_details_other[0].value #=> String
|
3733
|
-
# resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS"
|
4666
|
+
# resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3734
4667
|
# resp.insights[0].filters.compliance_status #=> Array
|
3735
4668
|
# resp.insights[0].filters.compliance_status[0].value #=> String
|
3736
|
-
# resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4669
|
+
# resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3737
4670
|
# resp.insights[0].filters.verification_state #=> Array
|
3738
4671
|
# resp.insights[0].filters.verification_state[0].value #=> String
|
3739
|
-
# resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4672
|
+
# resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3740
4673
|
# resp.insights[0].filters.workflow_state #=> Array
|
3741
4674
|
# resp.insights[0].filters.workflow_state[0].value #=> String
|
3742
|
-
# resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4675
|
+
# resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3743
4676
|
# resp.insights[0].filters.workflow_status #=> Array
|
3744
4677
|
# resp.insights[0].filters.workflow_status[0].value #=> String
|
3745
|
-
# resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4678
|
+
# resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3746
4679
|
# resp.insights[0].filters.record_state #=> Array
|
3747
4680
|
# resp.insights[0].filters.record_state[0].value #=> String
|
3748
|
-
# resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4681
|
+
# resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3749
4682
|
# resp.insights[0].filters.related_findings_product_arn #=> Array
|
3750
4683
|
# resp.insights[0].filters.related_findings_product_arn[0].value #=> String
|
3751
|
-
# resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4684
|
+
# resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3752
4685
|
# resp.insights[0].filters.related_findings_id #=> Array
|
3753
4686
|
# resp.insights[0].filters.related_findings_id[0].value #=> String
|
3754
|
-
# resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4687
|
+
# resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3755
4688
|
# resp.insights[0].filters.note_text #=> Array
|
3756
4689
|
# resp.insights[0].filters.note_text[0].value #=> String
|
3757
|
-
# resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4690
|
+
# resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3758
4691
|
# resp.insights[0].filters.note_updated_at #=> Array
|
3759
4692
|
# resp.insights[0].filters.note_updated_at[0].start #=> String
|
3760
4693
|
# resp.insights[0].filters.note_updated_at[0].end #=> String
|
@@ -3762,7 +4695,7 @@ module Aws::SecurityHub
|
|
3762
4695
|
# resp.insights[0].filters.note_updated_at[0].date_range.unit #=> String, one of "DAYS"
|
3763
4696
|
# resp.insights[0].filters.note_updated_by #=> Array
|
3764
4697
|
# resp.insights[0].filters.note_updated_by[0].value #=> String
|
3765
|
-
# resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4698
|
+
# resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3766
4699
|
# resp.insights[0].filters.keyword #=> Array
|
3767
4700
|
# resp.insights[0].filters.keyword[0].value #=> String
|
3768
4701
|
# resp.insights[0].group_by_attribute #=> String
|
@@ -4193,31 +5126,31 @@ module Aws::SecurityHub
|
|
4193
5126
|
# product_arn: [
|
4194
5127
|
# {
|
4195
5128
|
# value: "NonEmptyString",
|
4196
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5129
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4197
5130
|
# },
|
4198
5131
|
# ],
|
4199
5132
|
# aws_account_id: [
|
4200
5133
|
# {
|
4201
5134
|
# value: "NonEmptyString",
|
4202
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5135
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4203
5136
|
# },
|
4204
5137
|
# ],
|
4205
5138
|
# id: [
|
4206
5139
|
# {
|
4207
5140
|
# value: "NonEmptyString",
|
4208
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5141
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4209
5142
|
# },
|
4210
5143
|
# ],
|
4211
5144
|
# generator_id: [
|
4212
5145
|
# {
|
4213
5146
|
# value: "NonEmptyString",
|
4214
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5147
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4215
5148
|
# },
|
4216
5149
|
# ],
|
4217
5150
|
# type: [
|
4218
5151
|
# {
|
4219
5152
|
# value: "NonEmptyString",
|
4220
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5153
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4221
5154
|
# },
|
4222
5155
|
# ],
|
4223
5156
|
# first_observed_at: [
|
@@ -4277,7 +5210,7 @@ module Aws::SecurityHub
|
|
4277
5210
|
# severity_label: [
|
4278
5211
|
# {
|
4279
5212
|
# value: "NonEmptyString",
|
4280
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5213
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4281
5214
|
# },
|
4282
5215
|
# ],
|
4283
5216
|
# confidence: [
|
@@ -4297,87 +5230,87 @@ module Aws::SecurityHub
|
|
4297
5230
|
# title: [
|
4298
5231
|
# {
|
4299
5232
|
# value: "NonEmptyString",
|
4300
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5233
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4301
5234
|
# },
|
4302
5235
|
# ],
|
4303
5236
|
# description: [
|
4304
5237
|
# {
|
4305
5238
|
# value: "NonEmptyString",
|
4306
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5239
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4307
5240
|
# },
|
4308
5241
|
# ],
|
4309
5242
|
# recommendation_text: [
|
4310
5243
|
# {
|
4311
5244
|
# value: "NonEmptyString",
|
4312
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5245
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4313
5246
|
# },
|
4314
5247
|
# ],
|
4315
5248
|
# source_url: [
|
4316
5249
|
# {
|
4317
5250
|
# value: "NonEmptyString",
|
4318
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5251
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4319
5252
|
# },
|
4320
5253
|
# ],
|
4321
5254
|
# product_fields: [
|
4322
5255
|
# {
|
4323
5256
|
# key: "NonEmptyString",
|
4324
5257
|
# value: "NonEmptyString",
|
4325
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5258
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4326
5259
|
# },
|
4327
5260
|
# ],
|
4328
5261
|
# product_name: [
|
4329
5262
|
# {
|
4330
5263
|
# value: "NonEmptyString",
|
4331
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5264
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4332
5265
|
# },
|
4333
5266
|
# ],
|
4334
5267
|
# company_name: [
|
4335
5268
|
# {
|
4336
5269
|
# value: "NonEmptyString",
|
4337
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5270
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4338
5271
|
# },
|
4339
5272
|
# ],
|
4340
5273
|
# user_defined_fields: [
|
4341
5274
|
# {
|
4342
5275
|
# key: "NonEmptyString",
|
4343
5276
|
# value: "NonEmptyString",
|
4344
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5277
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4345
5278
|
# },
|
4346
5279
|
# ],
|
4347
5280
|
# malware_name: [
|
4348
5281
|
# {
|
4349
5282
|
# value: "NonEmptyString",
|
4350
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5283
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4351
5284
|
# },
|
4352
5285
|
# ],
|
4353
5286
|
# malware_type: [
|
4354
5287
|
# {
|
4355
5288
|
# value: "NonEmptyString",
|
4356
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5289
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4357
5290
|
# },
|
4358
5291
|
# ],
|
4359
5292
|
# malware_path: [
|
4360
5293
|
# {
|
4361
5294
|
# value: "NonEmptyString",
|
4362
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5295
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4363
5296
|
# },
|
4364
5297
|
# ],
|
4365
5298
|
# malware_state: [
|
4366
5299
|
# {
|
4367
5300
|
# value: "NonEmptyString",
|
4368
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5301
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4369
5302
|
# },
|
4370
5303
|
# ],
|
4371
5304
|
# network_direction: [
|
4372
5305
|
# {
|
4373
5306
|
# value: "NonEmptyString",
|
4374
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5307
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4375
5308
|
# },
|
4376
5309
|
# ],
|
4377
5310
|
# network_protocol: [
|
4378
5311
|
# {
|
4379
5312
|
# value: "NonEmptyString",
|
4380
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5313
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4381
5314
|
# },
|
4382
5315
|
# ],
|
4383
5316
|
# network_source_ip_v4: [
|
@@ -4400,13 +5333,13 @@ module Aws::SecurityHub
|
|
4400
5333
|
# network_source_domain: [
|
4401
5334
|
# {
|
4402
5335
|
# value: "NonEmptyString",
|
4403
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5336
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4404
5337
|
# },
|
4405
5338
|
# ],
|
4406
5339
|
# network_source_mac: [
|
4407
5340
|
# {
|
4408
5341
|
# value: "NonEmptyString",
|
4409
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5342
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4410
5343
|
# },
|
4411
5344
|
# ],
|
4412
5345
|
# network_destination_ip_v4: [
|
@@ -4429,19 +5362,19 @@ module Aws::SecurityHub
|
|
4429
5362
|
# network_destination_domain: [
|
4430
5363
|
# {
|
4431
5364
|
# value: "NonEmptyString",
|
4432
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5365
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4433
5366
|
# },
|
4434
5367
|
# ],
|
4435
5368
|
# process_name: [
|
4436
5369
|
# {
|
4437
5370
|
# value: "NonEmptyString",
|
4438
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5371
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4439
5372
|
# },
|
4440
5373
|
# ],
|
4441
5374
|
# process_path: [
|
4442
5375
|
# {
|
4443
5376
|
# value: "NonEmptyString",
|
4444
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5377
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4445
5378
|
# },
|
4446
5379
|
# ],
|
4447
5380
|
# process_pid: [
|
@@ -4481,19 +5414,19 @@ module Aws::SecurityHub
|
|
4481
5414
|
# threat_intel_indicator_type: [
|
4482
5415
|
# {
|
4483
5416
|
# value: "NonEmptyString",
|
4484
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5417
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4485
5418
|
# },
|
4486
5419
|
# ],
|
4487
5420
|
# threat_intel_indicator_value: [
|
4488
5421
|
# {
|
4489
5422
|
# value: "NonEmptyString",
|
4490
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5423
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4491
5424
|
# },
|
4492
5425
|
# ],
|
4493
5426
|
# threat_intel_indicator_category: [
|
4494
5427
|
# {
|
4495
5428
|
# value: "NonEmptyString",
|
4496
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5429
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4497
5430
|
# },
|
4498
5431
|
# ],
|
4499
5432
|
# threat_intel_indicator_last_observed_at: [
|
@@ -4509,56 +5442,56 @@ module Aws::SecurityHub
|
|
4509
5442
|
# threat_intel_indicator_source: [
|
4510
5443
|
# {
|
4511
5444
|
# value: "NonEmptyString",
|
4512
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5445
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4513
5446
|
# },
|
4514
5447
|
# ],
|
4515
5448
|
# threat_intel_indicator_source_url: [
|
4516
5449
|
# {
|
4517
5450
|
# value: "NonEmptyString",
|
4518
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5451
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4519
5452
|
# },
|
4520
5453
|
# ],
|
4521
5454
|
# resource_type: [
|
4522
5455
|
# {
|
4523
5456
|
# value: "NonEmptyString",
|
4524
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5457
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4525
5458
|
# },
|
4526
5459
|
# ],
|
4527
5460
|
# resource_id: [
|
4528
5461
|
# {
|
4529
5462
|
# value: "NonEmptyString",
|
4530
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5463
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4531
5464
|
# },
|
4532
5465
|
# ],
|
4533
5466
|
# resource_partition: [
|
4534
5467
|
# {
|
4535
5468
|
# value: "NonEmptyString",
|
4536
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5469
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4537
5470
|
# },
|
4538
5471
|
# ],
|
4539
5472
|
# resource_region: [
|
4540
5473
|
# {
|
4541
5474
|
# value: "NonEmptyString",
|
4542
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5475
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4543
5476
|
# },
|
4544
5477
|
# ],
|
4545
5478
|
# resource_tags: [
|
4546
5479
|
# {
|
4547
5480
|
# key: "NonEmptyString",
|
4548
5481
|
# value: "NonEmptyString",
|
4549
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5482
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4550
5483
|
# },
|
4551
5484
|
# ],
|
4552
5485
|
# resource_aws_ec2_instance_type: [
|
4553
5486
|
# {
|
4554
5487
|
# value: "NonEmptyString",
|
4555
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5488
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4556
5489
|
# },
|
4557
5490
|
# ],
|
4558
5491
|
# resource_aws_ec2_instance_image_id: [
|
4559
5492
|
# {
|
4560
5493
|
# value: "NonEmptyString",
|
4561
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5494
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4562
5495
|
# },
|
4563
5496
|
# ],
|
4564
5497
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -4574,25 +5507,25 @@ module Aws::SecurityHub
|
|
4574
5507
|
# resource_aws_ec2_instance_key_name: [
|
4575
5508
|
# {
|
4576
5509
|
# value: "NonEmptyString",
|
4577
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5510
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4578
5511
|
# },
|
4579
5512
|
# ],
|
4580
5513
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
4581
5514
|
# {
|
4582
5515
|
# value: "NonEmptyString",
|
4583
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5516
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4584
5517
|
# },
|
4585
5518
|
# ],
|
4586
5519
|
# resource_aws_ec2_instance_vpc_id: [
|
4587
5520
|
# {
|
4588
5521
|
# value: "NonEmptyString",
|
4589
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5522
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4590
5523
|
# },
|
4591
5524
|
# ],
|
4592
5525
|
# resource_aws_ec2_instance_subnet_id: [
|
4593
5526
|
# {
|
4594
5527
|
# value: "NonEmptyString",
|
4595
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5528
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4596
5529
|
# },
|
4597
5530
|
# ],
|
4598
5531
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -4608,25 +5541,25 @@ module Aws::SecurityHub
|
|
4608
5541
|
# resource_aws_s3_bucket_owner_id: [
|
4609
5542
|
# {
|
4610
5543
|
# value: "NonEmptyString",
|
4611
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5544
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4612
5545
|
# },
|
4613
5546
|
# ],
|
4614
5547
|
# resource_aws_s3_bucket_owner_name: [
|
4615
5548
|
# {
|
4616
5549
|
# value: "NonEmptyString",
|
4617
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5550
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4618
5551
|
# },
|
4619
5552
|
# ],
|
4620
5553
|
# resource_aws_iam_access_key_user_name: [
|
4621
5554
|
# {
|
4622
5555
|
# value: "NonEmptyString",
|
4623
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5556
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4624
5557
|
# },
|
4625
5558
|
# ],
|
4626
5559
|
# resource_aws_iam_access_key_status: [
|
4627
5560
|
# {
|
4628
5561
|
# value: "NonEmptyString",
|
4629
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5562
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4630
5563
|
# },
|
4631
5564
|
# ],
|
4632
5565
|
# resource_aws_iam_access_key_created_at: [
|
@@ -4642,19 +5575,19 @@ module Aws::SecurityHub
|
|
4642
5575
|
# resource_container_name: [
|
4643
5576
|
# {
|
4644
5577
|
# value: "NonEmptyString",
|
4645
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5578
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4646
5579
|
# },
|
4647
5580
|
# ],
|
4648
5581
|
# resource_container_image_id: [
|
4649
5582
|
# {
|
4650
5583
|
# value: "NonEmptyString",
|
4651
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5584
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4652
5585
|
# },
|
4653
5586
|
# ],
|
4654
5587
|
# resource_container_image_name: [
|
4655
5588
|
# {
|
4656
5589
|
# value: "NonEmptyString",
|
4657
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5590
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4658
5591
|
# },
|
4659
5592
|
# ],
|
4660
5593
|
# resource_container_launched_at: [
|
@@ -4671,55 +5604,55 @@ module Aws::SecurityHub
|
|
4671
5604
|
# {
|
4672
5605
|
# key: "NonEmptyString",
|
4673
5606
|
# value: "NonEmptyString",
|
4674
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5607
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4675
5608
|
# },
|
4676
5609
|
# ],
|
4677
5610
|
# compliance_status: [
|
4678
5611
|
# {
|
4679
5612
|
# value: "NonEmptyString",
|
4680
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5613
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4681
5614
|
# },
|
4682
5615
|
# ],
|
4683
5616
|
# verification_state: [
|
4684
5617
|
# {
|
4685
5618
|
# value: "NonEmptyString",
|
4686
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5619
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4687
5620
|
# },
|
4688
5621
|
# ],
|
4689
5622
|
# workflow_state: [
|
4690
5623
|
# {
|
4691
5624
|
# value: "NonEmptyString",
|
4692
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5625
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4693
5626
|
# },
|
4694
5627
|
# ],
|
4695
5628
|
# workflow_status: [
|
4696
5629
|
# {
|
4697
5630
|
# value: "NonEmptyString",
|
4698
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5631
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4699
5632
|
# },
|
4700
5633
|
# ],
|
4701
5634
|
# record_state: [
|
4702
5635
|
# {
|
4703
5636
|
# value: "NonEmptyString",
|
4704
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5637
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4705
5638
|
# },
|
4706
5639
|
# ],
|
4707
5640
|
# related_findings_product_arn: [
|
4708
5641
|
# {
|
4709
5642
|
# value: "NonEmptyString",
|
4710
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5643
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4711
5644
|
# },
|
4712
5645
|
# ],
|
4713
5646
|
# related_findings_id: [
|
4714
5647
|
# {
|
4715
5648
|
# value: "NonEmptyString",
|
4716
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5649
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4717
5650
|
# },
|
4718
5651
|
# ],
|
4719
5652
|
# note_text: [
|
4720
5653
|
# {
|
4721
5654
|
# value: "NonEmptyString",
|
4722
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5655
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4723
5656
|
# },
|
4724
5657
|
# ],
|
4725
5658
|
# note_updated_at: [
|
@@ -4735,7 +5668,7 @@ module Aws::SecurityHub
|
|
4735
5668
|
# note_updated_by: [
|
4736
5669
|
# {
|
4737
5670
|
# value: "NonEmptyString",
|
4738
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5671
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4739
5672
|
# },
|
4740
5673
|
# ],
|
4741
5674
|
# keyword: [
|
@@ -4786,31 +5719,31 @@ module Aws::SecurityHub
|
|
4786
5719
|
# product_arn: [
|
4787
5720
|
# {
|
4788
5721
|
# value: "NonEmptyString",
|
4789
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5722
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4790
5723
|
# },
|
4791
5724
|
# ],
|
4792
5725
|
# aws_account_id: [
|
4793
5726
|
# {
|
4794
5727
|
# value: "NonEmptyString",
|
4795
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5728
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4796
5729
|
# },
|
4797
5730
|
# ],
|
4798
5731
|
# id: [
|
4799
5732
|
# {
|
4800
5733
|
# value: "NonEmptyString",
|
4801
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5734
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4802
5735
|
# },
|
4803
5736
|
# ],
|
4804
5737
|
# generator_id: [
|
4805
5738
|
# {
|
4806
5739
|
# value: "NonEmptyString",
|
4807
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5740
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4808
5741
|
# },
|
4809
5742
|
# ],
|
4810
5743
|
# type: [
|
4811
5744
|
# {
|
4812
5745
|
# value: "NonEmptyString",
|
4813
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5746
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4814
5747
|
# },
|
4815
5748
|
# ],
|
4816
5749
|
# first_observed_at: [
|
@@ -4870,7 +5803,7 @@ module Aws::SecurityHub
|
|
4870
5803
|
# severity_label: [
|
4871
5804
|
# {
|
4872
5805
|
# value: "NonEmptyString",
|
4873
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5806
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4874
5807
|
# },
|
4875
5808
|
# ],
|
4876
5809
|
# confidence: [
|
@@ -4890,87 +5823,87 @@ module Aws::SecurityHub
|
|
4890
5823
|
# title: [
|
4891
5824
|
# {
|
4892
5825
|
# value: "NonEmptyString",
|
4893
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5826
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4894
5827
|
# },
|
4895
5828
|
# ],
|
4896
5829
|
# description: [
|
4897
5830
|
# {
|
4898
5831
|
# value: "NonEmptyString",
|
4899
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5832
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4900
5833
|
# },
|
4901
5834
|
# ],
|
4902
5835
|
# recommendation_text: [
|
4903
5836
|
# {
|
4904
5837
|
# value: "NonEmptyString",
|
4905
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5838
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4906
5839
|
# },
|
4907
5840
|
# ],
|
4908
5841
|
# source_url: [
|
4909
5842
|
# {
|
4910
5843
|
# value: "NonEmptyString",
|
4911
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5844
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4912
5845
|
# },
|
4913
5846
|
# ],
|
4914
5847
|
# product_fields: [
|
4915
5848
|
# {
|
4916
5849
|
# key: "NonEmptyString",
|
4917
5850
|
# value: "NonEmptyString",
|
4918
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5851
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4919
5852
|
# },
|
4920
5853
|
# ],
|
4921
5854
|
# product_name: [
|
4922
5855
|
# {
|
4923
5856
|
# value: "NonEmptyString",
|
4924
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5857
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4925
5858
|
# },
|
4926
5859
|
# ],
|
4927
5860
|
# company_name: [
|
4928
5861
|
# {
|
4929
5862
|
# value: "NonEmptyString",
|
4930
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5863
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4931
5864
|
# },
|
4932
5865
|
# ],
|
4933
5866
|
# user_defined_fields: [
|
4934
5867
|
# {
|
4935
5868
|
# key: "NonEmptyString",
|
4936
5869
|
# value: "NonEmptyString",
|
4937
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5870
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4938
5871
|
# },
|
4939
5872
|
# ],
|
4940
5873
|
# malware_name: [
|
4941
5874
|
# {
|
4942
5875
|
# value: "NonEmptyString",
|
4943
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5876
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4944
5877
|
# },
|
4945
5878
|
# ],
|
4946
5879
|
# malware_type: [
|
4947
5880
|
# {
|
4948
5881
|
# value: "NonEmptyString",
|
4949
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5882
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4950
5883
|
# },
|
4951
5884
|
# ],
|
4952
5885
|
# malware_path: [
|
4953
5886
|
# {
|
4954
5887
|
# value: "NonEmptyString",
|
4955
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5888
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4956
5889
|
# },
|
4957
5890
|
# ],
|
4958
5891
|
# malware_state: [
|
4959
5892
|
# {
|
4960
5893
|
# value: "NonEmptyString",
|
4961
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5894
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4962
5895
|
# },
|
4963
5896
|
# ],
|
4964
5897
|
# network_direction: [
|
4965
5898
|
# {
|
4966
5899
|
# value: "NonEmptyString",
|
4967
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5900
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4968
5901
|
# },
|
4969
5902
|
# ],
|
4970
5903
|
# network_protocol: [
|
4971
5904
|
# {
|
4972
5905
|
# value: "NonEmptyString",
|
4973
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5906
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4974
5907
|
# },
|
4975
5908
|
# ],
|
4976
5909
|
# network_source_ip_v4: [
|
@@ -4993,13 +5926,13 @@ module Aws::SecurityHub
|
|
4993
5926
|
# network_source_domain: [
|
4994
5927
|
# {
|
4995
5928
|
# value: "NonEmptyString",
|
4996
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5929
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4997
5930
|
# },
|
4998
5931
|
# ],
|
4999
5932
|
# network_source_mac: [
|
5000
5933
|
# {
|
5001
5934
|
# value: "NonEmptyString",
|
5002
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5935
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5003
5936
|
# },
|
5004
5937
|
# ],
|
5005
5938
|
# network_destination_ip_v4: [
|
@@ -5022,19 +5955,19 @@ module Aws::SecurityHub
|
|
5022
5955
|
# network_destination_domain: [
|
5023
5956
|
# {
|
5024
5957
|
# value: "NonEmptyString",
|
5025
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5958
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5026
5959
|
# },
|
5027
5960
|
# ],
|
5028
5961
|
# process_name: [
|
5029
5962
|
# {
|
5030
5963
|
# value: "NonEmptyString",
|
5031
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5964
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5032
5965
|
# },
|
5033
5966
|
# ],
|
5034
5967
|
# process_path: [
|
5035
5968
|
# {
|
5036
5969
|
# value: "NonEmptyString",
|
5037
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5970
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5038
5971
|
# },
|
5039
5972
|
# ],
|
5040
5973
|
# process_pid: [
|
@@ -5074,19 +6007,19 @@ module Aws::SecurityHub
|
|
5074
6007
|
# threat_intel_indicator_type: [
|
5075
6008
|
# {
|
5076
6009
|
# value: "NonEmptyString",
|
5077
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6010
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5078
6011
|
# },
|
5079
6012
|
# ],
|
5080
6013
|
# threat_intel_indicator_value: [
|
5081
6014
|
# {
|
5082
6015
|
# value: "NonEmptyString",
|
5083
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6016
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5084
6017
|
# },
|
5085
6018
|
# ],
|
5086
6019
|
# threat_intel_indicator_category: [
|
5087
6020
|
# {
|
5088
6021
|
# value: "NonEmptyString",
|
5089
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6022
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5090
6023
|
# },
|
5091
6024
|
# ],
|
5092
6025
|
# threat_intel_indicator_last_observed_at: [
|
@@ -5102,56 +6035,56 @@ module Aws::SecurityHub
|
|
5102
6035
|
# threat_intel_indicator_source: [
|
5103
6036
|
# {
|
5104
6037
|
# value: "NonEmptyString",
|
5105
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6038
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5106
6039
|
# },
|
5107
6040
|
# ],
|
5108
6041
|
# threat_intel_indicator_source_url: [
|
5109
6042
|
# {
|
5110
6043
|
# value: "NonEmptyString",
|
5111
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6044
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5112
6045
|
# },
|
5113
6046
|
# ],
|
5114
6047
|
# resource_type: [
|
5115
6048
|
# {
|
5116
6049
|
# value: "NonEmptyString",
|
5117
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6050
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5118
6051
|
# },
|
5119
6052
|
# ],
|
5120
6053
|
# resource_id: [
|
5121
6054
|
# {
|
5122
6055
|
# value: "NonEmptyString",
|
5123
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6056
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5124
6057
|
# },
|
5125
6058
|
# ],
|
5126
6059
|
# resource_partition: [
|
5127
6060
|
# {
|
5128
6061
|
# value: "NonEmptyString",
|
5129
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6062
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5130
6063
|
# },
|
5131
6064
|
# ],
|
5132
6065
|
# resource_region: [
|
5133
6066
|
# {
|
5134
6067
|
# value: "NonEmptyString",
|
5135
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6068
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5136
6069
|
# },
|
5137
6070
|
# ],
|
5138
6071
|
# resource_tags: [
|
5139
6072
|
# {
|
5140
6073
|
# key: "NonEmptyString",
|
5141
6074
|
# value: "NonEmptyString",
|
5142
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6075
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5143
6076
|
# },
|
5144
6077
|
# ],
|
5145
6078
|
# resource_aws_ec2_instance_type: [
|
5146
6079
|
# {
|
5147
6080
|
# value: "NonEmptyString",
|
5148
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6081
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5149
6082
|
# },
|
5150
6083
|
# ],
|
5151
6084
|
# resource_aws_ec2_instance_image_id: [
|
5152
6085
|
# {
|
5153
6086
|
# value: "NonEmptyString",
|
5154
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6087
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5155
6088
|
# },
|
5156
6089
|
# ],
|
5157
6090
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -5167,25 +6100,25 @@ module Aws::SecurityHub
|
|
5167
6100
|
# resource_aws_ec2_instance_key_name: [
|
5168
6101
|
# {
|
5169
6102
|
# value: "NonEmptyString",
|
5170
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6103
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5171
6104
|
# },
|
5172
6105
|
# ],
|
5173
6106
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
5174
6107
|
# {
|
5175
6108
|
# value: "NonEmptyString",
|
5176
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6109
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5177
6110
|
# },
|
5178
6111
|
# ],
|
5179
6112
|
# resource_aws_ec2_instance_vpc_id: [
|
5180
6113
|
# {
|
5181
6114
|
# value: "NonEmptyString",
|
5182
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6115
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5183
6116
|
# },
|
5184
6117
|
# ],
|
5185
6118
|
# resource_aws_ec2_instance_subnet_id: [
|
5186
6119
|
# {
|
5187
6120
|
# value: "NonEmptyString",
|
5188
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6121
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5189
6122
|
# },
|
5190
6123
|
# ],
|
5191
6124
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -5201,25 +6134,25 @@ module Aws::SecurityHub
|
|
5201
6134
|
# resource_aws_s3_bucket_owner_id: [
|
5202
6135
|
# {
|
5203
6136
|
# value: "NonEmptyString",
|
5204
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6137
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5205
6138
|
# },
|
5206
6139
|
# ],
|
5207
6140
|
# resource_aws_s3_bucket_owner_name: [
|
5208
6141
|
# {
|
5209
6142
|
# value: "NonEmptyString",
|
5210
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6143
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5211
6144
|
# },
|
5212
6145
|
# ],
|
5213
6146
|
# resource_aws_iam_access_key_user_name: [
|
5214
6147
|
# {
|
5215
6148
|
# value: "NonEmptyString",
|
5216
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6149
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5217
6150
|
# },
|
5218
6151
|
# ],
|
5219
6152
|
# resource_aws_iam_access_key_status: [
|
5220
6153
|
# {
|
5221
6154
|
# value: "NonEmptyString",
|
5222
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6155
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5223
6156
|
# },
|
5224
6157
|
# ],
|
5225
6158
|
# resource_aws_iam_access_key_created_at: [
|
@@ -5235,19 +6168,19 @@ module Aws::SecurityHub
|
|
5235
6168
|
# resource_container_name: [
|
5236
6169
|
# {
|
5237
6170
|
# value: "NonEmptyString",
|
5238
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6171
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5239
6172
|
# },
|
5240
6173
|
# ],
|
5241
6174
|
# resource_container_image_id: [
|
5242
6175
|
# {
|
5243
6176
|
# value: "NonEmptyString",
|
5244
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6177
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5245
6178
|
# },
|
5246
6179
|
# ],
|
5247
6180
|
# resource_container_image_name: [
|
5248
6181
|
# {
|
5249
6182
|
# value: "NonEmptyString",
|
5250
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6183
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5251
6184
|
# },
|
5252
6185
|
# ],
|
5253
6186
|
# resource_container_launched_at: [
|
@@ -5264,55 +6197,55 @@ module Aws::SecurityHub
|
|
5264
6197
|
# {
|
5265
6198
|
# key: "NonEmptyString",
|
5266
6199
|
# value: "NonEmptyString",
|
5267
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6200
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5268
6201
|
# },
|
5269
6202
|
# ],
|
5270
6203
|
# compliance_status: [
|
5271
6204
|
# {
|
5272
6205
|
# value: "NonEmptyString",
|
5273
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6206
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5274
6207
|
# },
|
5275
6208
|
# ],
|
5276
6209
|
# verification_state: [
|
5277
6210
|
# {
|
5278
6211
|
# value: "NonEmptyString",
|
5279
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6212
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5280
6213
|
# },
|
5281
6214
|
# ],
|
5282
6215
|
# workflow_state: [
|
5283
6216
|
# {
|
5284
6217
|
# value: "NonEmptyString",
|
5285
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6218
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5286
6219
|
# },
|
5287
6220
|
# ],
|
5288
6221
|
# workflow_status: [
|
5289
6222
|
# {
|
5290
6223
|
# value: "NonEmptyString",
|
5291
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6224
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5292
6225
|
# },
|
5293
6226
|
# ],
|
5294
6227
|
# record_state: [
|
5295
6228
|
# {
|
5296
6229
|
# value: "NonEmptyString",
|
5297
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6230
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5298
6231
|
# },
|
5299
6232
|
# ],
|
5300
6233
|
# related_findings_product_arn: [
|
5301
6234
|
# {
|
5302
6235
|
# value: "NonEmptyString",
|
5303
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6236
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5304
6237
|
# },
|
5305
6238
|
# ],
|
5306
6239
|
# related_findings_id: [
|
5307
6240
|
# {
|
5308
6241
|
# value: "NonEmptyString",
|
5309
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6242
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5310
6243
|
# },
|
5311
6244
|
# ],
|
5312
6245
|
# note_text: [
|
5313
6246
|
# {
|
5314
6247
|
# value: "NonEmptyString",
|
5315
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6248
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5316
6249
|
# },
|
5317
6250
|
# ],
|
5318
6251
|
# note_updated_at: [
|
@@ -5328,7 +6261,7 @@ module Aws::SecurityHub
|
|
5328
6261
|
# note_updated_by: [
|
5329
6262
|
# {
|
5330
6263
|
# value: "NonEmptyString",
|
5331
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6264
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5332
6265
|
# },
|
5333
6266
|
# ],
|
5334
6267
|
# keyword: [
|
@@ -5349,6 +6282,33 @@ module Aws::SecurityHub
|
|
5349
6282
|
req.send_request(options)
|
5350
6283
|
end
|
5351
6284
|
|
6285
|
+
# Updates configuration options for Security Hub.
|
6286
|
+
#
|
6287
|
+
# @option params [Boolean] :auto_enable_controls
|
6288
|
+
# Whether to automatically enable new controls when they are added to
|
6289
|
+
# standards that are enabled.
|
6290
|
+
#
|
6291
|
+
# By default, this is set to `true`, and new controls are enabled
|
6292
|
+
# automatically. To not automatically enable new controls, set this to
|
6293
|
+
# `false`.
|
6294
|
+
#
|
6295
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6296
|
+
#
|
6297
|
+
# @example Request syntax with placeholder values
|
6298
|
+
#
|
6299
|
+
# resp = client.update_security_hub_configuration({
|
6300
|
+
# auto_enable_controls: false,
|
6301
|
+
# })
|
6302
|
+
#
|
6303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateSecurityHubConfiguration AWS API Documentation
|
6304
|
+
#
|
6305
|
+
# @overload update_security_hub_configuration(params = {})
|
6306
|
+
# @param [Hash] params ({})
|
6307
|
+
def update_security_hub_configuration(params = {}, options = {})
|
6308
|
+
req = build_request(:update_security_hub_configuration, params)
|
6309
|
+
req.send_request(options)
|
6310
|
+
end
|
6311
|
+
|
5352
6312
|
# Used to control whether an individual security standard control is
|
5353
6313
|
# enabled or disabled.
|
5354
6314
|
#
|
@@ -5360,7 +6320,7 @@ module Aws::SecurityHub
|
|
5360
6320
|
#
|
5361
6321
|
# @option params [String] :disabled_reason
|
5362
6322
|
# A description of the reason why you are disabling a security standard
|
5363
|
-
# control.
|
6323
|
+
# control. If you are disabling a control, then this is required.
|
5364
6324
|
#
|
5365
6325
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5366
6326
|
#
|
@@ -5394,7 +6354,7 @@ module Aws::SecurityHub
|
|
5394
6354
|
params: params,
|
5395
6355
|
config: config)
|
5396
6356
|
context[:gem_name] = 'aws-sdk-securityhub'
|
5397
|
-
context[:gem_version] = '1.
|
6357
|
+
context[:gem_version] = '1.32.0'
|
5398
6358
|
Seahorse::Client::Request.new(handlers, context)
|
5399
6359
|
end
|
5400
6360
|
|