aws-sdk-securityhub 1.28.0 → 1.33.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 +2 -2
- data/lib/aws-sdk-securityhub/client.rb +1281 -299
- data/lib/aws-sdk-securityhub/client_api.rb +624 -0
- data/lib/aws-sdk-securityhub/types.rb +7398 -1506
- 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: 044b98daacefbf08d79f31eea0c5bc38596eee7122af53622f5fce13adaee572
|
4
|
+
data.tar.gz: '062139cefe127da175584b148d6700dbf5c224e7a4e2a59d8954aba434352192'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2248cd714085932c5e5ec72f993f7e5b94713d1ab827726251aeab4a40a5e6c55bff4efd9cba6de1eb163ef821fcc17f02bc23376064f7a513efd1fd452c934
|
7
|
+
data.tar.gz: 6914439573c7b7e05eef6e4aa8dd49028dc9e86c7d8236046185ce7052f05c3e703e89e537ccd467c303a4cc9cbd75a2a30ac3285c40081795a43d3ec17c70c5
|
data/lib/aws-sdk-securityhub.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::SecurityHub
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
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
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::SecurityHub
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# 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.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -527,6 +542,10 @@ module Aws::SecurityHub
|
|
527
542
|
# network: {
|
528
543
|
# direction: "IN", # accepts IN, OUT
|
529
544
|
# protocol: "NonEmptyString",
|
545
|
+
# open_port_range: {
|
546
|
+
# begin: 1,
|
547
|
+
# end: 1,
|
548
|
+
# },
|
530
549
|
# source_ip_v4: "NonEmptyString",
|
531
550
|
# source_ip_v6: "NonEmptyString",
|
532
551
|
# source_port: 1,
|
@@ -537,6 +556,54 @@ module Aws::SecurityHub
|
|
537
556
|
# destination_port: 1,
|
538
557
|
# destination_domain: "NonEmptyString",
|
539
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
|
+
# ],
|
540
607
|
# process: {
|
541
608
|
# name: "NonEmptyString",
|
542
609
|
# path: "NonEmptyString",
|
@@ -565,6 +632,13 @@ module Aws::SecurityHub
|
|
565
632
|
# "NonEmptyString" => "NonEmptyString",
|
566
633
|
# },
|
567
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
|
+
# },
|
568
642
|
# aws_code_build_project: {
|
569
643
|
# encryption_key: "NonEmptyString",
|
570
644
|
# environment: {
|
@@ -712,6 +786,52 @@ module Aws::SecurityHub
|
|
712
786
|
# },
|
713
787
|
# ],
|
714
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
|
+
# },
|
715
835
|
# aws_elbv_2_load_balancer: {
|
716
836
|
# availability_zones: [
|
717
837
|
# {
|
@@ -782,6 +902,18 @@ module Aws::SecurityHub
|
|
782
902
|
# server_side_encryption: "NonEmptyString",
|
783
903
|
# ssekms_key_id: "NonEmptyString",
|
784
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
|
+
# },
|
785
917
|
# aws_iam_access_key: {
|
786
918
|
# user_name: "NonEmptyString",
|
787
919
|
# status: "Active", # accepts Active, Inactive
|
@@ -790,6 +922,159 @@ module Aws::SecurityHub
|
|
790
922
|
# principal_type: "NonEmptyString",
|
791
923
|
# principal_name: "NonEmptyString",
|
792
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
|
+
# },
|
793
1078
|
# aws_iam_role: {
|
794
1079
|
# assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument",
|
795
1080
|
# create_date: "NonEmptyString",
|
@@ -805,6 +1090,7 @@ module Aws::SecurityHub
|
|
805
1090
|
# key_manager: "NonEmptyString",
|
806
1091
|
# key_state: "NonEmptyString",
|
807
1092
|
# origin: "NonEmptyString",
|
1093
|
+
# description: "NonEmptyString",
|
808
1094
|
# },
|
809
1095
|
# aws_lambda_function: {
|
810
1096
|
# code: {
|
@@ -892,6 +1178,116 @@ module Aws::SecurityHub
|
|
892
1178
|
# status: "NonEmptyString",
|
893
1179
|
# },
|
894
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,
|
895
1291
|
# },
|
896
1292
|
# aws_sns_topic: {
|
897
1293
|
# kms_master_key_id: "NonEmptyString",
|
@@ -933,6 +1329,128 @@ module Aws::SecurityHub
|
|
933
1329
|
# ],
|
934
1330
|
# web_acl_id: "NonEmptyString",
|
935
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
|
+
# },
|
936
1454
|
# container: {
|
937
1455
|
# name: "NonEmptyString",
|
938
1456
|
# image_id: "NonEmptyString",
|
@@ -972,6 +1490,49 @@ module Aws::SecurityHub
|
|
972
1490
|
# updated_by: "NonEmptyString", # required
|
973
1491
|
# updated_at: "NonEmptyString", # required
|
974
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
|
+
# ],
|
1523
|
+
# patch_summary: {
|
1524
|
+
# id: "NonEmptyString", # required
|
1525
|
+
# installed_count: 1,
|
1526
|
+
# missing_count: 1,
|
1527
|
+
# failed_count: 1,
|
1528
|
+
# installed_other_count: 1,
|
1529
|
+
# installed_rejected_count: 1,
|
1530
|
+
# installed_pending_reboot: 1,
|
1531
|
+
# operation_start_time: "NonEmptyString",
|
1532
|
+
# operation_end_time: "NonEmptyString",
|
1533
|
+
# reboot_option: "NonEmptyString",
|
1534
|
+
# operation: "NonEmptyString",
|
1535
|
+
# },
|
975
1536
|
# },
|
976
1537
|
# ],
|
977
1538
|
# })
|
@@ -1232,31 +1793,31 @@ module Aws::SecurityHub
|
|
1232
1793
|
# product_arn: [
|
1233
1794
|
# {
|
1234
1795
|
# value: "NonEmptyString",
|
1235
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1796
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1236
1797
|
# },
|
1237
1798
|
# ],
|
1238
1799
|
# aws_account_id: [
|
1239
1800
|
# {
|
1240
1801
|
# value: "NonEmptyString",
|
1241
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1802
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1242
1803
|
# },
|
1243
1804
|
# ],
|
1244
1805
|
# id: [
|
1245
1806
|
# {
|
1246
1807
|
# value: "NonEmptyString",
|
1247
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1808
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1248
1809
|
# },
|
1249
1810
|
# ],
|
1250
1811
|
# generator_id: [
|
1251
1812
|
# {
|
1252
1813
|
# value: "NonEmptyString",
|
1253
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1814
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1254
1815
|
# },
|
1255
1816
|
# ],
|
1256
1817
|
# type: [
|
1257
1818
|
# {
|
1258
1819
|
# value: "NonEmptyString",
|
1259
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1820
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1260
1821
|
# },
|
1261
1822
|
# ],
|
1262
1823
|
# first_observed_at: [
|
@@ -1316,7 +1877,7 @@ module Aws::SecurityHub
|
|
1316
1877
|
# severity_label: [
|
1317
1878
|
# {
|
1318
1879
|
# value: "NonEmptyString",
|
1319
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1880
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1320
1881
|
# },
|
1321
1882
|
# ],
|
1322
1883
|
# confidence: [
|
@@ -1336,87 +1897,87 @@ module Aws::SecurityHub
|
|
1336
1897
|
# title: [
|
1337
1898
|
# {
|
1338
1899
|
# value: "NonEmptyString",
|
1339
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1900
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1340
1901
|
# },
|
1341
1902
|
# ],
|
1342
1903
|
# description: [
|
1343
1904
|
# {
|
1344
1905
|
# value: "NonEmptyString",
|
1345
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1906
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1346
1907
|
# },
|
1347
1908
|
# ],
|
1348
1909
|
# recommendation_text: [
|
1349
1910
|
# {
|
1350
1911
|
# value: "NonEmptyString",
|
1351
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1912
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1352
1913
|
# },
|
1353
1914
|
# ],
|
1354
1915
|
# source_url: [
|
1355
1916
|
# {
|
1356
1917
|
# value: "NonEmptyString",
|
1357
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1918
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1358
1919
|
# },
|
1359
1920
|
# ],
|
1360
1921
|
# product_fields: [
|
1361
1922
|
# {
|
1362
1923
|
# key: "NonEmptyString",
|
1363
1924
|
# value: "NonEmptyString",
|
1364
|
-
# comparison: "EQUALS", # accepts EQUALS
|
1925
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1365
1926
|
# },
|
1366
1927
|
# ],
|
1367
1928
|
# product_name: [
|
1368
1929
|
# {
|
1369
1930
|
# value: "NonEmptyString",
|
1370
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1931
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1371
1932
|
# },
|
1372
1933
|
# ],
|
1373
1934
|
# company_name: [
|
1374
1935
|
# {
|
1375
1936
|
# value: "NonEmptyString",
|
1376
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1937
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1377
1938
|
# },
|
1378
1939
|
# ],
|
1379
1940
|
# user_defined_fields: [
|
1380
1941
|
# {
|
1381
1942
|
# key: "NonEmptyString",
|
1382
1943
|
# value: "NonEmptyString",
|
1383
|
-
# comparison: "EQUALS", # accepts EQUALS
|
1944
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1384
1945
|
# },
|
1385
1946
|
# ],
|
1386
1947
|
# malware_name: [
|
1387
1948
|
# {
|
1388
1949
|
# value: "NonEmptyString",
|
1389
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1950
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1390
1951
|
# },
|
1391
1952
|
# ],
|
1392
1953
|
# malware_type: [
|
1393
1954
|
# {
|
1394
1955
|
# value: "NonEmptyString",
|
1395
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1956
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1396
1957
|
# },
|
1397
1958
|
# ],
|
1398
1959
|
# malware_path: [
|
1399
1960
|
# {
|
1400
1961
|
# value: "NonEmptyString",
|
1401
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1962
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1402
1963
|
# },
|
1403
1964
|
# ],
|
1404
1965
|
# malware_state: [
|
1405
1966
|
# {
|
1406
1967
|
# value: "NonEmptyString",
|
1407
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1968
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1408
1969
|
# },
|
1409
1970
|
# ],
|
1410
1971
|
# network_direction: [
|
1411
1972
|
# {
|
1412
1973
|
# value: "NonEmptyString",
|
1413
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1974
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1414
1975
|
# },
|
1415
1976
|
# ],
|
1416
1977
|
# network_protocol: [
|
1417
1978
|
# {
|
1418
1979
|
# value: "NonEmptyString",
|
1419
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
1980
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1420
1981
|
# },
|
1421
1982
|
# ],
|
1422
1983
|
# network_source_ip_v4: [
|
@@ -1439,13 +2000,13 @@ module Aws::SecurityHub
|
|
1439
2000
|
# network_source_domain: [
|
1440
2001
|
# {
|
1441
2002
|
# value: "NonEmptyString",
|
1442
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2003
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1443
2004
|
# },
|
1444
2005
|
# ],
|
1445
2006
|
# network_source_mac: [
|
1446
2007
|
# {
|
1447
2008
|
# value: "NonEmptyString",
|
1448
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2009
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1449
2010
|
# },
|
1450
2011
|
# ],
|
1451
2012
|
# network_destination_ip_v4: [
|
@@ -1468,19 +2029,19 @@ module Aws::SecurityHub
|
|
1468
2029
|
# network_destination_domain: [
|
1469
2030
|
# {
|
1470
2031
|
# value: "NonEmptyString",
|
1471
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2032
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1472
2033
|
# },
|
1473
2034
|
# ],
|
1474
2035
|
# process_name: [
|
1475
2036
|
# {
|
1476
2037
|
# value: "NonEmptyString",
|
1477
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2038
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1478
2039
|
# },
|
1479
2040
|
# ],
|
1480
2041
|
# process_path: [
|
1481
2042
|
# {
|
1482
2043
|
# value: "NonEmptyString",
|
1483
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2044
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1484
2045
|
# },
|
1485
2046
|
# ],
|
1486
2047
|
# process_pid: [
|
@@ -1520,19 +2081,19 @@ module Aws::SecurityHub
|
|
1520
2081
|
# threat_intel_indicator_type: [
|
1521
2082
|
# {
|
1522
2083
|
# value: "NonEmptyString",
|
1523
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2084
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1524
2085
|
# },
|
1525
2086
|
# ],
|
1526
2087
|
# threat_intel_indicator_value: [
|
1527
2088
|
# {
|
1528
2089
|
# value: "NonEmptyString",
|
1529
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2090
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1530
2091
|
# },
|
1531
2092
|
# ],
|
1532
2093
|
# threat_intel_indicator_category: [
|
1533
2094
|
# {
|
1534
2095
|
# value: "NonEmptyString",
|
1535
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2096
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1536
2097
|
# },
|
1537
2098
|
# ],
|
1538
2099
|
# threat_intel_indicator_last_observed_at: [
|
@@ -1548,56 +2109,56 @@ module Aws::SecurityHub
|
|
1548
2109
|
# threat_intel_indicator_source: [
|
1549
2110
|
# {
|
1550
2111
|
# value: "NonEmptyString",
|
1551
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2112
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1552
2113
|
# },
|
1553
2114
|
# ],
|
1554
2115
|
# threat_intel_indicator_source_url: [
|
1555
2116
|
# {
|
1556
2117
|
# value: "NonEmptyString",
|
1557
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2118
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1558
2119
|
# },
|
1559
2120
|
# ],
|
1560
2121
|
# resource_type: [
|
1561
2122
|
# {
|
1562
2123
|
# value: "NonEmptyString",
|
1563
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2124
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1564
2125
|
# },
|
1565
2126
|
# ],
|
1566
2127
|
# resource_id: [
|
1567
2128
|
# {
|
1568
2129
|
# value: "NonEmptyString",
|
1569
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2130
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1570
2131
|
# },
|
1571
2132
|
# ],
|
1572
2133
|
# resource_partition: [
|
1573
2134
|
# {
|
1574
2135
|
# value: "NonEmptyString",
|
1575
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2136
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1576
2137
|
# },
|
1577
2138
|
# ],
|
1578
2139
|
# resource_region: [
|
1579
2140
|
# {
|
1580
2141
|
# value: "NonEmptyString",
|
1581
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2142
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1582
2143
|
# },
|
1583
2144
|
# ],
|
1584
2145
|
# resource_tags: [
|
1585
2146
|
# {
|
1586
2147
|
# key: "NonEmptyString",
|
1587
2148
|
# value: "NonEmptyString",
|
1588
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2149
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1589
2150
|
# },
|
1590
2151
|
# ],
|
1591
2152
|
# resource_aws_ec2_instance_type: [
|
1592
2153
|
# {
|
1593
2154
|
# value: "NonEmptyString",
|
1594
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2155
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1595
2156
|
# },
|
1596
2157
|
# ],
|
1597
2158
|
# resource_aws_ec2_instance_image_id: [
|
1598
2159
|
# {
|
1599
2160
|
# value: "NonEmptyString",
|
1600
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2161
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1601
2162
|
# },
|
1602
2163
|
# ],
|
1603
2164
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -1613,25 +2174,25 @@ module Aws::SecurityHub
|
|
1613
2174
|
# resource_aws_ec2_instance_key_name: [
|
1614
2175
|
# {
|
1615
2176
|
# value: "NonEmptyString",
|
1616
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2177
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1617
2178
|
# },
|
1618
2179
|
# ],
|
1619
2180
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
1620
2181
|
# {
|
1621
2182
|
# value: "NonEmptyString",
|
1622
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2183
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1623
2184
|
# },
|
1624
2185
|
# ],
|
1625
2186
|
# resource_aws_ec2_instance_vpc_id: [
|
1626
2187
|
# {
|
1627
2188
|
# value: "NonEmptyString",
|
1628
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2189
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1629
2190
|
# },
|
1630
2191
|
# ],
|
1631
2192
|
# resource_aws_ec2_instance_subnet_id: [
|
1632
2193
|
# {
|
1633
2194
|
# value: "NonEmptyString",
|
1634
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2195
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1635
2196
|
# },
|
1636
2197
|
# ],
|
1637
2198
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -1647,25 +2208,25 @@ module Aws::SecurityHub
|
|
1647
2208
|
# resource_aws_s3_bucket_owner_id: [
|
1648
2209
|
# {
|
1649
2210
|
# value: "NonEmptyString",
|
1650
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2211
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1651
2212
|
# },
|
1652
2213
|
# ],
|
1653
2214
|
# resource_aws_s3_bucket_owner_name: [
|
1654
2215
|
# {
|
1655
2216
|
# value: "NonEmptyString",
|
1656
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2217
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1657
2218
|
# },
|
1658
2219
|
# ],
|
1659
2220
|
# resource_aws_iam_access_key_user_name: [
|
1660
2221
|
# {
|
1661
2222
|
# value: "NonEmptyString",
|
1662
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2223
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1663
2224
|
# },
|
1664
2225
|
# ],
|
1665
2226
|
# resource_aws_iam_access_key_status: [
|
1666
2227
|
# {
|
1667
2228
|
# value: "NonEmptyString",
|
1668
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2229
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1669
2230
|
# },
|
1670
2231
|
# ],
|
1671
2232
|
# resource_aws_iam_access_key_created_at: [
|
@@ -1681,19 +2242,19 @@ module Aws::SecurityHub
|
|
1681
2242
|
# resource_container_name: [
|
1682
2243
|
# {
|
1683
2244
|
# value: "NonEmptyString",
|
1684
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2245
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1685
2246
|
# },
|
1686
2247
|
# ],
|
1687
2248
|
# resource_container_image_id: [
|
1688
2249
|
# {
|
1689
2250
|
# value: "NonEmptyString",
|
1690
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2251
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1691
2252
|
# },
|
1692
2253
|
# ],
|
1693
2254
|
# resource_container_image_name: [
|
1694
2255
|
# {
|
1695
2256
|
# value: "NonEmptyString",
|
1696
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2257
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1697
2258
|
# },
|
1698
2259
|
# ],
|
1699
2260
|
# resource_container_launched_at: [
|
@@ -1710,55 +2271,55 @@ module Aws::SecurityHub
|
|
1710
2271
|
# {
|
1711
2272
|
# key: "NonEmptyString",
|
1712
2273
|
# value: "NonEmptyString",
|
1713
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2274
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1714
2275
|
# },
|
1715
2276
|
# ],
|
1716
2277
|
# compliance_status: [
|
1717
2278
|
# {
|
1718
2279
|
# value: "NonEmptyString",
|
1719
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2280
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1720
2281
|
# },
|
1721
2282
|
# ],
|
1722
2283
|
# verification_state: [
|
1723
2284
|
# {
|
1724
2285
|
# value: "NonEmptyString",
|
1725
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2286
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1726
2287
|
# },
|
1727
2288
|
# ],
|
1728
2289
|
# workflow_state: [
|
1729
2290
|
# {
|
1730
2291
|
# value: "NonEmptyString",
|
1731
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2292
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1732
2293
|
# },
|
1733
2294
|
# ],
|
1734
2295
|
# workflow_status: [
|
1735
2296
|
# {
|
1736
2297
|
# value: "NonEmptyString",
|
1737
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2298
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1738
2299
|
# },
|
1739
2300
|
# ],
|
1740
2301
|
# record_state: [
|
1741
2302
|
# {
|
1742
2303
|
# value: "NonEmptyString",
|
1743
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2304
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1744
2305
|
# },
|
1745
2306
|
# ],
|
1746
2307
|
# related_findings_product_arn: [
|
1747
2308
|
# {
|
1748
2309
|
# value: "NonEmptyString",
|
1749
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2310
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1750
2311
|
# },
|
1751
2312
|
# ],
|
1752
2313
|
# related_findings_id: [
|
1753
2314
|
# {
|
1754
2315
|
# value: "NonEmptyString",
|
1755
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2316
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1756
2317
|
# },
|
1757
2318
|
# ],
|
1758
2319
|
# note_text: [
|
1759
2320
|
# {
|
1760
2321
|
# value: "NonEmptyString",
|
1761
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2322
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1762
2323
|
# },
|
1763
2324
|
# ],
|
1764
2325
|
# note_updated_at: [
|
@@ -1774,7 +2335,7 @@ module Aws::SecurityHub
|
|
1774
2335
|
# note_updated_by: [
|
1775
2336
|
# {
|
1776
2337
|
# value: "NonEmptyString",
|
1777
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2338
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1778
2339
|
# },
|
1779
2340
|
# ],
|
1780
2341
|
# keyword: [
|
@@ -2068,6 +2629,7 @@ module Aws::SecurityHub
|
|
2068
2629
|
#
|
2069
2630
|
# * {Types::DescribeHubResponse#hub_arn #hub_arn} => String
|
2070
2631
|
# * {Types::DescribeHubResponse#subscribed_at #subscribed_at} => String
|
2632
|
+
# * {Types::DescribeHubResponse#auto_enable_controls #auto_enable_controls} => Boolean
|
2071
2633
|
#
|
2072
2634
|
# @example Request syntax with placeholder values
|
2073
2635
|
#
|
@@ -2079,6 +2641,7 @@ module Aws::SecurityHub
|
|
2079
2641
|
#
|
2080
2642
|
# resp.hub_arn #=> String
|
2081
2643
|
# resp.subscribed_at #=> String
|
2644
|
+
# resp.auto_enable_controls #=> Boolean
|
2082
2645
|
#
|
2083
2646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeHub AWS API Documentation
|
2084
2647
|
#
|
@@ -2495,6 +3058,10 @@ module Aws::SecurityHub
|
|
2495
3058
|
# The finding attributes used to define a condition to filter the
|
2496
3059
|
# returned findings.
|
2497
3060
|
#
|
3061
|
+
# Note that in the available filter fields, `WorkflowState` is
|
3062
|
+
# deprecated. To search for a finding based on its workflow status, use
|
3063
|
+
# `WorkflowStatus`.
|
3064
|
+
#
|
2498
3065
|
# @option params [Array<Types::SortCriterion>] :sort_criteria
|
2499
3066
|
# The finding attributes used to sort the list of returned findings.
|
2500
3067
|
#
|
@@ -2523,31 +3090,31 @@ module Aws::SecurityHub
|
|
2523
3090
|
# product_arn: [
|
2524
3091
|
# {
|
2525
3092
|
# value: "NonEmptyString",
|
2526
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3093
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2527
3094
|
# },
|
2528
3095
|
# ],
|
2529
3096
|
# aws_account_id: [
|
2530
3097
|
# {
|
2531
3098
|
# value: "NonEmptyString",
|
2532
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3099
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2533
3100
|
# },
|
2534
3101
|
# ],
|
2535
3102
|
# id: [
|
2536
3103
|
# {
|
2537
3104
|
# value: "NonEmptyString",
|
2538
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3105
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2539
3106
|
# },
|
2540
3107
|
# ],
|
2541
3108
|
# generator_id: [
|
2542
3109
|
# {
|
2543
3110
|
# value: "NonEmptyString",
|
2544
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3111
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2545
3112
|
# },
|
2546
3113
|
# ],
|
2547
3114
|
# type: [
|
2548
3115
|
# {
|
2549
3116
|
# value: "NonEmptyString",
|
2550
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3117
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2551
3118
|
# },
|
2552
3119
|
# ],
|
2553
3120
|
# first_observed_at: [
|
@@ -2607,7 +3174,7 @@ module Aws::SecurityHub
|
|
2607
3174
|
# severity_label: [
|
2608
3175
|
# {
|
2609
3176
|
# value: "NonEmptyString",
|
2610
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3177
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2611
3178
|
# },
|
2612
3179
|
# ],
|
2613
3180
|
# confidence: [
|
@@ -2627,87 +3194,87 @@ module Aws::SecurityHub
|
|
2627
3194
|
# title: [
|
2628
3195
|
# {
|
2629
3196
|
# value: "NonEmptyString",
|
2630
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3197
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2631
3198
|
# },
|
2632
3199
|
# ],
|
2633
3200
|
# description: [
|
2634
3201
|
# {
|
2635
3202
|
# value: "NonEmptyString",
|
2636
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3203
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2637
3204
|
# },
|
2638
3205
|
# ],
|
2639
3206
|
# recommendation_text: [
|
2640
3207
|
# {
|
2641
3208
|
# value: "NonEmptyString",
|
2642
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3209
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2643
3210
|
# },
|
2644
3211
|
# ],
|
2645
3212
|
# source_url: [
|
2646
3213
|
# {
|
2647
3214
|
# value: "NonEmptyString",
|
2648
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3215
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2649
3216
|
# },
|
2650
3217
|
# ],
|
2651
3218
|
# product_fields: [
|
2652
3219
|
# {
|
2653
3220
|
# key: "NonEmptyString",
|
2654
3221
|
# value: "NonEmptyString",
|
2655
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3222
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2656
3223
|
# },
|
2657
3224
|
# ],
|
2658
3225
|
# product_name: [
|
2659
3226
|
# {
|
2660
3227
|
# value: "NonEmptyString",
|
2661
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3228
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2662
3229
|
# },
|
2663
3230
|
# ],
|
2664
3231
|
# company_name: [
|
2665
3232
|
# {
|
2666
3233
|
# value: "NonEmptyString",
|
2667
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3234
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2668
3235
|
# },
|
2669
3236
|
# ],
|
2670
3237
|
# user_defined_fields: [
|
2671
3238
|
# {
|
2672
3239
|
# key: "NonEmptyString",
|
2673
3240
|
# value: "NonEmptyString",
|
2674
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3241
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2675
3242
|
# },
|
2676
3243
|
# ],
|
2677
3244
|
# malware_name: [
|
2678
3245
|
# {
|
2679
3246
|
# value: "NonEmptyString",
|
2680
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3247
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2681
3248
|
# },
|
2682
3249
|
# ],
|
2683
3250
|
# malware_type: [
|
2684
3251
|
# {
|
2685
3252
|
# value: "NonEmptyString",
|
2686
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3253
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2687
3254
|
# },
|
2688
3255
|
# ],
|
2689
3256
|
# malware_path: [
|
2690
3257
|
# {
|
2691
3258
|
# value: "NonEmptyString",
|
2692
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3259
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2693
3260
|
# },
|
2694
3261
|
# ],
|
2695
3262
|
# malware_state: [
|
2696
3263
|
# {
|
2697
3264
|
# value: "NonEmptyString",
|
2698
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3265
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2699
3266
|
# },
|
2700
3267
|
# ],
|
2701
3268
|
# network_direction: [
|
2702
3269
|
# {
|
2703
3270
|
# value: "NonEmptyString",
|
2704
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3271
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2705
3272
|
# },
|
2706
3273
|
# ],
|
2707
3274
|
# network_protocol: [
|
2708
3275
|
# {
|
2709
3276
|
# value: "NonEmptyString",
|
2710
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3277
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2711
3278
|
# },
|
2712
3279
|
# ],
|
2713
3280
|
# network_source_ip_v4: [
|
@@ -2730,13 +3297,13 @@ module Aws::SecurityHub
|
|
2730
3297
|
# network_source_domain: [
|
2731
3298
|
# {
|
2732
3299
|
# value: "NonEmptyString",
|
2733
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3300
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2734
3301
|
# },
|
2735
3302
|
# ],
|
2736
3303
|
# network_source_mac: [
|
2737
3304
|
# {
|
2738
3305
|
# value: "NonEmptyString",
|
2739
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3306
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2740
3307
|
# },
|
2741
3308
|
# ],
|
2742
3309
|
# network_destination_ip_v4: [
|
@@ -2759,19 +3326,19 @@ module Aws::SecurityHub
|
|
2759
3326
|
# network_destination_domain: [
|
2760
3327
|
# {
|
2761
3328
|
# value: "NonEmptyString",
|
2762
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3329
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2763
3330
|
# },
|
2764
3331
|
# ],
|
2765
3332
|
# process_name: [
|
2766
3333
|
# {
|
2767
3334
|
# value: "NonEmptyString",
|
2768
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3335
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2769
3336
|
# },
|
2770
3337
|
# ],
|
2771
3338
|
# process_path: [
|
2772
3339
|
# {
|
2773
3340
|
# value: "NonEmptyString",
|
2774
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3341
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2775
3342
|
# },
|
2776
3343
|
# ],
|
2777
3344
|
# process_pid: [
|
@@ -2811,19 +3378,19 @@ module Aws::SecurityHub
|
|
2811
3378
|
# threat_intel_indicator_type: [
|
2812
3379
|
# {
|
2813
3380
|
# value: "NonEmptyString",
|
2814
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3381
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2815
3382
|
# },
|
2816
3383
|
# ],
|
2817
3384
|
# threat_intel_indicator_value: [
|
2818
3385
|
# {
|
2819
3386
|
# value: "NonEmptyString",
|
2820
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3387
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2821
3388
|
# },
|
2822
3389
|
# ],
|
2823
3390
|
# threat_intel_indicator_category: [
|
2824
3391
|
# {
|
2825
3392
|
# value: "NonEmptyString",
|
2826
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3393
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2827
3394
|
# },
|
2828
3395
|
# ],
|
2829
3396
|
# threat_intel_indicator_last_observed_at: [
|
@@ -2839,56 +3406,56 @@ module Aws::SecurityHub
|
|
2839
3406
|
# threat_intel_indicator_source: [
|
2840
3407
|
# {
|
2841
3408
|
# value: "NonEmptyString",
|
2842
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3409
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2843
3410
|
# },
|
2844
3411
|
# ],
|
2845
3412
|
# threat_intel_indicator_source_url: [
|
2846
3413
|
# {
|
2847
3414
|
# value: "NonEmptyString",
|
2848
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3415
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2849
3416
|
# },
|
2850
3417
|
# ],
|
2851
3418
|
# resource_type: [
|
2852
3419
|
# {
|
2853
3420
|
# value: "NonEmptyString",
|
2854
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3421
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2855
3422
|
# },
|
2856
3423
|
# ],
|
2857
3424
|
# resource_id: [
|
2858
3425
|
# {
|
2859
3426
|
# value: "NonEmptyString",
|
2860
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3427
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2861
3428
|
# },
|
2862
3429
|
# ],
|
2863
3430
|
# resource_partition: [
|
2864
3431
|
# {
|
2865
3432
|
# value: "NonEmptyString",
|
2866
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3433
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2867
3434
|
# },
|
2868
3435
|
# ],
|
2869
3436
|
# resource_region: [
|
2870
3437
|
# {
|
2871
3438
|
# value: "NonEmptyString",
|
2872
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3439
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2873
3440
|
# },
|
2874
3441
|
# ],
|
2875
3442
|
# resource_tags: [
|
2876
3443
|
# {
|
2877
3444
|
# key: "NonEmptyString",
|
2878
3445
|
# value: "NonEmptyString",
|
2879
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3446
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2880
3447
|
# },
|
2881
3448
|
# ],
|
2882
3449
|
# resource_aws_ec2_instance_type: [
|
2883
3450
|
# {
|
2884
3451
|
# value: "NonEmptyString",
|
2885
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3452
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2886
3453
|
# },
|
2887
3454
|
# ],
|
2888
3455
|
# resource_aws_ec2_instance_image_id: [
|
2889
3456
|
# {
|
2890
3457
|
# value: "NonEmptyString",
|
2891
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3458
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2892
3459
|
# },
|
2893
3460
|
# ],
|
2894
3461
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -2904,25 +3471,25 @@ module Aws::SecurityHub
|
|
2904
3471
|
# resource_aws_ec2_instance_key_name: [
|
2905
3472
|
# {
|
2906
3473
|
# value: "NonEmptyString",
|
2907
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3474
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2908
3475
|
# },
|
2909
3476
|
# ],
|
2910
3477
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
2911
3478
|
# {
|
2912
3479
|
# value: "NonEmptyString",
|
2913
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3480
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2914
3481
|
# },
|
2915
3482
|
# ],
|
2916
3483
|
# resource_aws_ec2_instance_vpc_id: [
|
2917
3484
|
# {
|
2918
3485
|
# value: "NonEmptyString",
|
2919
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3486
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2920
3487
|
# },
|
2921
3488
|
# ],
|
2922
3489
|
# resource_aws_ec2_instance_subnet_id: [
|
2923
3490
|
# {
|
2924
3491
|
# value: "NonEmptyString",
|
2925
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3492
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2926
3493
|
# },
|
2927
3494
|
# ],
|
2928
3495
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -2938,25 +3505,25 @@ module Aws::SecurityHub
|
|
2938
3505
|
# resource_aws_s3_bucket_owner_id: [
|
2939
3506
|
# {
|
2940
3507
|
# value: "NonEmptyString",
|
2941
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3508
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2942
3509
|
# },
|
2943
3510
|
# ],
|
2944
3511
|
# resource_aws_s3_bucket_owner_name: [
|
2945
3512
|
# {
|
2946
3513
|
# value: "NonEmptyString",
|
2947
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3514
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2948
3515
|
# },
|
2949
3516
|
# ],
|
2950
3517
|
# resource_aws_iam_access_key_user_name: [
|
2951
3518
|
# {
|
2952
3519
|
# value: "NonEmptyString",
|
2953
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3520
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2954
3521
|
# },
|
2955
3522
|
# ],
|
2956
3523
|
# resource_aws_iam_access_key_status: [
|
2957
3524
|
# {
|
2958
3525
|
# value: "NonEmptyString",
|
2959
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3526
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2960
3527
|
# },
|
2961
3528
|
# ],
|
2962
3529
|
# resource_aws_iam_access_key_created_at: [
|
@@ -2972,19 +3539,19 @@ module Aws::SecurityHub
|
|
2972
3539
|
# resource_container_name: [
|
2973
3540
|
# {
|
2974
3541
|
# value: "NonEmptyString",
|
2975
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3542
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2976
3543
|
# },
|
2977
3544
|
# ],
|
2978
3545
|
# resource_container_image_id: [
|
2979
3546
|
# {
|
2980
3547
|
# value: "NonEmptyString",
|
2981
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3548
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2982
3549
|
# },
|
2983
3550
|
# ],
|
2984
3551
|
# resource_container_image_name: [
|
2985
3552
|
# {
|
2986
3553
|
# value: "NonEmptyString",
|
2987
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3554
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2988
3555
|
# },
|
2989
3556
|
# ],
|
2990
3557
|
# resource_container_launched_at: [
|
@@ -3001,55 +3568,55 @@ module Aws::SecurityHub
|
|
3001
3568
|
# {
|
3002
3569
|
# key: "NonEmptyString",
|
3003
3570
|
# value: "NonEmptyString",
|
3004
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3571
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
3005
3572
|
# },
|
3006
3573
|
# ],
|
3007
3574
|
# compliance_status: [
|
3008
3575
|
# {
|
3009
3576
|
# value: "NonEmptyString",
|
3010
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3577
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3011
3578
|
# },
|
3012
3579
|
# ],
|
3013
3580
|
# verification_state: [
|
3014
3581
|
# {
|
3015
3582
|
# value: "NonEmptyString",
|
3016
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3583
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3017
3584
|
# },
|
3018
3585
|
# ],
|
3019
3586
|
# workflow_state: [
|
3020
3587
|
# {
|
3021
3588
|
# value: "NonEmptyString",
|
3022
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3589
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3023
3590
|
# },
|
3024
3591
|
# ],
|
3025
3592
|
# workflow_status: [
|
3026
3593
|
# {
|
3027
3594
|
# value: "NonEmptyString",
|
3028
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3595
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3029
3596
|
# },
|
3030
3597
|
# ],
|
3031
3598
|
# record_state: [
|
3032
3599
|
# {
|
3033
3600
|
# value: "NonEmptyString",
|
3034
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3601
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3035
3602
|
# },
|
3036
3603
|
# ],
|
3037
3604
|
# related_findings_product_arn: [
|
3038
3605
|
# {
|
3039
3606
|
# value: "NonEmptyString",
|
3040
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3607
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3041
3608
|
# },
|
3042
3609
|
# ],
|
3043
3610
|
# related_findings_id: [
|
3044
3611
|
# {
|
3045
3612
|
# value: "NonEmptyString",
|
3046
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3613
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3047
3614
|
# },
|
3048
3615
|
# ],
|
3049
3616
|
# note_text: [
|
3050
3617
|
# {
|
3051
3618
|
# value: "NonEmptyString",
|
3052
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3619
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3053
3620
|
# },
|
3054
3621
|
# ],
|
3055
3622
|
# note_updated_at: [
|
@@ -3065,7 +3632,7 @@ module Aws::SecurityHub
|
|
3065
3632
|
# note_updated_by: [
|
3066
3633
|
# {
|
3067
3634
|
# value: "NonEmptyString",
|
3068
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3635
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3069
3636
|
# },
|
3070
3637
|
# ],
|
3071
3638
|
# keyword: [
|
@@ -3120,6 +3687,8 @@ module Aws::SecurityHub
|
|
3120
3687
|
# resp.findings[0].malware[0].state #=> String, one of "OBSERVED", "REMOVAL_FAILED", "REMOVED"
|
3121
3688
|
# resp.findings[0].network.direction #=> String, one of "IN", "OUT"
|
3122
3689
|
# resp.findings[0].network.protocol #=> String
|
3690
|
+
# resp.findings[0].network.open_port_range.begin #=> Integer
|
3691
|
+
# resp.findings[0].network.open_port_range.end #=> Integer
|
3123
3692
|
# resp.findings[0].network.source_ip_v4 #=> String
|
3124
3693
|
# resp.findings[0].network.source_ip_v6 #=> String
|
3125
3694
|
# resp.findings[0].network.source_port #=> Integer
|
@@ -3129,6 +3698,31 @@ module Aws::SecurityHub
|
|
3129
3698
|
# resp.findings[0].network.destination_ip_v6 #=> String
|
3130
3699
|
# resp.findings[0].network.destination_port #=> Integer
|
3131
3700
|
# resp.findings[0].network.destination_domain #=> String
|
3701
|
+
# resp.findings[0].network_path #=> Array
|
3702
|
+
# resp.findings[0].network_path[0].component_id #=> String
|
3703
|
+
# resp.findings[0].network_path[0].component_type #=> String
|
3704
|
+
# resp.findings[0].network_path[0].egress.protocol #=> String
|
3705
|
+
# resp.findings[0].network_path[0].egress.destination.address #=> Array
|
3706
|
+
# resp.findings[0].network_path[0].egress.destination.address[0] #=> String
|
3707
|
+
# resp.findings[0].network_path[0].egress.destination.port_ranges #=> Array
|
3708
|
+
# resp.findings[0].network_path[0].egress.destination.port_ranges[0].begin #=> Integer
|
3709
|
+
# resp.findings[0].network_path[0].egress.destination.port_ranges[0].end #=> Integer
|
3710
|
+
# resp.findings[0].network_path[0].egress.source.address #=> Array
|
3711
|
+
# resp.findings[0].network_path[0].egress.source.address[0] #=> String
|
3712
|
+
# resp.findings[0].network_path[0].egress.source.port_ranges #=> Array
|
3713
|
+
# resp.findings[0].network_path[0].egress.source.port_ranges[0].begin #=> Integer
|
3714
|
+
# resp.findings[0].network_path[0].egress.source.port_ranges[0].end #=> Integer
|
3715
|
+
# resp.findings[0].network_path[0].ingress.protocol #=> String
|
3716
|
+
# resp.findings[0].network_path[0].ingress.destination.address #=> Array
|
3717
|
+
# resp.findings[0].network_path[0].ingress.destination.address[0] #=> String
|
3718
|
+
# resp.findings[0].network_path[0].ingress.destination.port_ranges #=> Array
|
3719
|
+
# resp.findings[0].network_path[0].ingress.destination.port_ranges[0].begin #=> Integer
|
3720
|
+
# resp.findings[0].network_path[0].ingress.destination.port_ranges[0].end #=> Integer
|
3721
|
+
# resp.findings[0].network_path[0].ingress.source.address #=> Array
|
3722
|
+
# resp.findings[0].network_path[0].ingress.source.address[0] #=> String
|
3723
|
+
# resp.findings[0].network_path[0].ingress.source.port_ranges #=> Array
|
3724
|
+
# resp.findings[0].network_path[0].ingress.source.port_ranges[0].begin #=> Integer
|
3725
|
+
# resp.findings[0].network_path[0].ingress.source.port_ranges[0].end #=> Integer
|
3132
3726
|
# resp.findings[0].process.name #=> String
|
3133
3727
|
# resp.findings[0].process.path #=> String
|
3134
3728
|
# resp.findings[0].process.pid #=> Integer
|
@@ -3149,6 +3743,12 @@ module Aws::SecurityHub
|
|
3149
3743
|
# resp.findings[0].resources[0].region #=> String
|
3150
3744
|
# resp.findings[0].resources[0].tags #=> Hash
|
3151
3745
|
# resp.findings[0].resources[0].tags["NonEmptyString"] #=> String
|
3746
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_configuration_name #=> String
|
3747
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names #=> Array
|
3748
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names[0] #=> String
|
3749
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_type #=> String
|
3750
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_grace_period #=> Integer
|
3751
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.created_time #=> String
|
3152
3752
|
# resp.findings[0].resources[0].details.aws_code_build_project.encryption_key #=> String
|
3153
3753
|
# resp.findings[0].resources[0].details.aws_code_build_project.environment.certificate #=> String
|
3154
3754
|
# resp.findings[0].resources[0].details.aws_code_build_project.environment.image_pull_credentials_type #=> String
|
@@ -3240,6 +3840,37 @@ module Aws::SecurityHub
|
|
3240
3840
|
# resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ipv_6_ranges[0].cidr_ipv_6 #=> String
|
3241
3841
|
# resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids #=> Array
|
3242
3842
|
# resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids[0].prefix_list_id #=> String
|
3843
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.create_time #=> String
|
3844
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.encrypted #=> Boolean
|
3845
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.size #=> Integer
|
3846
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.snapshot_id #=> String
|
3847
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.status #=> String
|
3848
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.kms_key_id #=> String
|
3849
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments #=> Array
|
3850
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].attach_time #=> String
|
3851
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].delete_on_termination #=> Boolean
|
3852
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].instance_id #=> String
|
3853
|
+
# resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].status #=> String
|
3854
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set #=> Array
|
3855
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].association_id #=> String
|
3856
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block #=> String
|
3857
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block_state #=> String
|
3858
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set #=> Array
|
3859
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].association_id #=> String
|
3860
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
3861
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].cidr_block_state #=> String
|
3862
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.dhcp_options_id #=> String
|
3863
|
+
# resp.findings[0].resources[0].details.aws_ec2_vpc.state #=> String
|
3864
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.instance_id #=> String
|
3865
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.public_ip #=> String
|
3866
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.allocation_id #=> String
|
3867
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.association_id #=> String
|
3868
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.domain #=> String
|
3869
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.public_ipv_4_pool #=> String
|
3870
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_border_group #=> String
|
3871
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_id #=> String
|
3872
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_owner_id #=> String
|
3873
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.private_ip_address #=> String
|
3243
3874
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones #=> Array
|
3244
3875
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].zone_name #=> String
|
3245
3876
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].subnet_id #=> String
|
@@ -3285,12 +3916,115 @@ module Aws::SecurityHub
|
|
3285
3916
|
# resp.findings[0].resources[0].details.aws_s3_object.content_type #=> String
|
3286
3917
|
# resp.findings[0].resources[0].details.aws_s3_object.server_side_encryption #=> String
|
3287
3918
|
# resp.findings[0].resources[0].details.aws_s3_object.ssekms_key_id #=> String
|
3919
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_rules.automatically_after_days #=> Integer
|
3920
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_occurred_within_frequency #=> Boolean
|
3921
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.kms_key_id #=> String
|
3922
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_enabled #=> Boolean
|
3923
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_lambda_arn #=> String
|
3924
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.deleted #=> Boolean
|
3925
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.name #=> String
|
3926
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.description #=> String
|
3288
3927
|
# resp.findings[0].resources[0].details.aws_iam_access_key.user_name #=> String
|
3289
3928
|
# resp.findings[0].resources[0].details.aws_iam_access_key.status #=> String, one of "Active", "Inactive"
|
3290
3929
|
# resp.findings[0].resources[0].details.aws_iam_access_key.created_at #=> String
|
3291
3930
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_id #=> String
|
3292
3931
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_type #=> String
|
3293
3932
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_name #=> String
|
3933
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies #=> Array
|
3934
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_name #=> String
|
3935
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_arn #=> String
|
3936
|
+
# resp.findings[0].resources[0].details.aws_iam_user.create_date #=> String
|
3937
|
+
# resp.findings[0].resources[0].details.aws_iam_user.group_list #=> Array
|
3938
|
+
# resp.findings[0].resources[0].details.aws_iam_user.group_list[0] #=> String
|
3939
|
+
# resp.findings[0].resources[0].details.aws_iam_user.path #=> String
|
3940
|
+
# resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_arn #=> String
|
3941
|
+
# resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_type #=> String
|
3942
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_id #=> String
|
3943
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_name #=> String
|
3944
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_policy_list #=> Array
|
3945
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_policy_list[0].policy_name #=> String
|
3946
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.attachment_count #=> Integer
|
3947
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.create_date #=> String
|
3948
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.default_version_id #=> String
|
3949
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.description #=> String
|
3950
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.is_attachable #=> Boolean
|
3951
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.path #=> String
|
3952
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.permissions_boundary_usage_count #=> Integer
|
3953
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_id #=> String
|
3954
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_name #=> String
|
3955
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list #=> Array
|
3956
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].version_id #=> String
|
3957
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].is_default_version #=> Boolean
|
3958
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].create_date #=> String
|
3959
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.update_date #=> String
|
3960
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions #=> Array
|
3961
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_name #=> String
|
3962
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_type #=> String
|
3963
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.billing_mode #=> String
|
3964
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.last_update_to_pay_per_request_date_time #=> String
|
3965
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.creation_date_time #=> String
|
3966
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes #=> Array
|
3967
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].backfilling #=> Boolean
|
3968
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_arn #=> String
|
3969
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_name #=> String
|
3970
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_size_bytes #=> Integer
|
3971
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_status #=> String
|
3972
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].item_count #=> Integer
|
3973
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema #=> Array
|
3974
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].attribute_name #=> String
|
3975
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].key_type #=> String
|
3976
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes #=> Array
|
3977
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes[0] #=> String
|
3978
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.projection_type #=> String
|
3979
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_decrease_date_time #=> String
|
3980
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_increase_date_time #=> String
|
3981
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.number_of_decreases_today #=> Integer
|
3982
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.read_capacity_units #=> Integer
|
3983
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.write_capacity_units #=> Integer
|
3984
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_table_version #=> String
|
3985
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.item_count #=> Integer
|
3986
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema #=> Array
|
3987
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].attribute_name #=> String
|
3988
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].key_type #=> String
|
3989
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_arn #=> String
|
3990
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_label #=> String
|
3991
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes #=> Array
|
3992
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_arn #=> String
|
3993
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_name #=> String
|
3994
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema #=> Array
|
3995
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].attribute_name #=> String
|
3996
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].key_type #=> String
|
3997
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes #=> Array
|
3998
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes[0] #=> String
|
3999
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.projection_type #=> String
|
4000
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_decrease_date_time #=> String
|
4001
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_increase_date_time #=> String
|
4002
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.number_of_decreases_today #=> Integer
|
4003
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.read_capacity_units #=> Integer
|
4004
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.write_capacity_units #=> Integer
|
4005
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas #=> Array
|
4006
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes #=> Array
|
4007
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4008
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4009
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].kms_master_key_id #=> String
|
4010
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4011
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].region_name #=> String
|
4012
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status #=> String
|
4013
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status_description #=> String
|
4014
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_backup_arn #=> String
|
4015
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_table_arn #=> String
|
4016
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_date_time #=> String
|
4017
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_in_progress #=> Boolean
|
4018
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.inaccessible_encryption_date_time #=> String
|
4019
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.status #=> String
|
4020
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.sse_type #=> String
|
4021
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.kms_master_key_arn #=> String
|
4022
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_enabled #=> Boolean
|
4023
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_view_type #=> String
|
4024
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_id #=> String
|
4025
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_name #=> String
|
4026
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_size_bytes #=> Integer
|
4027
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_status #=> String
|
3294
4028
|
# resp.findings[0].resources[0].details.aws_iam_role.assume_role_policy_document #=> String
|
3295
4029
|
# resp.findings[0].resources[0].details.aws_iam_role.create_date #=> String
|
3296
4030
|
# resp.findings[0].resources[0].details.aws_iam_role.role_id #=> String
|
@@ -3303,6 +4037,7 @@ module Aws::SecurityHub
|
|
3303
4037
|
# resp.findings[0].resources[0].details.aws_kms_key.key_manager #=> String
|
3304
4038
|
# resp.findings[0].resources[0].details.aws_kms_key.key_state #=> String
|
3305
4039
|
# resp.findings[0].resources[0].details.aws_kms_key.origin #=> String
|
4040
|
+
# resp.findings[0].resources[0].details.aws_kms_key.description #=> String
|
3306
4041
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_bucket #=> String
|
3307
4042
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_key #=> String
|
3308
4043
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_object_version #=> String
|
@@ -3363,6 +4098,91 @@ module Aws::SecurityHub
|
|
3363
4098
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups #=> Array
|
3364
4099
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].vpc_security_group_id #=> String
|
3365
4100
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].status #=> String
|
4101
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.multi_az #=> Boolean
|
4102
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enhanced_monitoring_resource_arn #=> String
|
4103
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_status #=> String
|
4104
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.master_username #=> String
|
4105
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.allocated_storage #=> Integer
|
4106
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_backup_window #=> String
|
4107
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.backup_retention_period #=> Integer
|
4108
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups #=> Array
|
4109
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups[0] #=> String
|
4110
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups #=> Array
|
4111
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].db_parameter_group_name #=> String
|
4112
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].parameter_apply_status #=> String
|
4113
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.availability_zone #=> String
|
4114
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_name #=> String
|
4115
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_description #=> String
|
4116
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.vpc_id #=> String
|
4117
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnet_group_status #=> String
|
4118
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets #=> Array
|
4119
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4120
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4121
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4122
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4123
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_maintenance_window #=> String
|
4124
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_class #=> String
|
4125
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.allocated_storage #=> Integer
|
4126
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.master_user_password #=> String
|
4127
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.port #=> Integer
|
4128
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.backup_retention_period #=> Integer
|
4129
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.multi_az #=> Boolean
|
4130
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.engine_version #=> String
|
4131
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.license_model #=> String
|
4132
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.iops #=> Integer
|
4133
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_identifier #=> String
|
4134
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.storage_type #=> String
|
4135
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.ca_certificate_identifier #=> String
|
4136
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_subnet_group_name #=> String
|
4137
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable #=> Array
|
4138
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable[0] #=> String
|
4139
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable #=> Array
|
4140
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable[0] #=> String
|
4141
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features #=> Array
|
4142
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].name #=> String
|
4143
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].value #=> String
|
4144
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.latest_restorable_time #=> String
|
4145
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.auto_minor_version_upgrade #=> Boolean
|
4146
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_source_db_instance_identifier #=> String
|
4147
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers #=> Array
|
4148
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers[0] #=> String
|
4149
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers #=> Array
|
4150
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
4151
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.license_model #=> String
|
4152
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.iops #=> Integer
|
4153
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships #=> Array
|
4154
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].option_group_name #=> String
|
4155
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].status #=> String
|
4156
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.character_set_name #=> String
|
4157
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.secondary_availability_zone #=> String
|
4158
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos #=> Array
|
4159
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status_type #=> String
|
4160
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].normal #=> Boolean
|
4161
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status #=> String
|
4162
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].message #=> String
|
4163
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.storage_type #=> String
|
4164
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships #=> Array
|
4165
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].domain #=> String
|
4166
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].status #=> String
|
4167
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].fqdn #=> String
|
4168
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].iam_role_name #=> String
|
4169
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.copy_tags_to_snapshot #=> Boolean
|
4170
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_interval #=> Integer
|
4171
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_role_arn #=> String
|
4172
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.promotion_tier #=> Integer
|
4173
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.timezone #=> String
|
4174
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_enabled #=> Boolean
|
4175
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_kms_key_id #=> String
|
4176
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_retention_period #=> Integer
|
4177
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports #=> Array
|
4178
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports[0] #=> String
|
4179
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features #=> Array
|
4180
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].name #=> String
|
4181
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].value #=> String
|
4182
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.address #=> String
|
4183
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.port #=> Integer
|
4184
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.hosted_zone_id #=> String
|
4185
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.max_allocated_storage #=> Integer
|
3366
4186
|
# resp.findings[0].resources[0].details.aws_sns_topic.kms_master_key_id #=> String
|
3367
4187
|
# resp.findings[0].resources[0].details.aws_sns_topic.subscription #=> Array
|
3368
4188
|
# resp.findings[0].resources[0].details.aws_sns_topic.subscription[0].endpoint #=> String
|
@@ -3384,6 +4204,109 @@ module Aws::SecurityHub
|
|
3384
4204
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].rule_id #=> String
|
3385
4205
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].type #=> String
|
3386
4206
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.web_acl_id #=> String
|
4207
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_snapshot_identifier #=> String
|
4208
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_instance_identifier #=> String
|
4209
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_create_time #=> String
|
4210
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine #=> String
|
4211
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.allocated_storage #=> Integer
|
4212
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.status #=> String
|
4213
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.port #=> Integer
|
4214
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.availability_zone #=> String
|
4215
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.vpc_id #=> String
|
4216
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.instance_create_time #=> String
|
4217
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.master_username #=> String
|
4218
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine_version #=> String
|
4219
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.license_model #=> String
|
4220
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_type #=> String
|
4221
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.iops #=> Integer
|
4222
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.option_group_name #=> String
|
4223
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.percent_progress #=> Integer
|
4224
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_region #=> String
|
4225
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_db_snapshot_identifier #=> String
|
4226
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.storage_type #=> String
|
4227
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.tde_credential_arn #=> String
|
4228
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.encrypted #=> Boolean
|
4229
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.kms_key_id #=> String
|
4230
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.timezone #=> String
|
4231
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.iam_database_authentication_enabled #=> Boolean
|
4232
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features #=> Array
|
4233
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].name #=> String
|
4234
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].value #=> String
|
4235
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.dbi_resource_id #=> String
|
4236
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones #=> Array
|
4237
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones[0] #=> String
|
4238
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_create_time #=> String
|
4239
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine #=> String
|
4240
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.allocated_storage #=> Integer
|
4241
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.status #=> String
|
4242
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.port #=> Integer
|
4243
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.vpc_id #=> String
|
4244
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.cluster_create_time #=> String
|
4245
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.master_username #=> String
|
4246
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine_version #=> String
|
4247
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.license_model #=> String
|
4248
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_type #=> String
|
4249
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.percent_progress #=> Integer
|
4250
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.storage_encrypted #=> Boolean
|
4251
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.kms_key_id #=> String
|
4252
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_identifier #=> String
|
4253
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_snapshot_identifier #=> String
|
4254
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
4255
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.allocated_storage #=> Integer
|
4256
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones #=> Array
|
4257
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones[0] #=> String
|
4258
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.backup_retention_period #=> Integer
|
4259
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.database_name #=> String
|
4260
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.status #=> String
|
4261
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.endpoint #=> String
|
4262
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.reader_endpoint #=> String
|
4263
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints #=> Array
|
4264
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints[0] #=> String
|
4265
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.multi_az #=> Boolean
|
4266
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine #=> String
|
4267
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_version #=> String
|
4268
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.port #=> Integer
|
4269
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.master_username #=> String
|
4270
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_backup_window #=> String
|
4271
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_maintenance_window #=> String
|
4272
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers #=> Array
|
4273
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers[0] #=> String
|
4274
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups #=> Array
|
4275
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].vpc_security_group_id #=> String
|
4276
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].status #=> String
|
4277
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.hosted_zone_id #=> String
|
4278
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.storage_encrypted #=> Boolean
|
4279
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.kms_key_id #=> String
|
4280
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_resource_id #=> String
|
4281
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles #=> Array
|
4282
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].role_arn #=> String
|
4283
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].status #=> String
|
4284
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.cluster_create_time #=> String
|
4285
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports #=> Array
|
4286
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports[0] #=> String
|
4287
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_mode #=> String
|
4288
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.deletion_protection #=> Boolean
|
4289
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.http_endpoint_enabled #=> Boolean
|
4290
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.activity_stream_status #=> String
|
4291
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.copy_tags_to_snapshot #=> Boolean
|
4292
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.cross_account_clone #=> Boolean
|
4293
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships #=> Array
|
4294
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].domain #=> String
|
4295
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].status #=> String
|
4296
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].fqdn #=> String
|
4297
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].iam_role_name #=> String
|
4298
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_parameter_group #=> String
|
4299
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_subnet_group #=> String
|
4300
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships #=> Array
|
4301
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].db_cluster_option_group_name #=> String
|
4302
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
4303
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_identifier #=> String
|
4304
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members #=> Array
|
4305
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
|
4306
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].promotion_tier #=> Integer
|
4307
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_instance_identifier #=> String
|
4308
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_cluster_parameter_group_status #=> String
|
4309
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.iam_database_authentication_enabled #=> Boolean
|
3387
4310
|
# resp.findings[0].resources[0].details.container.name #=> String
|
3388
4311
|
# resp.findings[0].resources[0].details.container.image_id #=> String
|
3389
4312
|
# resp.findings[0].resources[0].details.container.image_name #=> String
|
@@ -3406,6 +4329,38 @@ module Aws::SecurityHub
|
|
3406
4329
|
# resp.findings[0].note.text #=> String
|
3407
4330
|
# resp.findings[0].note.updated_by #=> String
|
3408
4331
|
# resp.findings[0].note.updated_at #=> String
|
4332
|
+
# resp.findings[0].vulnerabilities #=> Array
|
4333
|
+
# resp.findings[0].vulnerabilities[0].id #=> String
|
4334
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages #=> Array
|
4335
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].name #=> String
|
4336
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].version #=> String
|
4337
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].epoch #=> String
|
4338
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].release #=> String
|
4339
|
+
# resp.findings[0].vulnerabilities[0].vulnerable_packages[0].architecture #=> String
|
4340
|
+
# resp.findings[0].vulnerabilities[0].cvss #=> Array
|
4341
|
+
# resp.findings[0].vulnerabilities[0].cvss[0].version #=> String
|
4342
|
+
# resp.findings[0].vulnerabilities[0].cvss[0].base_score #=> Float
|
4343
|
+
# resp.findings[0].vulnerabilities[0].cvss[0].base_vector #=> String
|
4344
|
+
# resp.findings[0].vulnerabilities[0].related_vulnerabilities #=> Array
|
4345
|
+
# resp.findings[0].vulnerabilities[0].related_vulnerabilities[0] #=> String
|
4346
|
+
# resp.findings[0].vulnerabilities[0].vendor.name #=> String
|
4347
|
+
# resp.findings[0].vulnerabilities[0].vendor.url #=> String
|
4348
|
+
# resp.findings[0].vulnerabilities[0].vendor.vendor_severity #=> String
|
4349
|
+
# resp.findings[0].vulnerabilities[0].vendor.vendor_created_at #=> String
|
4350
|
+
# resp.findings[0].vulnerabilities[0].vendor.vendor_updated_at #=> String
|
4351
|
+
# resp.findings[0].vulnerabilities[0].reference_urls #=> Array
|
4352
|
+
# resp.findings[0].vulnerabilities[0].reference_urls[0] #=> String
|
4353
|
+
# resp.findings[0].patch_summary.id #=> String
|
4354
|
+
# resp.findings[0].patch_summary.installed_count #=> Integer
|
4355
|
+
# resp.findings[0].patch_summary.missing_count #=> Integer
|
4356
|
+
# resp.findings[0].patch_summary.failed_count #=> Integer
|
4357
|
+
# resp.findings[0].patch_summary.installed_other_count #=> Integer
|
4358
|
+
# resp.findings[0].patch_summary.installed_rejected_count #=> Integer
|
4359
|
+
# resp.findings[0].patch_summary.installed_pending_reboot #=> Integer
|
4360
|
+
# resp.findings[0].patch_summary.operation_start_time #=> String
|
4361
|
+
# resp.findings[0].patch_summary.operation_end_time #=> String
|
4362
|
+
# resp.findings[0].patch_summary.reboot_option #=> String
|
4363
|
+
# resp.findings[0].patch_summary.operation #=> String
|
3409
4364
|
# resp.next_token #=> String
|
3410
4365
|
#
|
3411
4366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation
|
@@ -3490,19 +4445,19 @@ module Aws::SecurityHub
|
|
3490
4445
|
# resp.insights[0].name #=> String
|
3491
4446
|
# resp.insights[0].filters.product_arn #=> Array
|
3492
4447
|
# resp.insights[0].filters.product_arn[0].value #=> String
|
3493
|
-
# resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4448
|
+
# resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3494
4449
|
# resp.insights[0].filters.aws_account_id #=> Array
|
3495
4450
|
# resp.insights[0].filters.aws_account_id[0].value #=> String
|
3496
|
-
# resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4451
|
+
# resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3497
4452
|
# resp.insights[0].filters.id #=> Array
|
3498
4453
|
# resp.insights[0].filters.id[0].value #=> String
|
3499
|
-
# resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4454
|
+
# resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3500
4455
|
# resp.insights[0].filters.generator_id #=> Array
|
3501
4456
|
# resp.insights[0].filters.generator_id[0].value #=> String
|
3502
|
-
# resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4457
|
+
# resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3503
4458
|
# resp.insights[0].filters.type #=> Array
|
3504
4459
|
# resp.insights[0].filters.type[0].value #=> String
|
3505
|
-
# resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4460
|
+
# resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3506
4461
|
# resp.insights[0].filters.first_observed_at #=> Array
|
3507
4462
|
# resp.insights[0].filters.first_observed_at[0].start #=> String
|
3508
4463
|
# resp.insights[0].filters.first_observed_at[0].end #=> String
|
@@ -3533,7 +4488,7 @@ module Aws::SecurityHub
|
|
3533
4488
|
# resp.insights[0].filters.severity_normalized[0].eq #=> Float
|
3534
4489
|
# resp.insights[0].filters.severity_label #=> Array
|
3535
4490
|
# resp.insights[0].filters.severity_label[0].value #=> String
|
3536
|
-
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4491
|
+
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3537
4492
|
# resp.insights[0].filters.confidence #=> Array
|
3538
4493
|
# resp.insights[0].filters.confidence[0].gte #=> Float
|
3539
4494
|
# resp.insights[0].filters.confidence[0].lte #=> Float
|
@@ -3544,48 +4499,48 @@ module Aws::SecurityHub
|
|
3544
4499
|
# resp.insights[0].filters.criticality[0].eq #=> Float
|
3545
4500
|
# resp.insights[0].filters.title #=> Array
|
3546
4501
|
# resp.insights[0].filters.title[0].value #=> String
|
3547
|
-
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4502
|
+
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3548
4503
|
# resp.insights[0].filters.description #=> Array
|
3549
4504
|
# resp.insights[0].filters.description[0].value #=> String
|
3550
|
-
# resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4505
|
+
# resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3551
4506
|
# resp.insights[0].filters.recommendation_text #=> Array
|
3552
4507
|
# resp.insights[0].filters.recommendation_text[0].value #=> String
|
3553
|
-
# resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4508
|
+
# resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3554
4509
|
# resp.insights[0].filters.source_url #=> Array
|
3555
4510
|
# resp.insights[0].filters.source_url[0].value #=> String
|
3556
|
-
# resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4511
|
+
# resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3557
4512
|
# resp.insights[0].filters.product_fields #=> Array
|
3558
4513
|
# resp.insights[0].filters.product_fields[0].key #=> String
|
3559
4514
|
# resp.insights[0].filters.product_fields[0].value #=> String
|
3560
|
-
# resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS"
|
4515
|
+
# resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3561
4516
|
# resp.insights[0].filters.product_name #=> Array
|
3562
4517
|
# resp.insights[0].filters.product_name[0].value #=> String
|
3563
|
-
# resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4518
|
+
# resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3564
4519
|
# resp.insights[0].filters.company_name #=> Array
|
3565
4520
|
# resp.insights[0].filters.company_name[0].value #=> String
|
3566
|
-
# resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4521
|
+
# resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3567
4522
|
# resp.insights[0].filters.user_defined_fields #=> Array
|
3568
4523
|
# resp.insights[0].filters.user_defined_fields[0].key #=> String
|
3569
4524
|
# resp.insights[0].filters.user_defined_fields[0].value #=> String
|
3570
|
-
# resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS"
|
4525
|
+
# resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3571
4526
|
# resp.insights[0].filters.malware_name #=> Array
|
3572
4527
|
# resp.insights[0].filters.malware_name[0].value #=> String
|
3573
|
-
# resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4528
|
+
# resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3574
4529
|
# resp.insights[0].filters.malware_type #=> Array
|
3575
4530
|
# resp.insights[0].filters.malware_type[0].value #=> String
|
3576
|
-
# resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4531
|
+
# resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3577
4532
|
# resp.insights[0].filters.malware_path #=> Array
|
3578
4533
|
# resp.insights[0].filters.malware_path[0].value #=> String
|
3579
|
-
# resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4534
|
+
# resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3580
4535
|
# resp.insights[0].filters.malware_state #=> Array
|
3581
4536
|
# resp.insights[0].filters.malware_state[0].value #=> String
|
3582
|
-
# resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4537
|
+
# resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3583
4538
|
# resp.insights[0].filters.network_direction #=> Array
|
3584
4539
|
# resp.insights[0].filters.network_direction[0].value #=> String
|
3585
|
-
# resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4540
|
+
# resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3586
4541
|
# resp.insights[0].filters.network_protocol #=> Array
|
3587
4542
|
# resp.insights[0].filters.network_protocol[0].value #=> String
|
3588
|
-
# resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4543
|
+
# resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3589
4544
|
# resp.insights[0].filters.network_source_ip_v4 #=> Array
|
3590
4545
|
# resp.insights[0].filters.network_source_ip_v4[0].cidr #=> String
|
3591
4546
|
# resp.insights[0].filters.network_source_ip_v6 #=> Array
|
@@ -3596,10 +4551,10 @@ module Aws::SecurityHub
|
|
3596
4551
|
# resp.insights[0].filters.network_source_port[0].eq #=> Float
|
3597
4552
|
# resp.insights[0].filters.network_source_domain #=> Array
|
3598
4553
|
# resp.insights[0].filters.network_source_domain[0].value #=> String
|
3599
|
-
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4554
|
+
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3600
4555
|
# resp.insights[0].filters.network_source_mac #=> Array
|
3601
4556
|
# resp.insights[0].filters.network_source_mac[0].value #=> String
|
3602
|
-
# resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4557
|
+
# resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3603
4558
|
# resp.insights[0].filters.network_destination_ip_v4 #=> Array
|
3604
4559
|
# resp.insights[0].filters.network_destination_ip_v4[0].cidr #=> String
|
3605
4560
|
# resp.insights[0].filters.network_destination_ip_v6 #=> Array
|
@@ -3610,13 +4565,13 @@ module Aws::SecurityHub
|
|
3610
4565
|
# resp.insights[0].filters.network_destination_port[0].eq #=> Float
|
3611
4566
|
# resp.insights[0].filters.network_destination_domain #=> Array
|
3612
4567
|
# resp.insights[0].filters.network_destination_domain[0].value #=> String
|
3613
|
-
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4568
|
+
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3614
4569
|
# resp.insights[0].filters.process_name #=> Array
|
3615
4570
|
# resp.insights[0].filters.process_name[0].value #=> String
|
3616
|
-
# resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4571
|
+
# resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3617
4572
|
# resp.insights[0].filters.process_path #=> Array
|
3618
4573
|
# resp.insights[0].filters.process_path[0].value #=> String
|
3619
|
-
# resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4574
|
+
# resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3620
4575
|
# resp.insights[0].filters.process_pid #=> Array
|
3621
4576
|
# resp.insights[0].filters.process_pid[0].gte #=> Float
|
3622
4577
|
# resp.insights[0].filters.process_pid[0].lte #=> Float
|
@@ -3637,13 +4592,13 @@ module Aws::SecurityHub
|
|
3637
4592
|
# resp.insights[0].filters.process_terminated_at[0].date_range.unit #=> String, one of "DAYS"
|
3638
4593
|
# resp.insights[0].filters.threat_intel_indicator_type #=> Array
|
3639
4594
|
# resp.insights[0].filters.threat_intel_indicator_type[0].value #=> String
|
3640
|
-
# resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4595
|
+
# resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3641
4596
|
# resp.insights[0].filters.threat_intel_indicator_value #=> Array
|
3642
4597
|
# resp.insights[0].filters.threat_intel_indicator_value[0].value #=> String
|
3643
|
-
# resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4598
|
+
# resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3644
4599
|
# resp.insights[0].filters.threat_intel_indicator_category #=> Array
|
3645
4600
|
# resp.insights[0].filters.threat_intel_indicator_category[0].value #=> String
|
3646
|
-
# resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4601
|
+
# resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3647
4602
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at #=> Array
|
3648
4603
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].start #=> String
|
3649
4604
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].end #=> String
|
@@ -3651,48 +4606,48 @@ module Aws::SecurityHub
|
|
3651
4606
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].date_range.unit #=> String, one of "DAYS"
|
3652
4607
|
# resp.insights[0].filters.threat_intel_indicator_source #=> Array
|
3653
4608
|
# resp.insights[0].filters.threat_intel_indicator_source[0].value #=> String
|
3654
|
-
# resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4609
|
+
# resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3655
4610
|
# resp.insights[0].filters.threat_intel_indicator_source_url #=> Array
|
3656
4611
|
# resp.insights[0].filters.threat_intel_indicator_source_url[0].value #=> String
|
3657
|
-
# resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4612
|
+
# resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3658
4613
|
# resp.insights[0].filters.resource_type #=> Array
|
3659
4614
|
# resp.insights[0].filters.resource_type[0].value #=> String
|
3660
|
-
# resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4615
|
+
# resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3661
4616
|
# resp.insights[0].filters.resource_id #=> Array
|
3662
4617
|
# resp.insights[0].filters.resource_id[0].value #=> String
|
3663
|
-
# resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4618
|
+
# resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3664
4619
|
# resp.insights[0].filters.resource_partition #=> Array
|
3665
4620
|
# resp.insights[0].filters.resource_partition[0].value #=> String
|
3666
|
-
# resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4621
|
+
# resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3667
4622
|
# resp.insights[0].filters.resource_region #=> Array
|
3668
4623
|
# resp.insights[0].filters.resource_region[0].value #=> String
|
3669
|
-
# resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4624
|
+
# resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3670
4625
|
# resp.insights[0].filters.resource_tags #=> Array
|
3671
4626
|
# resp.insights[0].filters.resource_tags[0].key #=> String
|
3672
4627
|
# resp.insights[0].filters.resource_tags[0].value #=> String
|
3673
|
-
# resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS"
|
4628
|
+
# resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3674
4629
|
# resp.insights[0].filters.resource_aws_ec2_instance_type #=> Array
|
3675
4630
|
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].value #=> String
|
3676
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4631
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3677
4632
|
# resp.insights[0].filters.resource_aws_ec2_instance_image_id #=> Array
|
3678
4633
|
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].value #=> String
|
3679
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4634
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3680
4635
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses #=> Array
|
3681
4636
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses[0].cidr #=> String
|
3682
4637
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses #=> Array
|
3683
4638
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses[0].cidr #=> String
|
3684
4639
|
# resp.insights[0].filters.resource_aws_ec2_instance_key_name #=> Array
|
3685
4640
|
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].value #=> String
|
3686
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4641
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3687
4642
|
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn #=> Array
|
3688
4643
|
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].value #=> String
|
3689
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4644
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3690
4645
|
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id #=> Array
|
3691
4646
|
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].value #=> String
|
3692
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4647
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3693
4648
|
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id #=> Array
|
3694
4649
|
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].value #=> String
|
3695
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4650
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3696
4651
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at #=> Array
|
3697
4652
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].start #=> String
|
3698
4653
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].end #=> String
|
@@ -3700,16 +4655,16 @@ module Aws::SecurityHub
|
|
3700
4655
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].date_range.unit #=> String, one of "DAYS"
|
3701
4656
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id #=> Array
|
3702
4657
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].value #=> String
|
3703
|
-
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4658
|
+
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3704
4659
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name #=> Array
|
3705
4660
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].value #=> String
|
3706
|
-
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4661
|
+
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3707
4662
|
# resp.insights[0].filters.resource_aws_iam_access_key_user_name #=> Array
|
3708
4663
|
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].value #=> String
|
3709
|
-
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4664
|
+
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3710
4665
|
# resp.insights[0].filters.resource_aws_iam_access_key_status #=> Array
|
3711
4666
|
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].value #=> String
|
3712
|
-
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4667
|
+
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3713
4668
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at #=> Array
|
3714
4669
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].start #=> String
|
3715
4670
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].end #=> String
|
@@ -3717,13 +4672,13 @@ module Aws::SecurityHub
|
|
3717
4672
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].date_range.unit #=> String, one of "DAYS"
|
3718
4673
|
# resp.insights[0].filters.resource_container_name #=> Array
|
3719
4674
|
# resp.insights[0].filters.resource_container_name[0].value #=> String
|
3720
|
-
# resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4675
|
+
# resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3721
4676
|
# resp.insights[0].filters.resource_container_image_id #=> Array
|
3722
4677
|
# resp.insights[0].filters.resource_container_image_id[0].value #=> String
|
3723
|
-
# resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4678
|
+
# resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3724
4679
|
# resp.insights[0].filters.resource_container_image_name #=> Array
|
3725
4680
|
# resp.insights[0].filters.resource_container_image_name[0].value #=> String
|
3726
|
-
# resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4681
|
+
# resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3727
4682
|
# resp.insights[0].filters.resource_container_launched_at #=> Array
|
3728
4683
|
# resp.insights[0].filters.resource_container_launched_at[0].start #=> String
|
3729
4684
|
# resp.insights[0].filters.resource_container_launched_at[0].end #=> String
|
@@ -3732,31 +4687,31 @@ module Aws::SecurityHub
|
|
3732
4687
|
# resp.insights[0].filters.resource_details_other #=> Array
|
3733
4688
|
# resp.insights[0].filters.resource_details_other[0].key #=> String
|
3734
4689
|
# resp.insights[0].filters.resource_details_other[0].value #=> String
|
3735
|
-
# resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS"
|
4690
|
+
# resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3736
4691
|
# resp.insights[0].filters.compliance_status #=> Array
|
3737
4692
|
# resp.insights[0].filters.compliance_status[0].value #=> String
|
3738
|
-
# resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4693
|
+
# resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3739
4694
|
# resp.insights[0].filters.verification_state #=> Array
|
3740
4695
|
# resp.insights[0].filters.verification_state[0].value #=> String
|
3741
|
-
# resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4696
|
+
# resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3742
4697
|
# resp.insights[0].filters.workflow_state #=> Array
|
3743
4698
|
# resp.insights[0].filters.workflow_state[0].value #=> String
|
3744
|
-
# resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4699
|
+
# resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3745
4700
|
# resp.insights[0].filters.workflow_status #=> Array
|
3746
4701
|
# resp.insights[0].filters.workflow_status[0].value #=> String
|
3747
|
-
# resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4702
|
+
# resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3748
4703
|
# resp.insights[0].filters.record_state #=> Array
|
3749
4704
|
# resp.insights[0].filters.record_state[0].value #=> String
|
3750
|
-
# resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4705
|
+
# resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3751
4706
|
# resp.insights[0].filters.related_findings_product_arn #=> Array
|
3752
4707
|
# resp.insights[0].filters.related_findings_product_arn[0].value #=> String
|
3753
|
-
# resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4708
|
+
# resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3754
4709
|
# resp.insights[0].filters.related_findings_id #=> Array
|
3755
4710
|
# resp.insights[0].filters.related_findings_id[0].value #=> String
|
3756
|
-
# resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4711
|
+
# resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3757
4712
|
# resp.insights[0].filters.note_text #=> Array
|
3758
4713
|
# resp.insights[0].filters.note_text[0].value #=> String
|
3759
|
-
# resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4714
|
+
# resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3760
4715
|
# resp.insights[0].filters.note_updated_at #=> Array
|
3761
4716
|
# resp.insights[0].filters.note_updated_at[0].start #=> String
|
3762
4717
|
# resp.insights[0].filters.note_updated_at[0].end #=> String
|
@@ -3764,7 +4719,7 @@ module Aws::SecurityHub
|
|
3764
4719
|
# resp.insights[0].filters.note_updated_at[0].date_range.unit #=> String, one of "DAYS"
|
3765
4720
|
# resp.insights[0].filters.note_updated_by #=> Array
|
3766
4721
|
# resp.insights[0].filters.note_updated_by[0].value #=> String
|
3767
|
-
# resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
4722
|
+
# resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3768
4723
|
# resp.insights[0].filters.keyword #=> Array
|
3769
4724
|
# resp.insights[0].filters.keyword[0].value #=> String
|
3770
4725
|
# resp.insights[0].group_by_attribute #=> String
|
@@ -4195,31 +5150,31 @@ module Aws::SecurityHub
|
|
4195
5150
|
# product_arn: [
|
4196
5151
|
# {
|
4197
5152
|
# value: "NonEmptyString",
|
4198
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5153
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4199
5154
|
# },
|
4200
5155
|
# ],
|
4201
5156
|
# aws_account_id: [
|
4202
5157
|
# {
|
4203
5158
|
# value: "NonEmptyString",
|
4204
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5159
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4205
5160
|
# },
|
4206
5161
|
# ],
|
4207
5162
|
# id: [
|
4208
5163
|
# {
|
4209
5164
|
# value: "NonEmptyString",
|
4210
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5165
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4211
5166
|
# },
|
4212
5167
|
# ],
|
4213
5168
|
# generator_id: [
|
4214
5169
|
# {
|
4215
5170
|
# value: "NonEmptyString",
|
4216
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5171
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4217
5172
|
# },
|
4218
5173
|
# ],
|
4219
5174
|
# type: [
|
4220
5175
|
# {
|
4221
5176
|
# value: "NonEmptyString",
|
4222
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5177
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4223
5178
|
# },
|
4224
5179
|
# ],
|
4225
5180
|
# first_observed_at: [
|
@@ -4279,7 +5234,7 @@ module Aws::SecurityHub
|
|
4279
5234
|
# severity_label: [
|
4280
5235
|
# {
|
4281
5236
|
# value: "NonEmptyString",
|
4282
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5237
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4283
5238
|
# },
|
4284
5239
|
# ],
|
4285
5240
|
# confidence: [
|
@@ -4299,87 +5254,87 @@ module Aws::SecurityHub
|
|
4299
5254
|
# title: [
|
4300
5255
|
# {
|
4301
5256
|
# value: "NonEmptyString",
|
4302
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5257
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4303
5258
|
# },
|
4304
5259
|
# ],
|
4305
5260
|
# description: [
|
4306
5261
|
# {
|
4307
5262
|
# value: "NonEmptyString",
|
4308
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5263
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4309
5264
|
# },
|
4310
5265
|
# ],
|
4311
5266
|
# recommendation_text: [
|
4312
5267
|
# {
|
4313
5268
|
# value: "NonEmptyString",
|
4314
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5269
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4315
5270
|
# },
|
4316
5271
|
# ],
|
4317
5272
|
# source_url: [
|
4318
5273
|
# {
|
4319
5274
|
# value: "NonEmptyString",
|
4320
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5275
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4321
5276
|
# },
|
4322
5277
|
# ],
|
4323
5278
|
# product_fields: [
|
4324
5279
|
# {
|
4325
5280
|
# key: "NonEmptyString",
|
4326
5281
|
# value: "NonEmptyString",
|
4327
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5282
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4328
5283
|
# },
|
4329
5284
|
# ],
|
4330
5285
|
# product_name: [
|
4331
5286
|
# {
|
4332
5287
|
# value: "NonEmptyString",
|
4333
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5288
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4334
5289
|
# },
|
4335
5290
|
# ],
|
4336
5291
|
# company_name: [
|
4337
5292
|
# {
|
4338
5293
|
# value: "NonEmptyString",
|
4339
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5294
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4340
5295
|
# },
|
4341
5296
|
# ],
|
4342
5297
|
# user_defined_fields: [
|
4343
5298
|
# {
|
4344
5299
|
# key: "NonEmptyString",
|
4345
5300
|
# value: "NonEmptyString",
|
4346
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5301
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4347
5302
|
# },
|
4348
5303
|
# ],
|
4349
5304
|
# malware_name: [
|
4350
5305
|
# {
|
4351
5306
|
# value: "NonEmptyString",
|
4352
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5307
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4353
5308
|
# },
|
4354
5309
|
# ],
|
4355
5310
|
# malware_type: [
|
4356
5311
|
# {
|
4357
5312
|
# value: "NonEmptyString",
|
4358
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5313
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4359
5314
|
# },
|
4360
5315
|
# ],
|
4361
5316
|
# malware_path: [
|
4362
5317
|
# {
|
4363
5318
|
# value: "NonEmptyString",
|
4364
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5319
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4365
5320
|
# },
|
4366
5321
|
# ],
|
4367
5322
|
# malware_state: [
|
4368
5323
|
# {
|
4369
5324
|
# value: "NonEmptyString",
|
4370
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5325
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4371
5326
|
# },
|
4372
5327
|
# ],
|
4373
5328
|
# network_direction: [
|
4374
5329
|
# {
|
4375
5330
|
# value: "NonEmptyString",
|
4376
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5331
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4377
5332
|
# },
|
4378
5333
|
# ],
|
4379
5334
|
# network_protocol: [
|
4380
5335
|
# {
|
4381
5336
|
# value: "NonEmptyString",
|
4382
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5337
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4383
5338
|
# },
|
4384
5339
|
# ],
|
4385
5340
|
# network_source_ip_v4: [
|
@@ -4402,13 +5357,13 @@ module Aws::SecurityHub
|
|
4402
5357
|
# network_source_domain: [
|
4403
5358
|
# {
|
4404
5359
|
# value: "NonEmptyString",
|
4405
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5360
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4406
5361
|
# },
|
4407
5362
|
# ],
|
4408
5363
|
# network_source_mac: [
|
4409
5364
|
# {
|
4410
5365
|
# value: "NonEmptyString",
|
4411
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5366
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4412
5367
|
# },
|
4413
5368
|
# ],
|
4414
5369
|
# network_destination_ip_v4: [
|
@@ -4431,19 +5386,19 @@ module Aws::SecurityHub
|
|
4431
5386
|
# network_destination_domain: [
|
4432
5387
|
# {
|
4433
5388
|
# value: "NonEmptyString",
|
4434
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5389
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4435
5390
|
# },
|
4436
5391
|
# ],
|
4437
5392
|
# process_name: [
|
4438
5393
|
# {
|
4439
5394
|
# value: "NonEmptyString",
|
4440
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5395
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4441
5396
|
# },
|
4442
5397
|
# ],
|
4443
5398
|
# process_path: [
|
4444
5399
|
# {
|
4445
5400
|
# value: "NonEmptyString",
|
4446
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5401
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4447
5402
|
# },
|
4448
5403
|
# ],
|
4449
5404
|
# process_pid: [
|
@@ -4483,19 +5438,19 @@ module Aws::SecurityHub
|
|
4483
5438
|
# threat_intel_indicator_type: [
|
4484
5439
|
# {
|
4485
5440
|
# value: "NonEmptyString",
|
4486
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5441
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4487
5442
|
# },
|
4488
5443
|
# ],
|
4489
5444
|
# threat_intel_indicator_value: [
|
4490
5445
|
# {
|
4491
5446
|
# value: "NonEmptyString",
|
4492
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5447
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4493
5448
|
# },
|
4494
5449
|
# ],
|
4495
5450
|
# threat_intel_indicator_category: [
|
4496
5451
|
# {
|
4497
5452
|
# value: "NonEmptyString",
|
4498
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5453
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4499
5454
|
# },
|
4500
5455
|
# ],
|
4501
5456
|
# threat_intel_indicator_last_observed_at: [
|
@@ -4511,56 +5466,56 @@ module Aws::SecurityHub
|
|
4511
5466
|
# threat_intel_indicator_source: [
|
4512
5467
|
# {
|
4513
5468
|
# value: "NonEmptyString",
|
4514
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5469
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4515
5470
|
# },
|
4516
5471
|
# ],
|
4517
5472
|
# threat_intel_indicator_source_url: [
|
4518
5473
|
# {
|
4519
5474
|
# value: "NonEmptyString",
|
4520
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5475
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4521
5476
|
# },
|
4522
5477
|
# ],
|
4523
5478
|
# resource_type: [
|
4524
5479
|
# {
|
4525
5480
|
# value: "NonEmptyString",
|
4526
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5481
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4527
5482
|
# },
|
4528
5483
|
# ],
|
4529
5484
|
# resource_id: [
|
4530
5485
|
# {
|
4531
5486
|
# value: "NonEmptyString",
|
4532
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5487
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4533
5488
|
# },
|
4534
5489
|
# ],
|
4535
5490
|
# resource_partition: [
|
4536
5491
|
# {
|
4537
5492
|
# value: "NonEmptyString",
|
4538
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5493
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4539
5494
|
# },
|
4540
5495
|
# ],
|
4541
5496
|
# resource_region: [
|
4542
5497
|
# {
|
4543
5498
|
# value: "NonEmptyString",
|
4544
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5499
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4545
5500
|
# },
|
4546
5501
|
# ],
|
4547
5502
|
# resource_tags: [
|
4548
5503
|
# {
|
4549
5504
|
# key: "NonEmptyString",
|
4550
5505
|
# value: "NonEmptyString",
|
4551
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5506
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4552
5507
|
# },
|
4553
5508
|
# ],
|
4554
5509
|
# resource_aws_ec2_instance_type: [
|
4555
5510
|
# {
|
4556
5511
|
# value: "NonEmptyString",
|
4557
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5512
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4558
5513
|
# },
|
4559
5514
|
# ],
|
4560
5515
|
# resource_aws_ec2_instance_image_id: [
|
4561
5516
|
# {
|
4562
5517
|
# value: "NonEmptyString",
|
4563
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5518
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4564
5519
|
# },
|
4565
5520
|
# ],
|
4566
5521
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -4576,25 +5531,25 @@ module Aws::SecurityHub
|
|
4576
5531
|
# resource_aws_ec2_instance_key_name: [
|
4577
5532
|
# {
|
4578
5533
|
# value: "NonEmptyString",
|
4579
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5534
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4580
5535
|
# },
|
4581
5536
|
# ],
|
4582
5537
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
4583
5538
|
# {
|
4584
5539
|
# value: "NonEmptyString",
|
4585
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5540
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4586
5541
|
# },
|
4587
5542
|
# ],
|
4588
5543
|
# resource_aws_ec2_instance_vpc_id: [
|
4589
5544
|
# {
|
4590
5545
|
# value: "NonEmptyString",
|
4591
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5546
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4592
5547
|
# },
|
4593
5548
|
# ],
|
4594
5549
|
# resource_aws_ec2_instance_subnet_id: [
|
4595
5550
|
# {
|
4596
5551
|
# value: "NonEmptyString",
|
4597
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5552
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4598
5553
|
# },
|
4599
5554
|
# ],
|
4600
5555
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -4610,25 +5565,25 @@ module Aws::SecurityHub
|
|
4610
5565
|
# resource_aws_s3_bucket_owner_id: [
|
4611
5566
|
# {
|
4612
5567
|
# value: "NonEmptyString",
|
4613
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5568
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4614
5569
|
# },
|
4615
5570
|
# ],
|
4616
5571
|
# resource_aws_s3_bucket_owner_name: [
|
4617
5572
|
# {
|
4618
5573
|
# value: "NonEmptyString",
|
4619
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5574
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4620
5575
|
# },
|
4621
5576
|
# ],
|
4622
5577
|
# resource_aws_iam_access_key_user_name: [
|
4623
5578
|
# {
|
4624
5579
|
# value: "NonEmptyString",
|
4625
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5580
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4626
5581
|
# },
|
4627
5582
|
# ],
|
4628
5583
|
# resource_aws_iam_access_key_status: [
|
4629
5584
|
# {
|
4630
5585
|
# value: "NonEmptyString",
|
4631
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5586
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4632
5587
|
# },
|
4633
5588
|
# ],
|
4634
5589
|
# resource_aws_iam_access_key_created_at: [
|
@@ -4644,19 +5599,19 @@ module Aws::SecurityHub
|
|
4644
5599
|
# resource_container_name: [
|
4645
5600
|
# {
|
4646
5601
|
# value: "NonEmptyString",
|
4647
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5602
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4648
5603
|
# },
|
4649
5604
|
# ],
|
4650
5605
|
# resource_container_image_id: [
|
4651
5606
|
# {
|
4652
5607
|
# value: "NonEmptyString",
|
4653
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5608
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4654
5609
|
# },
|
4655
5610
|
# ],
|
4656
5611
|
# resource_container_image_name: [
|
4657
5612
|
# {
|
4658
5613
|
# value: "NonEmptyString",
|
4659
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5614
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4660
5615
|
# },
|
4661
5616
|
# ],
|
4662
5617
|
# resource_container_launched_at: [
|
@@ -4673,55 +5628,55 @@ module Aws::SecurityHub
|
|
4673
5628
|
# {
|
4674
5629
|
# key: "NonEmptyString",
|
4675
5630
|
# value: "NonEmptyString",
|
4676
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5631
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4677
5632
|
# },
|
4678
5633
|
# ],
|
4679
5634
|
# compliance_status: [
|
4680
5635
|
# {
|
4681
5636
|
# value: "NonEmptyString",
|
4682
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5637
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4683
5638
|
# },
|
4684
5639
|
# ],
|
4685
5640
|
# verification_state: [
|
4686
5641
|
# {
|
4687
5642
|
# value: "NonEmptyString",
|
4688
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5643
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4689
5644
|
# },
|
4690
5645
|
# ],
|
4691
5646
|
# workflow_state: [
|
4692
5647
|
# {
|
4693
5648
|
# value: "NonEmptyString",
|
4694
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5649
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4695
5650
|
# },
|
4696
5651
|
# ],
|
4697
5652
|
# workflow_status: [
|
4698
5653
|
# {
|
4699
5654
|
# value: "NonEmptyString",
|
4700
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5655
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4701
5656
|
# },
|
4702
5657
|
# ],
|
4703
5658
|
# record_state: [
|
4704
5659
|
# {
|
4705
5660
|
# value: "NonEmptyString",
|
4706
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5661
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4707
5662
|
# },
|
4708
5663
|
# ],
|
4709
5664
|
# related_findings_product_arn: [
|
4710
5665
|
# {
|
4711
5666
|
# value: "NonEmptyString",
|
4712
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5667
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4713
5668
|
# },
|
4714
5669
|
# ],
|
4715
5670
|
# related_findings_id: [
|
4716
5671
|
# {
|
4717
5672
|
# value: "NonEmptyString",
|
4718
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5673
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4719
5674
|
# },
|
4720
5675
|
# ],
|
4721
5676
|
# note_text: [
|
4722
5677
|
# {
|
4723
5678
|
# value: "NonEmptyString",
|
4724
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5679
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4725
5680
|
# },
|
4726
5681
|
# ],
|
4727
5682
|
# note_updated_at: [
|
@@ -4737,7 +5692,7 @@ module Aws::SecurityHub
|
|
4737
5692
|
# note_updated_by: [
|
4738
5693
|
# {
|
4739
5694
|
# value: "NonEmptyString",
|
4740
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5695
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4741
5696
|
# },
|
4742
5697
|
# ],
|
4743
5698
|
# keyword: [
|
@@ -4788,31 +5743,31 @@ module Aws::SecurityHub
|
|
4788
5743
|
# product_arn: [
|
4789
5744
|
# {
|
4790
5745
|
# value: "NonEmptyString",
|
4791
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5746
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4792
5747
|
# },
|
4793
5748
|
# ],
|
4794
5749
|
# aws_account_id: [
|
4795
5750
|
# {
|
4796
5751
|
# value: "NonEmptyString",
|
4797
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5752
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4798
5753
|
# },
|
4799
5754
|
# ],
|
4800
5755
|
# id: [
|
4801
5756
|
# {
|
4802
5757
|
# value: "NonEmptyString",
|
4803
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5758
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4804
5759
|
# },
|
4805
5760
|
# ],
|
4806
5761
|
# generator_id: [
|
4807
5762
|
# {
|
4808
5763
|
# value: "NonEmptyString",
|
4809
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5764
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4810
5765
|
# },
|
4811
5766
|
# ],
|
4812
5767
|
# type: [
|
4813
5768
|
# {
|
4814
5769
|
# value: "NonEmptyString",
|
4815
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5770
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4816
5771
|
# },
|
4817
5772
|
# ],
|
4818
5773
|
# first_observed_at: [
|
@@ -4872,7 +5827,7 @@ module Aws::SecurityHub
|
|
4872
5827
|
# severity_label: [
|
4873
5828
|
# {
|
4874
5829
|
# value: "NonEmptyString",
|
4875
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5830
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4876
5831
|
# },
|
4877
5832
|
# ],
|
4878
5833
|
# confidence: [
|
@@ -4892,87 +5847,87 @@ module Aws::SecurityHub
|
|
4892
5847
|
# title: [
|
4893
5848
|
# {
|
4894
5849
|
# value: "NonEmptyString",
|
4895
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5850
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4896
5851
|
# },
|
4897
5852
|
# ],
|
4898
5853
|
# description: [
|
4899
5854
|
# {
|
4900
5855
|
# value: "NonEmptyString",
|
4901
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5856
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4902
5857
|
# },
|
4903
5858
|
# ],
|
4904
5859
|
# recommendation_text: [
|
4905
5860
|
# {
|
4906
5861
|
# value: "NonEmptyString",
|
4907
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5862
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4908
5863
|
# },
|
4909
5864
|
# ],
|
4910
5865
|
# source_url: [
|
4911
5866
|
# {
|
4912
5867
|
# value: "NonEmptyString",
|
4913
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5868
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4914
5869
|
# },
|
4915
5870
|
# ],
|
4916
5871
|
# product_fields: [
|
4917
5872
|
# {
|
4918
5873
|
# key: "NonEmptyString",
|
4919
5874
|
# value: "NonEmptyString",
|
4920
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5875
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4921
5876
|
# },
|
4922
5877
|
# ],
|
4923
5878
|
# product_name: [
|
4924
5879
|
# {
|
4925
5880
|
# value: "NonEmptyString",
|
4926
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5881
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4927
5882
|
# },
|
4928
5883
|
# ],
|
4929
5884
|
# company_name: [
|
4930
5885
|
# {
|
4931
5886
|
# value: "NonEmptyString",
|
4932
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5887
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4933
5888
|
# },
|
4934
5889
|
# ],
|
4935
5890
|
# user_defined_fields: [
|
4936
5891
|
# {
|
4937
5892
|
# key: "NonEmptyString",
|
4938
5893
|
# value: "NonEmptyString",
|
4939
|
-
# comparison: "EQUALS", # accepts EQUALS
|
5894
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4940
5895
|
# },
|
4941
5896
|
# ],
|
4942
5897
|
# malware_name: [
|
4943
5898
|
# {
|
4944
5899
|
# value: "NonEmptyString",
|
4945
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5900
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4946
5901
|
# },
|
4947
5902
|
# ],
|
4948
5903
|
# malware_type: [
|
4949
5904
|
# {
|
4950
5905
|
# value: "NonEmptyString",
|
4951
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5906
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4952
5907
|
# },
|
4953
5908
|
# ],
|
4954
5909
|
# malware_path: [
|
4955
5910
|
# {
|
4956
5911
|
# value: "NonEmptyString",
|
4957
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5912
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4958
5913
|
# },
|
4959
5914
|
# ],
|
4960
5915
|
# malware_state: [
|
4961
5916
|
# {
|
4962
5917
|
# value: "NonEmptyString",
|
4963
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5918
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4964
5919
|
# },
|
4965
5920
|
# ],
|
4966
5921
|
# network_direction: [
|
4967
5922
|
# {
|
4968
5923
|
# value: "NonEmptyString",
|
4969
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5924
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4970
5925
|
# },
|
4971
5926
|
# ],
|
4972
5927
|
# network_protocol: [
|
4973
5928
|
# {
|
4974
5929
|
# value: "NonEmptyString",
|
4975
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5930
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4976
5931
|
# },
|
4977
5932
|
# ],
|
4978
5933
|
# network_source_ip_v4: [
|
@@ -4995,13 +5950,13 @@ module Aws::SecurityHub
|
|
4995
5950
|
# network_source_domain: [
|
4996
5951
|
# {
|
4997
5952
|
# value: "NonEmptyString",
|
4998
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5953
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4999
5954
|
# },
|
5000
5955
|
# ],
|
5001
5956
|
# network_source_mac: [
|
5002
5957
|
# {
|
5003
5958
|
# value: "NonEmptyString",
|
5004
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5959
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5005
5960
|
# },
|
5006
5961
|
# ],
|
5007
5962
|
# network_destination_ip_v4: [
|
@@ -5024,19 +5979,19 @@ module Aws::SecurityHub
|
|
5024
5979
|
# network_destination_domain: [
|
5025
5980
|
# {
|
5026
5981
|
# value: "NonEmptyString",
|
5027
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5982
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5028
5983
|
# },
|
5029
5984
|
# ],
|
5030
5985
|
# process_name: [
|
5031
5986
|
# {
|
5032
5987
|
# value: "NonEmptyString",
|
5033
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5988
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5034
5989
|
# },
|
5035
5990
|
# ],
|
5036
5991
|
# process_path: [
|
5037
5992
|
# {
|
5038
5993
|
# value: "NonEmptyString",
|
5039
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5994
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5040
5995
|
# },
|
5041
5996
|
# ],
|
5042
5997
|
# process_pid: [
|
@@ -5076,19 +6031,19 @@ module Aws::SecurityHub
|
|
5076
6031
|
# threat_intel_indicator_type: [
|
5077
6032
|
# {
|
5078
6033
|
# value: "NonEmptyString",
|
5079
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6034
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5080
6035
|
# },
|
5081
6036
|
# ],
|
5082
6037
|
# threat_intel_indicator_value: [
|
5083
6038
|
# {
|
5084
6039
|
# value: "NonEmptyString",
|
5085
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6040
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5086
6041
|
# },
|
5087
6042
|
# ],
|
5088
6043
|
# threat_intel_indicator_category: [
|
5089
6044
|
# {
|
5090
6045
|
# value: "NonEmptyString",
|
5091
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6046
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5092
6047
|
# },
|
5093
6048
|
# ],
|
5094
6049
|
# threat_intel_indicator_last_observed_at: [
|
@@ -5104,56 +6059,56 @@ module Aws::SecurityHub
|
|
5104
6059
|
# threat_intel_indicator_source: [
|
5105
6060
|
# {
|
5106
6061
|
# value: "NonEmptyString",
|
5107
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6062
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5108
6063
|
# },
|
5109
6064
|
# ],
|
5110
6065
|
# threat_intel_indicator_source_url: [
|
5111
6066
|
# {
|
5112
6067
|
# value: "NonEmptyString",
|
5113
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6068
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5114
6069
|
# },
|
5115
6070
|
# ],
|
5116
6071
|
# resource_type: [
|
5117
6072
|
# {
|
5118
6073
|
# value: "NonEmptyString",
|
5119
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6074
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5120
6075
|
# },
|
5121
6076
|
# ],
|
5122
6077
|
# resource_id: [
|
5123
6078
|
# {
|
5124
6079
|
# value: "NonEmptyString",
|
5125
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6080
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5126
6081
|
# },
|
5127
6082
|
# ],
|
5128
6083
|
# resource_partition: [
|
5129
6084
|
# {
|
5130
6085
|
# value: "NonEmptyString",
|
5131
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6086
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5132
6087
|
# },
|
5133
6088
|
# ],
|
5134
6089
|
# resource_region: [
|
5135
6090
|
# {
|
5136
6091
|
# value: "NonEmptyString",
|
5137
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6092
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5138
6093
|
# },
|
5139
6094
|
# ],
|
5140
6095
|
# resource_tags: [
|
5141
6096
|
# {
|
5142
6097
|
# key: "NonEmptyString",
|
5143
6098
|
# value: "NonEmptyString",
|
5144
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6099
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5145
6100
|
# },
|
5146
6101
|
# ],
|
5147
6102
|
# resource_aws_ec2_instance_type: [
|
5148
6103
|
# {
|
5149
6104
|
# value: "NonEmptyString",
|
5150
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6105
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5151
6106
|
# },
|
5152
6107
|
# ],
|
5153
6108
|
# resource_aws_ec2_instance_image_id: [
|
5154
6109
|
# {
|
5155
6110
|
# value: "NonEmptyString",
|
5156
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6111
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5157
6112
|
# },
|
5158
6113
|
# ],
|
5159
6114
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -5169,25 +6124,25 @@ module Aws::SecurityHub
|
|
5169
6124
|
# resource_aws_ec2_instance_key_name: [
|
5170
6125
|
# {
|
5171
6126
|
# value: "NonEmptyString",
|
5172
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6127
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5173
6128
|
# },
|
5174
6129
|
# ],
|
5175
6130
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
5176
6131
|
# {
|
5177
6132
|
# value: "NonEmptyString",
|
5178
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6133
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5179
6134
|
# },
|
5180
6135
|
# ],
|
5181
6136
|
# resource_aws_ec2_instance_vpc_id: [
|
5182
6137
|
# {
|
5183
6138
|
# value: "NonEmptyString",
|
5184
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6139
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5185
6140
|
# },
|
5186
6141
|
# ],
|
5187
6142
|
# resource_aws_ec2_instance_subnet_id: [
|
5188
6143
|
# {
|
5189
6144
|
# value: "NonEmptyString",
|
5190
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6145
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5191
6146
|
# },
|
5192
6147
|
# ],
|
5193
6148
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -5203,25 +6158,25 @@ module Aws::SecurityHub
|
|
5203
6158
|
# resource_aws_s3_bucket_owner_id: [
|
5204
6159
|
# {
|
5205
6160
|
# value: "NonEmptyString",
|
5206
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6161
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5207
6162
|
# },
|
5208
6163
|
# ],
|
5209
6164
|
# resource_aws_s3_bucket_owner_name: [
|
5210
6165
|
# {
|
5211
6166
|
# value: "NonEmptyString",
|
5212
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6167
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5213
6168
|
# },
|
5214
6169
|
# ],
|
5215
6170
|
# resource_aws_iam_access_key_user_name: [
|
5216
6171
|
# {
|
5217
6172
|
# value: "NonEmptyString",
|
5218
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6173
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5219
6174
|
# },
|
5220
6175
|
# ],
|
5221
6176
|
# resource_aws_iam_access_key_status: [
|
5222
6177
|
# {
|
5223
6178
|
# value: "NonEmptyString",
|
5224
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6179
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5225
6180
|
# },
|
5226
6181
|
# ],
|
5227
6182
|
# resource_aws_iam_access_key_created_at: [
|
@@ -5237,19 +6192,19 @@ module Aws::SecurityHub
|
|
5237
6192
|
# resource_container_name: [
|
5238
6193
|
# {
|
5239
6194
|
# value: "NonEmptyString",
|
5240
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6195
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5241
6196
|
# },
|
5242
6197
|
# ],
|
5243
6198
|
# resource_container_image_id: [
|
5244
6199
|
# {
|
5245
6200
|
# value: "NonEmptyString",
|
5246
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6201
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5247
6202
|
# },
|
5248
6203
|
# ],
|
5249
6204
|
# resource_container_image_name: [
|
5250
6205
|
# {
|
5251
6206
|
# value: "NonEmptyString",
|
5252
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6207
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5253
6208
|
# },
|
5254
6209
|
# ],
|
5255
6210
|
# resource_container_launched_at: [
|
@@ -5266,55 +6221,55 @@ module Aws::SecurityHub
|
|
5266
6221
|
# {
|
5267
6222
|
# key: "NonEmptyString",
|
5268
6223
|
# value: "NonEmptyString",
|
5269
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6224
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5270
6225
|
# },
|
5271
6226
|
# ],
|
5272
6227
|
# compliance_status: [
|
5273
6228
|
# {
|
5274
6229
|
# value: "NonEmptyString",
|
5275
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6230
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5276
6231
|
# },
|
5277
6232
|
# ],
|
5278
6233
|
# verification_state: [
|
5279
6234
|
# {
|
5280
6235
|
# value: "NonEmptyString",
|
5281
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6236
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5282
6237
|
# },
|
5283
6238
|
# ],
|
5284
6239
|
# workflow_state: [
|
5285
6240
|
# {
|
5286
6241
|
# value: "NonEmptyString",
|
5287
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6242
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5288
6243
|
# },
|
5289
6244
|
# ],
|
5290
6245
|
# workflow_status: [
|
5291
6246
|
# {
|
5292
6247
|
# value: "NonEmptyString",
|
5293
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6248
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5294
6249
|
# },
|
5295
6250
|
# ],
|
5296
6251
|
# record_state: [
|
5297
6252
|
# {
|
5298
6253
|
# value: "NonEmptyString",
|
5299
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6254
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5300
6255
|
# },
|
5301
6256
|
# ],
|
5302
6257
|
# related_findings_product_arn: [
|
5303
6258
|
# {
|
5304
6259
|
# value: "NonEmptyString",
|
5305
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6260
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5306
6261
|
# },
|
5307
6262
|
# ],
|
5308
6263
|
# related_findings_id: [
|
5309
6264
|
# {
|
5310
6265
|
# value: "NonEmptyString",
|
5311
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6266
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5312
6267
|
# },
|
5313
6268
|
# ],
|
5314
6269
|
# note_text: [
|
5315
6270
|
# {
|
5316
6271
|
# value: "NonEmptyString",
|
5317
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6272
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5318
6273
|
# },
|
5319
6274
|
# ],
|
5320
6275
|
# note_updated_at: [
|
@@ -5330,7 +6285,7 @@ module Aws::SecurityHub
|
|
5330
6285
|
# note_updated_by: [
|
5331
6286
|
# {
|
5332
6287
|
# value: "NonEmptyString",
|
5333
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6288
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5334
6289
|
# },
|
5335
6290
|
# ],
|
5336
6291
|
# keyword: [
|
@@ -5351,6 +6306,33 @@ module Aws::SecurityHub
|
|
5351
6306
|
req.send_request(options)
|
5352
6307
|
end
|
5353
6308
|
|
6309
|
+
# Updates configuration options for Security Hub.
|
6310
|
+
#
|
6311
|
+
# @option params [Boolean] :auto_enable_controls
|
6312
|
+
# Whether to automatically enable new controls when they are added to
|
6313
|
+
# standards that are enabled.
|
6314
|
+
#
|
6315
|
+
# By default, this is set to `true`, and new controls are enabled
|
6316
|
+
# automatically. To not automatically enable new controls, set this to
|
6317
|
+
# `false`.
|
6318
|
+
#
|
6319
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6320
|
+
#
|
6321
|
+
# @example Request syntax with placeholder values
|
6322
|
+
#
|
6323
|
+
# resp = client.update_security_hub_configuration({
|
6324
|
+
# auto_enable_controls: false,
|
6325
|
+
# })
|
6326
|
+
#
|
6327
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateSecurityHubConfiguration AWS API Documentation
|
6328
|
+
#
|
6329
|
+
# @overload update_security_hub_configuration(params = {})
|
6330
|
+
# @param [Hash] params ({})
|
6331
|
+
def update_security_hub_configuration(params = {}, options = {})
|
6332
|
+
req = build_request(:update_security_hub_configuration, params)
|
6333
|
+
req.send_request(options)
|
6334
|
+
end
|
6335
|
+
|
5354
6336
|
# Used to control whether an individual security standard control is
|
5355
6337
|
# enabled or disabled.
|
5356
6338
|
#
|
@@ -5362,7 +6344,7 @@ module Aws::SecurityHub
|
|
5362
6344
|
#
|
5363
6345
|
# @option params [String] :disabled_reason
|
5364
6346
|
# A description of the reason why you are disabling a security standard
|
5365
|
-
# control.
|
6347
|
+
# control. If you are disabling a control, then this is required.
|
5366
6348
|
#
|
5367
6349
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5368
6350
|
#
|
@@ -5396,7 +6378,7 @@ module Aws::SecurityHub
|
|
5396
6378
|
params: params,
|
5397
6379
|
config: config)
|
5398
6380
|
context[:gem_name] = 'aws-sdk-securityhub'
|
5399
|
-
context[:gem_version] = '1.
|
6381
|
+
context[:gem_version] = '1.33.0'
|
5400
6382
|
Seahorse::Client::Request.new(handlers, context)
|
5401
6383
|
end
|
5402
6384
|
|