aws-sdk-securityhub 1.30.0 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-securityhub.rb +3 -2
- data/lib/aws-sdk-securityhub/client.rb +1881 -302
- data/lib/aws-sdk-securityhub/client_api.rb +1073 -0
- data/lib/aws-sdk-securityhub/types.rb +12913 -2194
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 787663e24fb4efd17a0ea33a6aa1de712c1596b9cd980dd2894bd58a752770fb
|
4
|
+
data.tar.gz: 70630a040eb2db1d87bb0c2615c4c5d8c1c7ff9267793f6c36a75cf649cbf773
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cba4b2e2a3afeafa08e72eea8f8e9d0cb7eabda7c1112cf833c87093b165c7f87bb277fc1e1d35a40a5247e9d7316547e31b95aea41c33c2566217af45e35fc8
|
7
|
+
data.tar.gz: 320767e4236588323474da4e9ae2844186b391503b768b3a72be373d14c27701848c7eb29924a64a834bef6d8a6f5529296a34e93bef2c63da6014b46a691c58
|
data/lib/aws-sdk-securityhub.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-securityhub/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::SecurityHub
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.35.0'
|
51
52
|
|
52
53
|
end
|
@@ -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
|
@@ -613,6 +628,7 @@ module Aws::SecurityHub
|
|
613
628
|
# id: "NonEmptyString", # required
|
614
629
|
# partition: "aws", # accepts aws, aws-cn, aws-us-gov
|
615
630
|
# region: "NonEmptyString",
|
631
|
+
# resource_role: "NonEmptyString",
|
616
632
|
# tags: {
|
617
633
|
# "NonEmptyString" => "NonEmptyString",
|
618
634
|
# },
|
@@ -650,6 +666,17 @@ module Aws::SecurityHub
|
|
650
666
|
# },
|
651
667
|
# },
|
652
668
|
# aws_cloud_front_distribution: {
|
669
|
+
# cache_behaviors: {
|
670
|
+
# items: [
|
671
|
+
# {
|
672
|
+
# viewer_protocol_policy: "NonEmptyString",
|
673
|
+
# },
|
674
|
+
# ],
|
675
|
+
# },
|
676
|
+
# default_cache_behavior: {
|
677
|
+
# viewer_protocol_policy: "NonEmptyString",
|
678
|
+
# },
|
679
|
+
# default_root_object: "NonEmptyString",
|
653
680
|
# domain_name: "NonEmptyString",
|
654
681
|
# etag: "NonEmptyString",
|
655
682
|
# last_modified_time: "NonEmptyString",
|
@@ -665,6 +692,21 @@ module Aws::SecurityHub
|
|
665
692
|
# domain_name: "NonEmptyString",
|
666
693
|
# id: "NonEmptyString",
|
667
694
|
# origin_path: "NonEmptyString",
|
695
|
+
# s3_origin_config: {
|
696
|
+
# origin_access_identity: "NonEmptyString",
|
697
|
+
# },
|
698
|
+
# },
|
699
|
+
# ],
|
700
|
+
# },
|
701
|
+
# origin_groups: {
|
702
|
+
# items: [
|
703
|
+
# {
|
704
|
+
# failover_criteria: {
|
705
|
+
# status_codes: {
|
706
|
+
# items: [1],
|
707
|
+
# quantity: 1,
|
708
|
+
# },
|
709
|
+
# },
|
668
710
|
# },
|
669
711
|
# ],
|
670
712
|
# },
|
@@ -805,6 +847,18 @@ module Aws::SecurityHub
|
|
805
847
|
# dhcp_options_id: "NonEmptyString",
|
806
848
|
# state: "NonEmptyString",
|
807
849
|
# },
|
850
|
+
# aws_ec2_eip: {
|
851
|
+
# instance_id: "NonEmptyString",
|
852
|
+
# public_ip: "NonEmptyString",
|
853
|
+
# allocation_id: "NonEmptyString",
|
854
|
+
# association_id: "NonEmptyString",
|
855
|
+
# domain: "NonEmptyString",
|
856
|
+
# public_ipv_4_pool: "NonEmptyString",
|
857
|
+
# network_border_group: "NonEmptyString",
|
858
|
+
# network_interface_id: "NonEmptyString",
|
859
|
+
# network_interface_owner_id: "NonEmptyString",
|
860
|
+
# private_ip_address: "NonEmptyString",
|
861
|
+
# },
|
808
862
|
# aws_elbv_2_load_balancer: {
|
809
863
|
# availability_zones: [
|
810
864
|
# {
|
@@ -875,6 +929,18 @@ module Aws::SecurityHub
|
|
875
929
|
# server_side_encryption: "NonEmptyString",
|
876
930
|
# ssekms_key_id: "NonEmptyString",
|
877
931
|
# },
|
932
|
+
# aws_secrets_manager_secret: {
|
933
|
+
# rotation_rules: {
|
934
|
+
# automatically_after_days: 1,
|
935
|
+
# },
|
936
|
+
# rotation_occurred_within_frequency: false,
|
937
|
+
# kms_key_id: "NonEmptyString",
|
938
|
+
# rotation_enabled: false,
|
939
|
+
# rotation_lambda_arn: "NonEmptyString",
|
940
|
+
# deleted: false,
|
941
|
+
# name: "NonEmptyString",
|
942
|
+
# description: "NonEmptyString",
|
943
|
+
# },
|
878
944
|
# aws_iam_access_key: {
|
879
945
|
# user_name: "NonEmptyString",
|
880
946
|
# status: "Active", # accepts Active, Inactive
|
@@ -882,12 +948,623 @@ module Aws::SecurityHub
|
|
882
948
|
# principal_id: "NonEmptyString",
|
883
949
|
# principal_type: "NonEmptyString",
|
884
950
|
# principal_name: "NonEmptyString",
|
951
|
+
# account_id: "NonEmptyString",
|
952
|
+
# access_key_id: "NonEmptyString",
|
953
|
+
# session_context: {
|
954
|
+
# attributes: {
|
955
|
+
# mfa_authenticated: false,
|
956
|
+
# creation_date: "NonEmptyString",
|
957
|
+
# },
|
958
|
+
# session_issuer: {
|
959
|
+
# type: "NonEmptyString",
|
960
|
+
# principal_id: "NonEmptyString",
|
961
|
+
# arn: "NonEmptyString",
|
962
|
+
# account_id: "NonEmptyString",
|
963
|
+
# user_name: "NonEmptyString",
|
964
|
+
# },
|
965
|
+
# },
|
966
|
+
# },
|
967
|
+
# aws_iam_user: {
|
968
|
+
# attached_managed_policies: [
|
969
|
+
# {
|
970
|
+
# policy_name: "NonEmptyString",
|
971
|
+
# policy_arn: "NonEmptyString",
|
972
|
+
# },
|
973
|
+
# ],
|
974
|
+
# create_date: "NonEmptyString",
|
975
|
+
# group_list: ["NonEmptyString"],
|
976
|
+
# path: "NonEmptyString",
|
977
|
+
# permissions_boundary: {
|
978
|
+
# permissions_boundary_arn: "NonEmptyString",
|
979
|
+
# permissions_boundary_type: "NonEmptyString",
|
980
|
+
# },
|
981
|
+
# user_id: "NonEmptyString",
|
982
|
+
# user_name: "NonEmptyString",
|
983
|
+
# user_policy_list: [
|
984
|
+
# {
|
985
|
+
# policy_name: "NonEmptyString",
|
986
|
+
# },
|
987
|
+
# ],
|
988
|
+
# },
|
989
|
+
# aws_iam_policy: {
|
990
|
+
# attachment_count: 1,
|
991
|
+
# create_date: "NonEmptyString",
|
992
|
+
# default_version_id: "NonEmptyString",
|
993
|
+
# description: "NonEmptyString",
|
994
|
+
# is_attachable: false,
|
995
|
+
# path: "NonEmptyString",
|
996
|
+
# permissions_boundary_usage_count: 1,
|
997
|
+
# policy_id: "NonEmptyString",
|
998
|
+
# policy_name: "NonEmptyString",
|
999
|
+
# policy_version_list: [
|
1000
|
+
# {
|
1001
|
+
# version_id: "NonEmptyString",
|
1002
|
+
# is_default_version: false,
|
1003
|
+
# create_date: "NonEmptyString",
|
1004
|
+
# },
|
1005
|
+
# ],
|
1006
|
+
# update_date: "NonEmptyString",
|
1007
|
+
# },
|
1008
|
+
# aws_api_gateway_v2_stage: {
|
1009
|
+
# created_date: "NonEmptyString",
|
1010
|
+
# description: "NonEmptyString",
|
1011
|
+
# default_route_settings: {
|
1012
|
+
# detailed_metrics_enabled: false,
|
1013
|
+
# logging_level: "NonEmptyString",
|
1014
|
+
# data_trace_enabled: false,
|
1015
|
+
# throttling_burst_limit: 1,
|
1016
|
+
# throttling_rate_limit: 1.0,
|
1017
|
+
# },
|
1018
|
+
# deployment_id: "NonEmptyString",
|
1019
|
+
# last_updated_date: "NonEmptyString",
|
1020
|
+
# route_settings: {
|
1021
|
+
# detailed_metrics_enabled: false,
|
1022
|
+
# logging_level: "NonEmptyString",
|
1023
|
+
# data_trace_enabled: false,
|
1024
|
+
# throttling_burst_limit: 1,
|
1025
|
+
# throttling_rate_limit: 1.0,
|
1026
|
+
# },
|
1027
|
+
# stage_name: "NonEmptyString",
|
1028
|
+
# stage_variables: {
|
1029
|
+
# "NonEmptyString" => "NonEmptyString",
|
1030
|
+
# },
|
1031
|
+
# access_log_settings: {
|
1032
|
+
# format: "NonEmptyString",
|
1033
|
+
# destination_arn: "NonEmptyString",
|
1034
|
+
# },
|
1035
|
+
# auto_deploy: false,
|
1036
|
+
# last_deployment_status_message: "NonEmptyString",
|
1037
|
+
# api_gateway_managed: false,
|
1038
|
+
# },
|
1039
|
+
# aws_api_gateway_v2_api: {
|
1040
|
+
# api_endpoint: "NonEmptyString",
|
1041
|
+
# api_id: "NonEmptyString",
|
1042
|
+
# api_key_selection_expression: "NonEmptyString",
|
1043
|
+
# created_date: "NonEmptyString",
|
1044
|
+
# description: "NonEmptyString",
|
1045
|
+
# version: "NonEmptyString",
|
1046
|
+
# name: "NonEmptyString",
|
1047
|
+
# protocol_type: "NonEmptyString",
|
1048
|
+
# route_selection_expression: "NonEmptyString",
|
1049
|
+
# cors_configuration: {
|
1050
|
+
# allow_origins: ["NonEmptyString"],
|
1051
|
+
# allow_credentials: false,
|
1052
|
+
# expose_headers: ["NonEmptyString"],
|
1053
|
+
# max_age: 1,
|
1054
|
+
# allow_methods: ["NonEmptyString"],
|
1055
|
+
# allow_headers: ["NonEmptyString"],
|
1056
|
+
# },
|
1057
|
+
# },
|
1058
|
+
# aws_dynamo_db_table: {
|
1059
|
+
# attribute_definitions: [
|
1060
|
+
# {
|
1061
|
+
# attribute_name: "NonEmptyString",
|
1062
|
+
# attribute_type: "NonEmptyString",
|
1063
|
+
# },
|
1064
|
+
# ],
|
1065
|
+
# billing_mode_summary: {
|
1066
|
+
# billing_mode: "NonEmptyString",
|
1067
|
+
# last_update_to_pay_per_request_date_time: "NonEmptyString",
|
1068
|
+
# },
|
1069
|
+
# creation_date_time: "NonEmptyString",
|
1070
|
+
# global_secondary_indexes: [
|
1071
|
+
# {
|
1072
|
+
# backfilling: false,
|
1073
|
+
# index_arn: "NonEmptyString",
|
1074
|
+
# index_name: "NonEmptyString",
|
1075
|
+
# index_size_bytes: 1,
|
1076
|
+
# index_status: "NonEmptyString",
|
1077
|
+
# item_count: 1,
|
1078
|
+
# key_schema: [
|
1079
|
+
# {
|
1080
|
+
# attribute_name: "NonEmptyString",
|
1081
|
+
# key_type: "NonEmptyString",
|
1082
|
+
# },
|
1083
|
+
# ],
|
1084
|
+
# projection: {
|
1085
|
+
# non_key_attributes: ["NonEmptyString"],
|
1086
|
+
# projection_type: "NonEmptyString",
|
1087
|
+
# },
|
1088
|
+
# provisioned_throughput: {
|
1089
|
+
# last_decrease_date_time: "NonEmptyString",
|
1090
|
+
# last_increase_date_time: "NonEmptyString",
|
1091
|
+
# number_of_decreases_today: 1,
|
1092
|
+
# read_capacity_units: 1,
|
1093
|
+
# write_capacity_units: 1,
|
1094
|
+
# },
|
1095
|
+
# },
|
1096
|
+
# ],
|
1097
|
+
# global_table_version: "NonEmptyString",
|
1098
|
+
# item_count: 1,
|
1099
|
+
# key_schema: [
|
1100
|
+
# {
|
1101
|
+
# attribute_name: "NonEmptyString",
|
1102
|
+
# key_type: "NonEmptyString",
|
1103
|
+
# },
|
1104
|
+
# ],
|
1105
|
+
# latest_stream_arn: "NonEmptyString",
|
1106
|
+
# latest_stream_label: "NonEmptyString",
|
1107
|
+
# local_secondary_indexes: [
|
1108
|
+
# {
|
1109
|
+
# index_arn: "NonEmptyString",
|
1110
|
+
# index_name: "NonEmptyString",
|
1111
|
+
# key_schema: [
|
1112
|
+
# {
|
1113
|
+
# attribute_name: "NonEmptyString",
|
1114
|
+
# key_type: "NonEmptyString",
|
1115
|
+
# },
|
1116
|
+
# ],
|
1117
|
+
# projection: {
|
1118
|
+
# non_key_attributes: ["NonEmptyString"],
|
1119
|
+
# projection_type: "NonEmptyString",
|
1120
|
+
# },
|
1121
|
+
# },
|
1122
|
+
# ],
|
1123
|
+
# provisioned_throughput: {
|
1124
|
+
# last_decrease_date_time: "NonEmptyString",
|
1125
|
+
# last_increase_date_time: "NonEmptyString",
|
1126
|
+
# number_of_decreases_today: 1,
|
1127
|
+
# read_capacity_units: 1,
|
1128
|
+
# write_capacity_units: 1,
|
1129
|
+
# },
|
1130
|
+
# replicas: [
|
1131
|
+
# {
|
1132
|
+
# global_secondary_indexes: [
|
1133
|
+
# {
|
1134
|
+
# index_name: "NonEmptyString",
|
1135
|
+
# provisioned_throughput_override: {
|
1136
|
+
# read_capacity_units: 1,
|
1137
|
+
# },
|
1138
|
+
# },
|
1139
|
+
# ],
|
1140
|
+
# kms_master_key_id: "NonEmptyString",
|
1141
|
+
# provisioned_throughput_override: {
|
1142
|
+
# read_capacity_units: 1,
|
1143
|
+
# },
|
1144
|
+
# region_name: "NonEmptyString",
|
1145
|
+
# replica_status: "NonEmptyString",
|
1146
|
+
# replica_status_description: "NonEmptyString",
|
1147
|
+
# },
|
1148
|
+
# ],
|
1149
|
+
# restore_summary: {
|
1150
|
+
# source_backup_arn: "NonEmptyString",
|
1151
|
+
# source_table_arn: "NonEmptyString",
|
1152
|
+
# restore_date_time: "NonEmptyString",
|
1153
|
+
# restore_in_progress: false,
|
1154
|
+
# },
|
1155
|
+
# sse_description: {
|
1156
|
+
# inaccessible_encryption_date_time: "NonEmptyString",
|
1157
|
+
# status: "NonEmptyString",
|
1158
|
+
# sse_type: "NonEmptyString",
|
1159
|
+
# kms_master_key_arn: "NonEmptyString",
|
1160
|
+
# },
|
1161
|
+
# stream_specification: {
|
1162
|
+
# stream_enabled: false,
|
1163
|
+
# stream_view_type: "NonEmptyString",
|
1164
|
+
# },
|
1165
|
+
# table_id: "NonEmptyString",
|
1166
|
+
# table_name: "NonEmptyString",
|
1167
|
+
# table_size_bytes: 1,
|
1168
|
+
# table_status: "NonEmptyString",
|
1169
|
+
# },
|
1170
|
+
# aws_api_gateway_stage: {
|
1171
|
+
# deployment_id: "NonEmptyString",
|
1172
|
+
# client_certificate_id: "NonEmptyString",
|
1173
|
+
# stage_name: "NonEmptyString",
|
1174
|
+
# description: "NonEmptyString",
|
1175
|
+
# cache_cluster_enabled: false,
|
1176
|
+
# cache_cluster_size: "NonEmptyString",
|
1177
|
+
# cache_cluster_status: "NonEmptyString",
|
1178
|
+
# method_settings: [
|
1179
|
+
# {
|
1180
|
+
# metrics_enabled: false,
|
1181
|
+
# logging_level: "NonEmptyString",
|
1182
|
+
# data_trace_enabled: false,
|
1183
|
+
# throttling_burst_limit: 1,
|
1184
|
+
# throttling_rate_limit: 1.0,
|
1185
|
+
# caching_enabled: false,
|
1186
|
+
# cache_ttl_in_seconds: 1,
|
1187
|
+
# cache_data_encrypted: false,
|
1188
|
+
# require_authorization_for_cache_control: false,
|
1189
|
+
# unauthorized_cache_control_header_strategy: "NonEmptyString",
|
1190
|
+
# http_method: "NonEmptyString",
|
1191
|
+
# resource_path: "NonEmptyString",
|
1192
|
+
# },
|
1193
|
+
# ],
|
1194
|
+
# variables: {
|
1195
|
+
# "NonEmptyString" => "NonEmptyString",
|
1196
|
+
# },
|
1197
|
+
# documentation_version: "NonEmptyString",
|
1198
|
+
# access_log_settings: {
|
1199
|
+
# format: "NonEmptyString",
|
1200
|
+
# destination_arn: "NonEmptyString",
|
1201
|
+
# },
|
1202
|
+
# canary_settings: {
|
1203
|
+
# percent_traffic: 1.0,
|
1204
|
+
# deployment_id: "NonEmptyString",
|
1205
|
+
# stage_variable_overrides: {
|
1206
|
+
# "NonEmptyString" => "NonEmptyString",
|
1207
|
+
# },
|
1208
|
+
# use_stage_cache: false,
|
1209
|
+
# },
|
1210
|
+
# tracing_enabled: false,
|
1211
|
+
# created_date: "NonEmptyString",
|
1212
|
+
# last_updated_date: "NonEmptyString",
|
1213
|
+
# web_acl_arn: "NonEmptyString",
|
1214
|
+
# },
|
1215
|
+
# aws_api_gateway_rest_api: {
|
1216
|
+
# id: "NonEmptyString",
|
1217
|
+
# name: "NonEmptyString",
|
1218
|
+
# description: "NonEmptyString",
|
1219
|
+
# created_date: "NonEmptyString",
|
1220
|
+
# version: "NonEmptyString",
|
1221
|
+
# binary_media_types: ["NonEmptyString"],
|
1222
|
+
# minimum_compression_size: 1,
|
1223
|
+
# api_key_source: "NonEmptyString",
|
1224
|
+
# endpoint_configuration: {
|
1225
|
+
# types: ["NonEmptyString"],
|
1226
|
+
# },
|
1227
|
+
# },
|
1228
|
+
# aws_cloud_trail_trail: {
|
1229
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
1230
|
+
# cloud_watch_logs_role_arn: "NonEmptyString",
|
1231
|
+
# has_custom_event_selectors: false,
|
1232
|
+
# home_region: "NonEmptyString",
|
1233
|
+
# include_global_service_events: false,
|
1234
|
+
# is_multi_region_trail: false,
|
1235
|
+
# is_organization_trail: false,
|
1236
|
+
# kms_key_id: "NonEmptyString",
|
1237
|
+
# log_file_validation_enabled: false,
|
1238
|
+
# name: "NonEmptyString",
|
1239
|
+
# s3_bucket_name: "NonEmptyString",
|
1240
|
+
# s3_key_prefix: "NonEmptyString",
|
1241
|
+
# sns_topic_arn: "NonEmptyString",
|
1242
|
+
# sns_topic_name: "NonEmptyString",
|
1243
|
+
# trail_arn: "NonEmptyString",
|
1244
|
+
# },
|
1245
|
+
# aws_certificate_manager_certificate: {
|
1246
|
+
# certificate_authority_arn: "NonEmptyString",
|
1247
|
+
# created_at: "NonEmptyString",
|
1248
|
+
# domain_name: "NonEmptyString",
|
1249
|
+
# domain_validation_options: [
|
1250
|
+
# {
|
1251
|
+
# domain_name: "NonEmptyString",
|
1252
|
+
# resource_record: {
|
1253
|
+
# name: "NonEmptyString",
|
1254
|
+
# type: "NonEmptyString",
|
1255
|
+
# value: "NonEmptyString",
|
1256
|
+
# },
|
1257
|
+
# validation_domain: "NonEmptyString",
|
1258
|
+
# validation_emails: ["NonEmptyString"],
|
1259
|
+
# validation_method: "NonEmptyString",
|
1260
|
+
# validation_status: "NonEmptyString",
|
1261
|
+
# },
|
1262
|
+
# ],
|
1263
|
+
# extended_key_usages: [
|
1264
|
+
# {
|
1265
|
+
# name: "NonEmptyString",
|
1266
|
+
# o_id: "NonEmptyString",
|
1267
|
+
# },
|
1268
|
+
# ],
|
1269
|
+
# failure_reason: "NonEmptyString",
|
1270
|
+
# imported_at: "NonEmptyString",
|
1271
|
+
# in_use_by: ["NonEmptyString"],
|
1272
|
+
# issued_at: "NonEmptyString",
|
1273
|
+
# issuer: "NonEmptyString",
|
1274
|
+
# key_algorithm: "NonEmptyString",
|
1275
|
+
# key_usages: [
|
1276
|
+
# {
|
1277
|
+
# name: "NonEmptyString",
|
1278
|
+
# },
|
1279
|
+
# ],
|
1280
|
+
# not_after: "NonEmptyString",
|
1281
|
+
# not_before: "NonEmptyString",
|
1282
|
+
# options: {
|
1283
|
+
# certificate_transparency_logging_preference: "NonEmptyString",
|
1284
|
+
# },
|
1285
|
+
# renewal_eligibility: "NonEmptyString",
|
1286
|
+
# renewal_summary: {
|
1287
|
+
# domain_validation_options: [
|
1288
|
+
# {
|
1289
|
+
# domain_name: "NonEmptyString",
|
1290
|
+
# resource_record: {
|
1291
|
+
# name: "NonEmptyString",
|
1292
|
+
# type: "NonEmptyString",
|
1293
|
+
# value: "NonEmptyString",
|
1294
|
+
# },
|
1295
|
+
# validation_domain: "NonEmptyString",
|
1296
|
+
# validation_emails: ["NonEmptyString"],
|
1297
|
+
# validation_method: "NonEmptyString",
|
1298
|
+
# validation_status: "NonEmptyString",
|
1299
|
+
# },
|
1300
|
+
# ],
|
1301
|
+
# renewal_status: "NonEmptyString",
|
1302
|
+
# renewal_status_reason: "NonEmptyString",
|
1303
|
+
# updated_at: "NonEmptyString",
|
1304
|
+
# },
|
1305
|
+
# serial: "NonEmptyString",
|
1306
|
+
# signature_algorithm: "NonEmptyString",
|
1307
|
+
# status: "NonEmptyString",
|
1308
|
+
# subject: "NonEmptyString",
|
1309
|
+
# subject_alternative_names: ["NonEmptyString"],
|
1310
|
+
# type: "NonEmptyString",
|
1311
|
+
# },
|
1312
|
+
# aws_redshift_cluster: {
|
1313
|
+
# allow_version_upgrade: false,
|
1314
|
+
# automated_snapshot_retention_period: 1,
|
1315
|
+
# availability_zone: "NonEmptyString",
|
1316
|
+
# cluster_availability_status: "NonEmptyString",
|
1317
|
+
# cluster_create_time: "NonEmptyString",
|
1318
|
+
# cluster_identifier: "NonEmptyString",
|
1319
|
+
# cluster_nodes: [
|
1320
|
+
# {
|
1321
|
+
# node_role: "NonEmptyString",
|
1322
|
+
# private_ip_address: "NonEmptyString",
|
1323
|
+
# public_ip_address: "NonEmptyString",
|
1324
|
+
# },
|
1325
|
+
# ],
|
1326
|
+
# cluster_parameter_groups: [
|
1327
|
+
# {
|
1328
|
+
# cluster_parameter_status_list: [
|
1329
|
+
# {
|
1330
|
+
# parameter_name: "NonEmptyString",
|
1331
|
+
# parameter_apply_status: "NonEmptyString",
|
1332
|
+
# parameter_apply_error_description: "NonEmptyString",
|
1333
|
+
# },
|
1334
|
+
# ],
|
1335
|
+
# parameter_apply_status: "NonEmptyString",
|
1336
|
+
# parameter_group_name: "NonEmptyString",
|
1337
|
+
# },
|
1338
|
+
# ],
|
1339
|
+
# cluster_public_key: "NonEmptyString",
|
1340
|
+
# cluster_revision_number: "NonEmptyString",
|
1341
|
+
# cluster_security_groups: [
|
1342
|
+
# {
|
1343
|
+
# cluster_security_group_name: "NonEmptyString",
|
1344
|
+
# status: "NonEmptyString",
|
1345
|
+
# },
|
1346
|
+
# ],
|
1347
|
+
# cluster_snapshot_copy_status: {
|
1348
|
+
# destination_region: "NonEmptyString",
|
1349
|
+
# manual_snapshot_retention_period: 1,
|
1350
|
+
# retention_period: 1,
|
1351
|
+
# snapshot_copy_grant_name: "NonEmptyString",
|
1352
|
+
# },
|
1353
|
+
# cluster_status: "NonEmptyString",
|
1354
|
+
# cluster_subnet_group_name: "NonEmptyString",
|
1355
|
+
# cluster_version: "NonEmptyString",
|
1356
|
+
# db_name: "NonEmptyString",
|
1357
|
+
# deferred_maintenance_windows: [
|
1358
|
+
# {
|
1359
|
+
# defer_maintenance_end_time: "NonEmptyString",
|
1360
|
+
# defer_maintenance_identifier: "NonEmptyString",
|
1361
|
+
# defer_maintenance_start_time: "NonEmptyString",
|
1362
|
+
# },
|
1363
|
+
# ],
|
1364
|
+
# elastic_ip_status: {
|
1365
|
+
# elastic_ip: "NonEmptyString",
|
1366
|
+
# status: "NonEmptyString",
|
1367
|
+
# },
|
1368
|
+
# elastic_resize_number_of_node_options: "NonEmptyString",
|
1369
|
+
# encrypted: false,
|
1370
|
+
# endpoint: {
|
1371
|
+
# address: "NonEmptyString",
|
1372
|
+
# port: 1,
|
1373
|
+
# },
|
1374
|
+
# enhanced_vpc_routing: false,
|
1375
|
+
# expected_next_snapshot_schedule_time: "NonEmptyString",
|
1376
|
+
# expected_next_snapshot_schedule_time_status: "NonEmptyString",
|
1377
|
+
# hsm_status: {
|
1378
|
+
# hsm_client_certificate_identifier: "NonEmptyString",
|
1379
|
+
# hsm_configuration_identifier: "NonEmptyString",
|
1380
|
+
# status: "NonEmptyString",
|
1381
|
+
# },
|
1382
|
+
# iam_roles: [
|
1383
|
+
# {
|
1384
|
+
# apply_status: "NonEmptyString",
|
1385
|
+
# iam_role_arn: "NonEmptyString",
|
1386
|
+
# },
|
1387
|
+
# ],
|
1388
|
+
# kms_key_id: "NonEmptyString",
|
1389
|
+
# maintenance_track_name: "NonEmptyString",
|
1390
|
+
# manual_snapshot_retention_period: 1,
|
1391
|
+
# master_username: "NonEmptyString",
|
1392
|
+
# next_maintenance_window_start_time: "NonEmptyString",
|
1393
|
+
# node_type: "NonEmptyString",
|
1394
|
+
# number_of_nodes: 1,
|
1395
|
+
# pending_actions: ["NonEmptyString"],
|
1396
|
+
# pending_modified_values: {
|
1397
|
+
# automated_snapshot_retention_period: 1,
|
1398
|
+
# cluster_identifier: "NonEmptyString",
|
1399
|
+
# cluster_type: "NonEmptyString",
|
1400
|
+
# cluster_version: "NonEmptyString",
|
1401
|
+
# encryption_type: "NonEmptyString",
|
1402
|
+
# enhanced_vpc_routing: false,
|
1403
|
+
# maintenance_track_name: "NonEmptyString",
|
1404
|
+
# master_user_password: "NonEmptyString",
|
1405
|
+
# node_type: "NonEmptyString",
|
1406
|
+
# number_of_nodes: 1,
|
1407
|
+
# publicly_accessible: false,
|
1408
|
+
# },
|
1409
|
+
# preferred_maintenance_window: "NonEmptyString",
|
1410
|
+
# publicly_accessible: false,
|
1411
|
+
# resize_info: {
|
1412
|
+
# allow_cancel_resize: false,
|
1413
|
+
# resize_type: "NonEmptyString",
|
1414
|
+
# },
|
1415
|
+
# restore_status: {
|
1416
|
+
# current_restore_rate_in_mega_bytes_per_second: 1.0,
|
1417
|
+
# elapsed_time_in_seconds: 1,
|
1418
|
+
# estimated_time_to_completion_in_seconds: 1,
|
1419
|
+
# progress_in_mega_bytes: 1,
|
1420
|
+
# snapshot_size_in_mega_bytes: 1,
|
1421
|
+
# status: "NonEmptyString",
|
1422
|
+
# },
|
1423
|
+
# snapshot_schedule_identifier: "NonEmptyString",
|
1424
|
+
# snapshot_schedule_state: "NonEmptyString",
|
1425
|
+
# vpc_id: "NonEmptyString",
|
1426
|
+
# vpc_security_groups: [
|
1427
|
+
# {
|
1428
|
+
# status: "NonEmptyString",
|
1429
|
+
# vpc_security_group_id: "NonEmptyString",
|
1430
|
+
# },
|
1431
|
+
# ],
|
1432
|
+
# },
|
1433
|
+
# aws_elb_load_balancer: {
|
1434
|
+
# availability_zones: ["NonEmptyString"],
|
1435
|
+
# backend_server_descriptions: [
|
1436
|
+
# {
|
1437
|
+
# instance_port: 1,
|
1438
|
+
# policy_names: ["NonEmptyString"],
|
1439
|
+
# },
|
1440
|
+
# ],
|
1441
|
+
# canonical_hosted_zone_name: "NonEmptyString",
|
1442
|
+
# canonical_hosted_zone_name_id: "NonEmptyString",
|
1443
|
+
# created_time: "NonEmptyString",
|
1444
|
+
# dns_name: "NonEmptyString",
|
1445
|
+
# health_check: {
|
1446
|
+
# healthy_threshold: 1,
|
1447
|
+
# interval: 1,
|
1448
|
+
# target: "NonEmptyString",
|
1449
|
+
# timeout: 1,
|
1450
|
+
# unhealthy_threshold: 1,
|
1451
|
+
# },
|
1452
|
+
# instances: [
|
1453
|
+
# {
|
1454
|
+
# instance_id: "NonEmptyString",
|
1455
|
+
# },
|
1456
|
+
# ],
|
1457
|
+
# listener_descriptions: [
|
1458
|
+
# {
|
1459
|
+
# listener: {
|
1460
|
+
# instance_port: 1,
|
1461
|
+
# instance_protocol: "NonEmptyString",
|
1462
|
+
# load_balancer_port: 1,
|
1463
|
+
# protocol: "NonEmptyString",
|
1464
|
+
# ssl_certificate_id: "NonEmptyString",
|
1465
|
+
# },
|
1466
|
+
# policy_names: ["NonEmptyString"],
|
1467
|
+
# },
|
1468
|
+
# ],
|
1469
|
+
# load_balancer_attributes: {
|
1470
|
+
# access_log: {
|
1471
|
+
# emit_interval: 1,
|
1472
|
+
# enabled: false,
|
1473
|
+
# s3_bucket_name: "NonEmptyString",
|
1474
|
+
# s3_bucket_prefix: "NonEmptyString",
|
1475
|
+
# },
|
1476
|
+
# connection_draining: {
|
1477
|
+
# enabled: false,
|
1478
|
+
# timeout: 1,
|
1479
|
+
# },
|
1480
|
+
# connection_settings: {
|
1481
|
+
# idle_timeout: 1,
|
1482
|
+
# },
|
1483
|
+
# cross_zone_load_balancing: {
|
1484
|
+
# enabled: false,
|
1485
|
+
# },
|
1486
|
+
# },
|
1487
|
+
# load_balancer_name: "NonEmptyString",
|
1488
|
+
# policies: {
|
1489
|
+
# app_cookie_stickiness_policies: [
|
1490
|
+
# {
|
1491
|
+
# cookie_name: "NonEmptyString",
|
1492
|
+
# policy_name: "NonEmptyString",
|
1493
|
+
# },
|
1494
|
+
# ],
|
1495
|
+
# lb_cookie_stickiness_policies: [
|
1496
|
+
# {
|
1497
|
+
# cookie_expiration_period: 1,
|
1498
|
+
# policy_name: "NonEmptyString",
|
1499
|
+
# },
|
1500
|
+
# ],
|
1501
|
+
# other_policies: ["NonEmptyString"],
|
1502
|
+
# },
|
1503
|
+
# scheme: "NonEmptyString",
|
1504
|
+
# security_groups: ["NonEmptyString"],
|
1505
|
+
# source_security_group: {
|
1506
|
+
# group_name: "NonEmptyString",
|
1507
|
+
# owner_alias: "NonEmptyString",
|
1508
|
+
# },
|
1509
|
+
# subnets: ["NonEmptyString"],
|
1510
|
+
# vpc_id: "NonEmptyString",
|
1511
|
+
# },
|
1512
|
+
# aws_iam_group: {
|
1513
|
+
# attached_managed_policies: [
|
1514
|
+
# {
|
1515
|
+
# policy_name: "NonEmptyString",
|
1516
|
+
# policy_arn: "NonEmptyString",
|
1517
|
+
# },
|
1518
|
+
# ],
|
1519
|
+
# create_date: "NonEmptyString",
|
1520
|
+
# group_id: "NonEmptyString",
|
1521
|
+
# group_name: "NonEmptyString",
|
1522
|
+
# group_policy_list: [
|
1523
|
+
# {
|
1524
|
+
# policy_name: "NonEmptyString",
|
1525
|
+
# },
|
1526
|
+
# ],
|
1527
|
+
# path: "NonEmptyString",
|
885
1528
|
# },
|
886
1529
|
# aws_iam_role: {
|
887
1530
|
# assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument",
|
1531
|
+
# attached_managed_policies: [
|
1532
|
+
# {
|
1533
|
+
# policy_name: "NonEmptyString",
|
1534
|
+
# policy_arn: "NonEmptyString",
|
1535
|
+
# },
|
1536
|
+
# ],
|
888
1537
|
# create_date: "NonEmptyString",
|
1538
|
+
# instance_profile_list: [
|
1539
|
+
# {
|
1540
|
+
# arn: "NonEmptyString",
|
1541
|
+
# create_date: "NonEmptyString",
|
1542
|
+
# instance_profile_id: "NonEmptyString",
|
1543
|
+
# instance_profile_name: "NonEmptyString",
|
1544
|
+
# path: "NonEmptyString",
|
1545
|
+
# roles: [
|
1546
|
+
# {
|
1547
|
+
# arn: "NonEmptyString",
|
1548
|
+
# assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument",
|
1549
|
+
# create_date: "NonEmptyString",
|
1550
|
+
# path: "NonEmptyString",
|
1551
|
+
# role_id: "NonEmptyString",
|
1552
|
+
# role_name: "NonEmptyString",
|
1553
|
+
# },
|
1554
|
+
# ],
|
1555
|
+
# },
|
1556
|
+
# ],
|
1557
|
+
# permissions_boundary: {
|
1558
|
+
# permissions_boundary_arn: "NonEmptyString",
|
1559
|
+
# permissions_boundary_type: "NonEmptyString",
|
1560
|
+
# },
|
889
1561
|
# role_id: "NonEmptyString",
|
890
1562
|
# role_name: "NonEmptyString",
|
1563
|
+
# role_policy_list: [
|
1564
|
+
# {
|
1565
|
+
# policy_name: "NonEmptyString",
|
1566
|
+
# },
|
1567
|
+
# ],
|
891
1568
|
# max_session_duration: 1,
|
892
1569
|
# path: "NonEmptyString",
|
893
1570
|
# },
|
@@ -898,6 +1575,7 @@ module Aws::SecurityHub
|
|
898
1575
|
# key_manager: "NonEmptyString",
|
899
1576
|
# key_state: "NonEmptyString",
|
900
1577
|
# origin: "NonEmptyString",
|
1578
|
+
# description: "NonEmptyString",
|
901
1579
|
# },
|
902
1580
|
# aws_lambda_function: {
|
903
1581
|
# code: {
|
@@ -985,6 +1663,116 @@ module Aws::SecurityHub
|
|
985
1663
|
# status: "NonEmptyString",
|
986
1664
|
# },
|
987
1665
|
# ],
|
1666
|
+
# multi_az: false,
|
1667
|
+
# enhanced_monitoring_resource_arn: "NonEmptyString",
|
1668
|
+
# db_instance_status: "NonEmptyString",
|
1669
|
+
# master_username: "NonEmptyString",
|
1670
|
+
# allocated_storage: 1,
|
1671
|
+
# preferred_backup_window: "NonEmptyString",
|
1672
|
+
# backup_retention_period: 1,
|
1673
|
+
# db_security_groups: ["NonEmptyString"],
|
1674
|
+
# db_parameter_groups: [
|
1675
|
+
# {
|
1676
|
+
# db_parameter_group_name: "NonEmptyString",
|
1677
|
+
# parameter_apply_status: "NonEmptyString",
|
1678
|
+
# },
|
1679
|
+
# ],
|
1680
|
+
# availability_zone: "NonEmptyString",
|
1681
|
+
# db_subnet_group: {
|
1682
|
+
# db_subnet_group_name: "NonEmptyString",
|
1683
|
+
# db_subnet_group_description: "NonEmptyString",
|
1684
|
+
# vpc_id: "NonEmptyString",
|
1685
|
+
# subnet_group_status: "NonEmptyString",
|
1686
|
+
# subnets: [
|
1687
|
+
# {
|
1688
|
+
# subnet_identifier: "NonEmptyString",
|
1689
|
+
# subnet_availability_zone: {
|
1690
|
+
# name: "NonEmptyString",
|
1691
|
+
# },
|
1692
|
+
# subnet_status: "NonEmptyString",
|
1693
|
+
# },
|
1694
|
+
# ],
|
1695
|
+
# db_subnet_group_arn: "NonEmptyString",
|
1696
|
+
# },
|
1697
|
+
# preferred_maintenance_window: "NonEmptyString",
|
1698
|
+
# pending_modified_values: {
|
1699
|
+
# db_instance_class: "NonEmptyString",
|
1700
|
+
# allocated_storage: 1,
|
1701
|
+
# master_user_password: "NonEmptyString",
|
1702
|
+
# port: 1,
|
1703
|
+
# backup_retention_period: 1,
|
1704
|
+
# multi_az: false,
|
1705
|
+
# engine_version: "NonEmptyString",
|
1706
|
+
# license_model: "NonEmptyString",
|
1707
|
+
# iops: 1,
|
1708
|
+
# db_instance_identifier: "NonEmptyString",
|
1709
|
+
# storage_type: "NonEmptyString",
|
1710
|
+
# ca_certificate_identifier: "NonEmptyString",
|
1711
|
+
# db_subnet_group_name: "NonEmptyString",
|
1712
|
+
# pending_cloud_watch_logs_exports: {
|
1713
|
+
# log_types_to_enable: ["NonEmptyString"],
|
1714
|
+
# log_types_to_disable: ["NonEmptyString"],
|
1715
|
+
# },
|
1716
|
+
# processor_features: [
|
1717
|
+
# {
|
1718
|
+
# name: "NonEmptyString",
|
1719
|
+
# value: "NonEmptyString",
|
1720
|
+
# },
|
1721
|
+
# ],
|
1722
|
+
# },
|
1723
|
+
# latest_restorable_time: "NonEmptyString",
|
1724
|
+
# auto_minor_version_upgrade: false,
|
1725
|
+
# read_replica_source_db_instance_identifier: "NonEmptyString",
|
1726
|
+
# read_replica_db_instance_identifiers: ["NonEmptyString"],
|
1727
|
+
# read_replica_db_cluster_identifiers: ["NonEmptyString"],
|
1728
|
+
# license_model: "NonEmptyString",
|
1729
|
+
# iops: 1,
|
1730
|
+
# option_group_memberships: [
|
1731
|
+
# {
|
1732
|
+
# option_group_name: "NonEmptyString",
|
1733
|
+
# status: "NonEmptyString",
|
1734
|
+
# },
|
1735
|
+
# ],
|
1736
|
+
# character_set_name: "NonEmptyString",
|
1737
|
+
# secondary_availability_zone: "NonEmptyString",
|
1738
|
+
# status_infos: [
|
1739
|
+
# {
|
1740
|
+
# status_type: "NonEmptyString",
|
1741
|
+
# normal: false,
|
1742
|
+
# status: "NonEmptyString",
|
1743
|
+
# message: "NonEmptyString",
|
1744
|
+
# },
|
1745
|
+
# ],
|
1746
|
+
# storage_type: "NonEmptyString",
|
1747
|
+
# domain_memberships: [
|
1748
|
+
# {
|
1749
|
+
# domain: "NonEmptyString",
|
1750
|
+
# status: "NonEmptyString",
|
1751
|
+
# fqdn: "NonEmptyString",
|
1752
|
+
# iam_role_name: "NonEmptyString",
|
1753
|
+
# },
|
1754
|
+
# ],
|
1755
|
+
# copy_tags_to_snapshot: false,
|
1756
|
+
# monitoring_interval: 1,
|
1757
|
+
# monitoring_role_arn: "NonEmptyString",
|
1758
|
+
# promotion_tier: 1,
|
1759
|
+
# timezone: "NonEmptyString",
|
1760
|
+
# performance_insights_enabled: false,
|
1761
|
+
# performance_insights_kms_key_id: "NonEmptyString",
|
1762
|
+
# performance_insights_retention_period: 1,
|
1763
|
+
# enabled_cloud_watch_logs_exports: ["NonEmptyString"],
|
1764
|
+
# processor_features: [
|
1765
|
+
# {
|
1766
|
+
# name: "NonEmptyString",
|
1767
|
+
# value: "NonEmptyString",
|
1768
|
+
# },
|
1769
|
+
# ],
|
1770
|
+
# listener_endpoint: {
|
1771
|
+
# address: "NonEmptyString",
|
1772
|
+
# port: 1,
|
1773
|
+
# hosted_zone_id: "NonEmptyString",
|
1774
|
+
# },
|
1775
|
+
# max_allocated_storage: 1,
|
988
1776
|
# },
|
989
1777
|
# aws_sns_topic: {
|
990
1778
|
# kms_master_key_id: "NonEmptyString",
|
@@ -1026,6 +1814,128 @@ module Aws::SecurityHub
|
|
1026
1814
|
# ],
|
1027
1815
|
# web_acl_id: "NonEmptyString",
|
1028
1816
|
# },
|
1817
|
+
# aws_rds_db_snapshot: {
|
1818
|
+
# db_snapshot_identifier: "NonEmptyString",
|
1819
|
+
# db_instance_identifier: "NonEmptyString",
|
1820
|
+
# snapshot_create_time: "NonEmptyString",
|
1821
|
+
# engine: "NonEmptyString",
|
1822
|
+
# allocated_storage: 1,
|
1823
|
+
# status: "NonEmptyString",
|
1824
|
+
# port: 1,
|
1825
|
+
# availability_zone: "NonEmptyString",
|
1826
|
+
# vpc_id: "NonEmptyString",
|
1827
|
+
# instance_create_time: "NonEmptyString",
|
1828
|
+
# master_username: "NonEmptyString",
|
1829
|
+
# engine_version: "NonEmptyString",
|
1830
|
+
# license_model: "NonEmptyString",
|
1831
|
+
# snapshot_type: "NonEmptyString",
|
1832
|
+
# iops: 1,
|
1833
|
+
# option_group_name: "NonEmptyString",
|
1834
|
+
# percent_progress: 1,
|
1835
|
+
# source_region: "NonEmptyString",
|
1836
|
+
# source_db_snapshot_identifier: "NonEmptyString",
|
1837
|
+
# storage_type: "NonEmptyString",
|
1838
|
+
# tde_credential_arn: "NonEmptyString",
|
1839
|
+
# encrypted: false,
|
1840
|
+
# kms_key_id: "NonEmptyString",
|
1841
|
+
# timezone: "NonEmptyString",
|
1842
|
+
# iam_database_authentication_enabled: false,
|
1843
|
+
# processor_features: [
|
1844
|
+
# {
|
1845
|
+
# name: "NonEmptyString",
|
1846
|
+
# value: "NonEmptyString",
|
1847
|
+
# },
|
1848
|
+
# ],
|
1849
|
+
# dbi_resource_id: "NonEmptyString",
|
1850
|
+
# },
|
1851
|
+
# aws_rds_db_cluster_snapshot: {
|
1852
|
+
# availability_zones: ["NonEmptyString"],
|
1853
|
+
# snapshot_create_time: "NonEmptyString",
|
1854
|
+
# engine: "NonEmptyString",
|
1855
|
+
# allocated_storage: 1,
|
1856
|
+
# status: "NonEmptyString",
|
1857
|
+
# port: 1,
|
1858
|
+
# vpc_id: "NonEmptyString",
|
1859
|
+
# cluster_create_time: "NonEmptyString",
|
1860
|
+
# master_username: "NonEmptyString",
|
1861
|
+
# engine_version: "NonEmptyString",
|
1862
|
+
# license_model: "NonEmptyString",
|
1863
|
+
# snapshot_type: "NonEmptyString",
|
1864
|
+
# percent_progress: 1,
|
1865
|
+
# storage_encrypted: false,
|
1866
|
+
# kms_key_id: "NonEmptyString",
|
1867
|
+
# db_cluster_identifier: "NonEmptyString",
|
1868
|
+
# db_cluster_snapshot_identifier: "NonEmptyString",
|
1869
|
+
# iam_database_authentication_enabled: false,
|
1870
|
+
# },
|
1871
|
+
# aws_rds_db_cluster: {
|
1872
|
+
# allocated_storage: 1,
|
1873
|
+
# availability_zones: ["NonEmptyString"],
|
1874
|
+
# backup_retention_period: 1,
|
1875
|
+
# database_name: "NonEmptyString",
|
1876
|
+
# status: "NonEmptyString",
|
1877
|
+
# endpoint: "NonEmptyString",
|
1878
|
+
# reader_endpoint: "NonEmptyString",
|
1879
|
+
# custom_endpoints: ["NonEmptyString"],
|
1880
|
+
# multi_az: false,
|
1881
|
+
# engine: "NonEmptyString",
|
1882
|
+
# engine_version: "NonEmptyString",
|
1883
|
+
# port: 1,
|
1884
|
+
# master_username: "NonEmptyString",
|
1885
|
+
# preferred_backup_window: "NonEmptyString",
|
1886
|
+
# preferred_maintenance_window: "NonEmptyString",
|
1887
|
+
# read_replica_identifiers: ["NonEmptyString"],
|
1888
|
+
# vpc_security_groups: [
|
1889
|
+
# {
|
1890
|
+
# vpc_security_group_id: "NonEmptyString",
|
1891
|
+
# status: "NonEmptyString",
|
1892
|
+
# },
|
1893
|
+
# ],
|
1894
|
+
# hosted_zone_id: "NonEmptyString",
|
1895
|
+
# storage_encrypted: false,
|
1896
|
+
# kms_key_id: "NonEmptyString",
|
1897
|
+
# db_cluster_resource_id: "NonEmptyString",
|
1898
|
+
# associated_roles: [
|
1899
|
+
# {
|
1900
|
+
# role_arn: "NonEmptyString",
|
1901
|
+
# status: "NonEmptyString",
|
1902
|
+
# },
|
1903
|
+
# ],
|
1904
|
+
# cluster_create_time: "NonEmptyString",
|
1905
|
+
# enabled_cloud_watch_logs_exports: ["NonEmptyString"],
|
1906
|
+
# engine_mode: "NonEmptyString",
|
1907
|
+
# deletion_protection: false,
|
1908
|
+
# http_endpoint_enabled: false,
|
1909
|
+
# activity_stream_status: "NonEmptyString",
|
1910
|
+
# copy_tags_to_snapshot: false,
|
1911
|
+
# cross_account_clone: false,
|
1912
|
+
# domain_memberships: [
|
1913
|
+
# {
|
1914
|
+
# domain: "NonEmptyString",
|
1915
|
+
# status: "NonEmptyString",
|
1916
|
+
# fqdn: "NonEmptyString",
|
1917
|
+
# iam_role_name: "NonEmptyString",
|
1918
|
+
# },
|
1919
|
+
# ],
|
1920
|
+
# db_cluster_parameter_group: "NonEmptyString",
|
1921
|
+
# db_subnet_group: "NonEmptyString",
|
1922
|
+
# db_cluster_option_group_memberships: [
|
1923
|
+
# {
|
1924
|
+
# db_cluster_option_group_name: "NonEmptyString",
|
1925
|
+
# status: "NonEmptyString",
|
1926
|
+
# },
|
1927
|
+
# ],
|
1928
|
+
# db_cluster_identifier: "NonEmptyString",
|
1929
|
+
# db_cluster_members: [
|
1930
|
+
# {
|
1931
|
+
# is_cluster_writer: false,
|
1932
|
+
# promotion_tier: 1,
|
1933
|
+
# db_instance_identifier: "NonEmptyString",
|
1934
|
+
# db_cluster_parameter_group_status: "NonEmptyString",
|
1935
|
+
# },
|
1936
|
+
# ],
|
1937
|
+
# iam_database_authentication_enabled: false,
|
1938
|
+
# },
|
1029
1939
|
# container: {
|
1030
1940
|
# name: "NonEmptyString",
|
1031
1941
|
# image_id: "NonEmptyString",
|
@@ -1095,6 +2005,19 @@ module Aws::SecurityHub
|
|
1095
2005
|
# reference_urls: ["NonEmptyString"],
|
1096
2006
|
# },
|
1097
2007
|
# ],
|
2008
|
+
# patch_summary: {
|
2009
|
+
# id: "NonEmptyString", # required
|
2010
|
+
# installed_count: 1,
|
2011
|
+
# missing_count: 1,
|
2012
|
+
# failed_count: 1,
|
2013
|
+
# installed_other_count: 1,
|
2014
|
+
# installed_rejected_count: 1,
|
2015
|
+
# installed_pending_reboot: 1,
|
2016
|
+
# operation_start_time: "NonEmptyString",
|
2017
|
+
# operation_end_time: "NonEmptyString",
|
2018
|
+
# reboot_option: "NonEmptyString",
|
2019
|
+
# operation: "NonEmptyString",
|
2020
|
+
# },
|
1098
2021
|
# },
|
1099
2022
|
# ],
|
1100
2023
|
# })
|
@@ -1126,8 +2049,8 @@ module Aws::SecurityHub
|
|
1126
2049
|
# Updates from `BatchUpdateFindings` do not affect the value of
|
1127
2050
|
# `UpdatedAt` for a finding.
|
1128
2051
|
#
|
1129
|
-
# Master accounts can use `BatchUpdateFindings` to update the
|
1130
|
-
# finding fields and objects.
|
2052
|
+
# Master and member accounts can use `BatchUpdateFindings` to update the
|
2053
|
+
# following finding fields and objects.
|
1131
2054
|
#
|
1132
2055
|
# * `Confidence`
|
1133
2056
|
#
|
@@ -1147,8 +2070,15 @@ module Aws::SecurityHub
|
|
1147
2070
|
#
|
1148
2071
|
# * `Workflow`
|
1149
2072
|
#
|
1150
|
-
#
|
1151
|
-
#
|
2073
|
+
# You can configure IAM policies to restrict access to fields and field
|
2074
|
+
# values. For example, you might not want member accounts to be able to
|
2075
|
+
# suppress findings or change the finding severity. See [Configuring
|
2076
|
+
# access to BatchUpdateFindings][1] in the *AWS Security Hub User
|
2077
|
+
# Guide*.
|
2078
|
+
#
|
2079
|
+
#
|
2080
|
+
#
|
2081
|
+
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/finding-update-batchupdatefindings.html#batchupdatefindings-configure-access
|
1152
2082
|
#
|
1153
2083
|
# @option params [required, Array<Types::AwsSecurityFindingIdentifier>] :finding_identifiers
|
1154
2084
|
# The list of findings to update. `BatchUpdateFindings` can be used to
|
@@ -1355,31 +2285,31 @@ module Aws::SecurityHub
|
|
1355
2285
|
# product_arn: [
|
1356
2286
|
# {
|
1357
2287
|
# value: "NonEmptyString",
|
1358
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2288
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1359
2289
|
# },
|
1360
2290
|
# ],
|
1361
2291
|
# aws_account_id: [
|
1362
2292
|
# {
|
1363
2293
|
# value: "NonEmptyString",
|
1364
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2294
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1365
2295
|
# },
|
1366
2296
|
# ],
|
1367
2297
|
# id: [
|
1368
2298
|
# {
|
1369
2299
|
# value: "NonEmptyString",
|
1370
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2300
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1371
2301
|
# },
|
1372
2302
|
# ],
|
1373
2303
|
# generator_id: [
|
1374
2304
|
# {
|
1375
2305
|
# value: "NonEmptyString",
|
1376
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2306
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1377
2307
|
# },
|
1378
2308
|
# ],
|
1379
2309
|
# type: [
|
1380
2310
|
# {
|
1381
2311
|
# value: "NonEmptyString",
|
1382
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2312
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1383
2313
|
# },
|
1384
2314
|
# ],
|
1385
2315
|
# first_observed_at: [
|
@@ -1439,7 +2369,7 @@ module Aws::SecurityHub
|
|
1439
2369
|
# severity_label: [
|
1440
2370
|
# {
|
1441
2371
|
# value: "NonEmptyString",
|
1442
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2372
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1443
2373
|
# },
|
1444
2374
|
# ],
|
1445
2375
|
# confidence: [
|
@@ -1459,87 +2389,87 @@ module Aws::SecurityHub
|
|
1459
2389
|
# title: [
|
1460
2390
|
# {
|
1461
2391
|
# value: "NonEmptyString",
|
1462
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2392
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1463
2393
|
# },
|
1464
2394
|
# ],
|
1465
2395
|
# description: [
|
1466
2396
|
# {
|
1467
2397
|
# value: "NonEmptyString",
|
1468
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2398
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1469
2399
|
# },
|
1470
2400
|
# ],
|
1471
2401
|
# recommendation_text: [
|
1472
2402
|
# {
|
1473
2403
|
# value: "NonEmptyString",
|
1474
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2404
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1475
2405
|
# },
|
1476
2406
|
# ],
|
1477
2407
|
# source_url: [
|
1478
2408
|
# {
|
1479
2409
|
# value: "NonEmptyString",
|
1480
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2410
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1481
2411
|
# },
|
1482
2412
|
# ],
|
1483
2413
|
# product_fields: [
|
1484
2414
|
# {
|
1485
2415
|
# key: "NonEmptyString",
|
1486
2416
|
# value: "NonEmptyString",
|
1487
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2417
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1488
2418
|
# },
|
1489
2419
|
# ],
|
1490
2420
|
# product_name: [
|
1491
2421
|
# {
|
1492
2422
|
# value: "NonEmptyString",
|
1493
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2423
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1494
2424
|
# },
|
1495
2425
|
# ],
|
1496
2426
|
# company_name: [
|
1497
2427
|
# {
|
1498
2428
|
# value: "NonEmptyString",
|
1499
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2429
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1500
2430
|
# },
|
1501
2431
|
# ],
|
1502
2432
|
# user_defined_fields: [
|
1503
2433
|
# {
|
1504
2434
|
# key: "NonEmptyString",
|
1505
2435
|
# value: "NonEmptyString",
|
1506
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2436
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1507
2437
|
# },
|
1508
2438
|
# ],
|
1509
2439
|
# malware_name: [
|
1510
2440
|
# {
|
1511
2441
|
# value: "NonEmptyString",
|
1512
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2442
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1513
2443
|
# },
|
1514
2444
|
# ],
|
1515
2445
|
# malware_type: [
|
1516
2446
|
# {
|
1517
2447
|
# value: "NonEmptyString",
|
1518
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2448
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1519
2449
|
# },
|
1520
2450
|
# ],
|
1521
2451
|
# malware_path: [
|
1522
2452
|
# {
|
1523
2453
|
# value: "NonEmptyString",
|
1524
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2454
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1525
2455
|
# },
|
1526
2456
|
# ],
|
1527
2457
|
# malware_state: [
|
1528
2458
|
# {
|
1529
2459
|
# value: "NonEmptyString",
|
1530
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2460
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1531
2461
|
# },
|
1532
2462
|
# ],
|
1533
2463
|
# network_direction: [
|
1534
2464
|
# {
|
1535
2465
|
# value: "NonEmptyString",
|
1536
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2466
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1537
2467
|
# },
|
1538
2468
|
# ],
|
1539
2469
|
# network_protocol: [
|
1540
2470
|
# {
|
1541
2471
|
# value: "NonEmptyString",
|
1542
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2472
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1543
2473
|
# },
|
1544
2474
|
# ],
|
1545
2475
|
# network_source_ip_v4: [
|
@@ -1562,13 +2492,13 @@ module Aws::SecurityHub
|
|
1562
2492
|
# network_source_domain: [
|
1563
2493
|
# {
|
1564
2494
|
# value: "NonEmptyString",
|
1565
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2495
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1566
2496
|
# },
|
1567
2497
|
# ],
|
1568
2498
|
# network_source_mac: [
|
1569
2499
|
# {
|
1570
2500
|
# value: "NonEmptyString",
|
1571
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2501
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1572
2502
|
# },
|
1573
2503
|
# ],
|
1574
2504
|
# network_destination_ip_v4: [
|
@@ -1591,19 +2521,19 @@ module Aws::SecurityHub
|
|
1591
2521
|
# network_destination_domain: [
|
1592
2522
|
# {
|
1593
2523
|
# value: "NonEmptyString",
|
1594
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2524
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1595
2525
|
# },
|
1596
2526
|
# ],
|
1597
2527
|
# process_name: [
|
1598
2528
|
# {
|
1599
2529
|
# value: "NonEmptyString",
|
1600
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2530
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1601
2531
|
# },
|
1602
2532
|
# ],
|
1603
2533
|
# process_path: [
|
1604
2534
|
# {
|
1605
2535
|
# value: "NonEmptyString",
|
1606
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2536
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1607
2537
|
# },
|
1608
2538
|
# ],
|
1609
2539
|
# process_pid: [
|
@@ -1643,19 +2573,19 @@ module Aws::SecurityHub
|
|
1643
2573
|
# threat_intel_indicator_type: [
|
1644
2574
|
# {
|
1645
2575
|
# value: "NonEmptyString",
|
1646
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2576
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1647
2577
|
# },
|
1648
2578
|
# ],
|
1649
2579
|
# threat_intel_indicator_value: [
|
1650
2580
|
# {
|
1651
2581
|
# value: "NonEmptyString",
|
1652
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2582
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1653
2583
|
# },
|
1654
2584
|
# ],
|
1655
2585
|
# threat_intel_indicator_category: [
|
1656
2586
|
# {
|
1657
2587
|
# value: "NonEmptyString",
|
1658
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2588
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1659
2589
|
# },
|
1660
2590
|
# ],
|
1661
2591
|
# threat_intel_indicator_last_observed_at: [
|
@@ -1671,56 +2601,56 @@ module Aws::SecurityHub
|
|
1671
2601
|
# threat_intel_indicator_source: [
|
1672
2602
|
# {
|
1673
2603
|
# value: "NonEmptyString",
|
1674
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2604
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1675
2605
|
# },
|
1676
2606
|
# ],
|
1677
2607
|
# threat_intel_indicator_source_url: [
|
1678
2608
|
# {
|
1679
2609
|
# value: "NonEmptyString",
|
1680
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2610
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1681
2611
|
# },
|
1682
2612
|
# ],
|
1683
2613
|
# resource_type: [
|
1684
2614
|
# {
|
1685
2615
|
# value: "NonEmptyString",
|
1686
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2616
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1687
2617
|
# },
|
1688
2618
|
# ],
|
1689
2619
|
# resource_id: [
|
1690
2620
|
# {
|
1691
2621
|
# value: "NonEmptyString",
|
1692
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2622
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1693
2623
|
# },
|
1694
2624
|
# ],
|
1695
2625
|
# resource_partition: [
|
1696
2626
|
# {
|
1697
2627
|
# value: "NonEmptyString",
|
1698
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2628
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1699
2629
|
# },
|
1700
2630
|
# ],
|
1701
2631
|
# resource_region: [
|
1702
2632
|
# {
|
1703
2633
|
# value: "NonEmptyString",
|
1704
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2634
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1705
2635
|
# },
|
1706
2636
|
# ],
|
1707
2637
|
# resource_tags: [
|
1708
2638
|
# {
|
1709
2639
|
# key: "NonEmptyString",
|
1710
2640
|
# value: "NonEmptyString",
|
1711
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2641
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1712
2642
|
# },
|
1713
2643
|
# ],
|
1714
2644
|
# resource_aws_ec2_instance_type: [
|
1715
2645
|
# {
|
1716
2646
|
# value: "NonEmptyString",
|
1717
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2647
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1718
2648
|
# },
|
1719
2649
|
# ],
|
1720
2650
|
# resource_aws_ec2_instance_image_id: [
|
1721
2651
|
# {
|
1722
2652
|
# value: "NonEmptyString",
|
1723
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2653
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1724
2654
|
# },
|
1725
2655
|
# ],
|
1726
2656
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -1736,25 +2666,25 @@ module Aws::SecurityHub
|
|
1736
2666
|
# resource_aws_ec2_instance_key_name: [
|
1737
2667
|
# {
|
1738
2668
|
# value: "NonEmptyString",
|
1739
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2669
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1740
2670
|
# },
|
1741
2671
|
# ],
|
1742
2672
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
1743
2673
|
# {
|
1744
2674
|
# value: "NonEmptyString",
|
1745
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2675
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1746
2676
|
# },
|
1747
2677
|
# ],
|
1748
2678
|
# resource_aws_ec2_instance_vpc_id: [
|
1749
2679
|
# {
|
1750
2680
|
# value: "NonEmptyString",
|
1751
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2681
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1752
2682
|
# },
|
1753
2683
|
# ],
|
1754
2684
|
# resource_aws_ec2_instance_subnet_id: [
|
1755
2685
|
# {
|
1756
2686
|
# value: "NonEmptyString",
|
1757
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2687
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1758
2688
|
# },
|
1759
2689
|
# ],
|
1760
2690
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -1770,25 +2700,25 @@ module Aws::SecurityHub
|
|
1770
2700
|
# resource_aws_s3_bucket_owner_id: [
|
1771
2701
|
# {
|
1772
2702
|
# value: "NonEmptyString",
|
1773
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2703
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1774
2704
|
# },
|
1775
2705
|
# ],
|
1776
2706
|
# resource_aws_s3_bucket_owner_name: [
|
1777
2707
|
# {
|
1778
2708
|
# value: "NonEmptyString",
|
1779
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2709
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1780
2710
|
# },
|
1781
2711
|
# ],
|
1782
2712
|
# resource_aws_iam_access_key_user_name: [
|
1783
2713
|
# {
|
1784
2714
|
# value: "NonEmptyString",
|
1785
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2715
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1786
2716
|
# },
|
1787
2717
|
# ],
|
1788
2718
|
# resource_aws_iam_access_key_status: [
|
1789
2719
|
# {
|
1790
2720
|
# value: "NonEmptyString",
|
1791
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2721
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1792
2722
|
# },
|
1793
2723
|
# ],
|
1794
2724
|
# resource_aws_iam_access_key_created_at: [
|
@@ -1804,19 +2734,19 @@ module Aws::SecurityHub
|
|
1804
2734
|
# resource_container_name: [
|
1805
2735
|
# {
|
1806
2736
|
# value: "NonEmptyString",
|
1807
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2737
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1808
2738
|
# },
|
1809
2739
|
# ],
|
1810
2740
|
# resource_container_image_id: [
|
1811
2741
|
# {
|
1812
2742
|
# value: "NonEmptyString",
|
1813
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2743
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1814
2744
|
# },
|
1815
2745
|
# ],
|
1816
2746
|
# resource_container_image_name: [
|
1817
2747
|
# {
|
1818
2748
|
# value: "NonEmptyString",
|
1819
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2749
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1820
2750
|
# },
|
1821
2751
|
# ],
|
1822
2752
|
# resource_container_launched_at: [
|
@@ -1833,55 +2763,55 @@ module Aws::SecurityHub
|
|
1833
2763
|
# {
|
1834
2764
|
# key: "NonEmptyString",
|
1835
2765
|
# value: "NonEmptyString",
|
1836
|
-
# comparison: "EQUALS", # accepts EQUALS
|
2766
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
1837
2767
|
# },
|
1838
2768
|
# ],
|
1839
2769
|
# compliance_status: [
|
1840
2770
|
# {
|
1841
2771
|
# value: "NonEmptyString",
|
1842
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2772
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1843
2773
|
# },
|
1844
2774
|
# ],
|
1845
2775
|
# verification_state: [
|
1846
2776
|
# {
|
1847
2777
|
# value: "NonEmptyString",
|
1848
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2778
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1849
2779
|
# },
|
1850
2780
|
# ],
|
1851
2781
|
# workflow_state: [
|
1852
2782
|
# {
|
1853
2783
|
# value: "NonEmptyString",
|
1854
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2784
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1855
2785
|
# },
|
1856
2786
|
# ],
|
1857
2787
|
# workflow_status: [
|
1858
2788
|
# {
|
1859
2789
|
# value: "NonEmptyString",
|
1860
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2790
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1861
2791
|
# },
|
1862
2792
|
# ],
|
1863
2793
|
# record_state: [
|
1864
2794
|
# {
|
1865
2795
|
# value: "NonEmptyString",
|
1866
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2796
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1867
2797
|
# },
|
1868
2798
|
# ],
|
1869
2799
|
# related_findings_product_arn: [
|
1870
2800
|
# {
|
1871
2801
|
# value: "NonEmptyString",
|
1872
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2802
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1873
2803
|
# },
|
1874
2804
|
# ],
|
1875
2805
|
# related_findings_id: [
|
1876
2806
|
# {
|
1877
2807
|
# value: "NonEmptyString",
|
1878
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2808
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1879
2809
|
# },
|
1880
2810
|
# ],
|
1881
2811
|
# note_text: [
|
1882
2812
|
# {
|
1883
2813
|
# value: "NonEmptyString",
|
1884
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2814
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1885
2815
|
# },
|
1886
2816
|
# ],
|
1887
2817
|
# note_updated_at: [
|
@@ -1897,7 +2827,7 @@ module Aws::SecurityHub
|
|
1897
2827
|
# note_updated_by: [
|
1898
2828
|
# {
|
1899
2829
|
# value: "NonEmptyString",
|
1900
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
2830
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
1901
2831
|
# },
|
1902
2832
|
# ],
|
1903
2833
|
# keyword: [
|
@@ -2620,6 +3550,9 @@ module Aws::SecurityHub
|
|
2620
3550
|
# The finding attributes used to define a condition to filter the
|
2621
3551
|
# returned findings.
|
2622
3552
|
#
|
3553
|
+
# You can filter by up to 10 finding attributes. For each attribute, you
|
3554
|
+
# can provide up to 20 filter values.
|
3555
|
+
#
|
2623
3556
|
# Note that in the available filter fields, `WorkflowState` is
|
2624
3557
|
# deprecated. To search for a finding based on its workflow status, use
|
2625
3558
|
# `WorkflowStatus`.
|
@@ -2652,31 +3585,31 @@ module Aws::SecurityHub
|
|
2652
3585
|
# product_arn: [
|
2653
3586
|
# {
|
2654
3587
|
# value: "NonEmptyString",
|
2655
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3588
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2656
3589
|
# },
|
2657
3590
|
# ],
|
2658
3591
|
# aws_account_id: [
|
2659
3592
|
# {
|
2660
3593
|
# value: "NonEmptyString",
|
2661
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3594
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2662
3595
|
# },
|
2663
3596
|
# ],
|
2664
3597
|
# id: [
|
2665
3598
|
# {
|
2666
3599
|
# value: "NonEmptyString",
|
2667
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3600
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2668
3601
|
# },
|
2669
3602
|
# ],
|
2670
3603
|
# generator_id: [
|
2671
3604
|
# {
|
2672
3605
|
# value: "NonEmptyString",
|
2673
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3606
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2674
3607
|
# },
|
2675
3608
|
# ],
|
2676
3609
|
# type: [
|
2677
3610
|
# {
|
2678
3611
|
# value: "NonEmptyString",
|
2679
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3612
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2680
3613
|
# },
|
2681
3614
|
# ],
|
2682
3615
|
# first_observed_at: [
|
@@ -2736,7 +3669,7 @@ module Aws::SecurityHub
|
|
2736
3669
|
# severity_label: [
|
2737
3670
|
# {
|
2738
3671
|
# value: "NonEmptyString",
|
2739
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3672
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2740
3673
|
# },
|
2741
3674
|
# ],
|
2742
3675
|
# confidence: [
|
@@ -2756,87 +3689,87 @@ module Aws::SecurityHub
|
|
2756
3689
|
# title: [
|
2757
3690
|
# {
|
2758
3691
|
# value: "NonEmptyString",
|
2759
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3692
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2760
3693
|
# },
|
2761
3694
|
# ],
|
2762
3695
|
# description: [
|
2763
3696
|
# {
|
2764
3697
|
# value: "NonEmptyString",
|
2765
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3698
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2766
3699
|
# },
|
2767
3700
|
# ],
|
2768
3701
|
# recommendation_text: [
|
2769
3702
|
# {
|
2770
3703
|
# value: "NonEmptyString",
|
2771
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3704
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2772
3705
|
# },
|
2773
3706
|
# ],
|
2774
3707
|
# source_url: [
|
2775
3708
|
# {
|
2776
3709
|
# value: "NonEmptyString",
|
2777
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3710
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2778
3711
|
# },
|
2779
3712
|
# ],
|
2780
3713
|
# product_fields: [
|
2781
3714
|
# {
|
2782
3715
|
# key: "NonEmptyString",
|
2783
3716
|
# value: "NonEmptyString",
|
2784
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3717
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2785
3718
|
# },
|
2786
3719
|
# ],
|
2787
3720
|
# product_name: [
|
2788
3721
|
# {
|
2789
3722
|
# value: "NonEmptyString",
|
2790
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3723
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2791
3724
|
# },
|
2792
3725
|
# ],
|
2793
3726
|
# company_name: [
|
2794
3727
|
# {
|
2795
3728
|
# value: "NonEmptyString",
|
2796
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3729
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2797
3730
|
# },
|
2798
3731
|
# ],
|
2799
3732
|
# user_defined_fields: [
|
2800
3733
|
# {
|
2801
3734
|
# key: "NonEmptyString",
|
2802
3735
|
# value: "NonEmptyString",
|
2803
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3736
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
2804
3737
|
# },
|
2805
3738
|
# ],
|
2806
3739
|
# malware_name: [
|
2807
3740
|
# {
|
2808
3741
|
# value: "NonEmptyString",
|
2809
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3742
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2810
3743
|
# },
|
2811
3744
|
# ],
|
2812
3745
|
# malware_type: [
|
2813
3746
|
# {
|
2814
3747
|
# value: "NonEmptyString",
|
2815
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3748
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2816
3749
|
# },
|
2817
3750
|
# ],
|
2818
3751
|
# malware_path: [
|
2819
3752
|
# {
|
2820
3753
|
# value: "NonEmptyString",
|
2821
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3754
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2822
3755
|
# },
|
2823
3756
|
# ],
|
2824
3757
|
# malware_state: [
|
2825
3758
|
# {
|
2826
3759
|
# value: "NonEmptyString",
|
2827
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3760
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2828
3761
|
# },
|
2829
3762
|
# ],
|
2830
3763
|
# network_direction: [
|
2831
3764
|
# {
|
2832
3765
|
# value: "NonEmptyString",
|
2833
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3766
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2834
3767
|
# },
|
2835
3768
|
# ],
|
2836
3769
|
# network_protocol: [
|
2837
3770
|
# {
|
2838
3771
|
# value: "NonEmptyString",
|
2839
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3772
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2840
3773
|
# },
|
2841
3774
|
# ],
|
2842
3775
|
# network_source_ip_v4: [
|
@@ -2859,13 +3792,13 @@ module Aws::SecurityHub
|
|
2859
3792
|
# network_source_domain: [
|
2860
3793
|
# {
|
2861
3794
|
# value: "NonEmptyString",
|
2862
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3795
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2863
3796
|
# },
|
2864
3797
|
# ],
|
2865
3798
|
# network_source_mac: [
|
2866
3799
|
# {
|
2867
3800
|
# value: "NonEmptyString",
|
2868
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3801
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2869
3802
|
# },
|
2870
3803
|
# ],
|
2871
3804
|
# network_destination_ip_v4: [
|
@@ -2888,19 +3821,19 @@ module Aws::SecurityHub
|
|
2888
3821
|
# network_destination_domain: [
|
2889
3822
|
# {
|
2890
3823
|
# value: "NonEmptyString",
|
2891
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3824
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2892
3825
|
# },
|
2893
3826
|
# ],
|
2894
3827
|
# process_name: [
|
2895
3828
|
# {
|
2896
3829
|
# value: "NonEmptyString",
|
2897
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3830
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2898
3831
|
# },
|
2899
3832
|
# ],
|
2900
3833
|
# process_path: [
|
2901
3834
|
# {
|
2902
3835
|
# value: "NonEmptyString",
|
2903
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3836
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2904
3837
|
# },
|
2905
3838
|
# ],
|
2906
3839
|
# process_pid: [
|
@@ -2940,19 +3873,19 @@ module Aws::SecurityHub
|
|
2940
3873
|
# threat_intel_indicator_type: [
|
2941
3874
|
# {
|
2942
3875
|
# value: "NonEmptyString",
|
2943
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3876
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2944
3877
|
# },
|
2945
3878
|
# ],
|
2946
3879
|
# threat_intel_indicator_value: [
|
2947
3880
|
# {
|
2948
3881
|
# value: "NonEmptyString",
|
2949
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3882
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2950
3883
|
# },
|
2951
3884
|
# ],
|
2952
3885
|
# threat_intel_indicator_category: [
|
2953
3886
|
# {
|
2954
3887
|
# value: "NonEmptyString",
|
2955
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3888
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2956
3889
|
# },
|
2957
3890
|
# ],
|
2958
3891
|
# threat_intel_indicator_last_observed_at: [
|
@@ -2968,56 +3901,56 @@ module Aws::SecurityHub
|
|
2968
3901
|
# threat_intel_indicator_source: [
|
2969
3902
|
# {
|
2970
3903
|
# value: "NonEmptyString",
|
2971
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3904
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2972
3905
|
# },
|
2973
3906
|
# ],
|
2974
3907
|
# threat_intel_indicator_source_url: [
|
2975
3908
|
# {
|
2976
3909
|
# value: "NonEmptyString",
|
2977
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3910
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2978
3911
|
# },
|
2979
3912
|
# ],
|
2980
3913
|
# resource_type: [
|
2981
3914
|
# {
|
2982
3915
|
# value: "NonEmptyString",
|
2983
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3916
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2984
3917
|
# },
|
2985
3918
|
# ],
|
2986
3919
|
# resource_id: [
|
2987
3920
|
# {
|
2988
3921
|
# value: "NonEmptyString",
|
2989
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3922
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2990
3923
|
# },
|
2991
3924
|
# ],
|
2992
3925
|
# resource_partition: [
|
2993
3926
|
# {
|
2994
3927
|
# value: "NonEmptyString",
|
2995
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3928
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
2996
3929
|
# },
|
2997
3930
|
# ],
|
2998
3931
|
# resource_region: [
|
2999
3932
|
# {
|
3000
3933
|
# value: "NonEmptyString",
|
3001
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3934
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3002
3935
|
# },
|
3003
3936
|
# ],
|
3004
3937
|
# resource_tags: [
|
3005
3938
|
# {
|
3006
3939
|
# key: "NonEmptyString",
|
3007
3940
|
# value: "NonEmptyString",
|
3008
|
-
# comparison: "EQUALS", # accepts EQUALS
|
3941
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
3009
3942
|
# },
|
3010
3943
|
# ],
|
3011
3944
|
# resource_aws_ec2_instance_type: [
|
3012
3945
|
# {
|
3013
3946
|
# value: "NonEmptyString",
|
3014
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3947
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3015
3948
|
# },
|
3016
3949
|
# ],
|
3017
3950
|
# resource_aws_ec2_instance_image_id: [
|
3018
3951
|
# {
|
3019
3952
|
# value: "NonEmptyString",
|
3020
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3953
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3021
3954
|
# },
|
3022
3955
|
# ],
|
3023
3956
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -3033,25 +3966,25 @@ module Aws::SecurityHub
|
|
3033
3966
|
# resource_aws_ec2_instance_key_name: [
|
3034
3967
|
# {
|
3035
3968
|
# value: "NonEmptyString",
|
3036
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3969
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3037
3970
|
# },
|
3038
3971
|
# ],
|
3039
3972
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
3040
3973
|
# {
|
3041
3974
|
# value: "NonEmptyString",
|
3042
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3975
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3043
3976
|
# },
|
3044
3977
|
# ],
|
3045
3978
|
# resource_aws_ec2_instance_vpc_id: [
|
3046
3979
|
# {
|
3047
3980
|
# value: "NonEmptyString",
|
3048
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3981
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3049
3982
|
# },
|
3050
3983
|
# ],
|
3051
3984
|
# resource_aws_ec2_instance_subnet_id: [
|
3052
3985
|
# {
|
3053
3986
|
# value: "NonEmptyString",
|
3054
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
3987
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3055
3988
|
# },
|
3056
3989
|
# ],
|
3057
3990
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -3067,25 +4000,25 @@ module Aws::SecurityHub
|
|
3067
4000
|
# resource_aws_s3_bucket_owner_id: [
|
3068
4001
|
# {
|
3069
4002
|
# value: "NonEmptyString",
|
3070
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4003
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3071
4004
|
# },
|
3072
4005
|
# ],
|
3073
4006
|
# resource_aws_s3_bucket_owner_name: [
|
3074
4007
|
# {
|
3075
4008
|
# value: "NonEmptyString",
|
3076
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4009
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3077
4010
|
# },
|
3078
4011
|
# ],
|
3079
4012
|
# resource_aws_iam_access_key_user_name: [
|
3080
4013
|
# {
|
3081
4014
|
# value: "NonEmptyString",
|
3082
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4015
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3083
4016
|
# },
|
3084
4017
|
# ],
|
3085
4018
|
# resource_aws_iam_access_key_status: [
|
3086
4019
|
# {
|
3087
4020
|
# value: "NonEmptyString",
|
3088
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4021
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3089
4022
|
# },
|
3090
4023
|
# ],
|
3091
4024
|
# resource_aws_iam_access_key_created_at: [
|
@@ -3101,19 +4034,19 @@ module Aws::SecurityHub
|
|
3101
4034
|
# resource_container_name: [
|
3102
4035
|
# {
|
3103
4036
|
# value: "NonEmptyString",
|
3104
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4037
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3105
4038
|
# },
|
3106
4039
|
# ],
|
3107
4040
|
# resource_container_image_id: [
|
3108
4041
|
# {
|
3109
4042
|
# value: "NonEmptyString",
|
3110
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4043
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3111
4044
|
# },
|
3112
4045
|
# ],
|
3113
4046
|
# resource_container_image_name: [
|
3114
4047
|
# {
|
3115
4048
|
# value: "NonEmptyString",
|
3116
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4049
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3117
4050
|
# },
|
3118
4051
|
# ],
|
3119
4052
|
# resource_container_launched_at: [
|
@@ -3130,55 +4063,55 @@ module Aws::SecurityHub
|
|
3130
4063
|
# {
|
3131
4064
|
# key: "NonEmptyString",
|
3132
4065
|
# value: "NonEmptyString",
|
3133
|
-
# comparison: "EQUALS", # accepts EQUALS
|
4066
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
3134
4067
|
# },
|
3135
4068
|
# ],
|
3136
4069
|
# compliance_status: [
|
3137
4070
|
# {
|
3138
4071
|
# value: "NonEmptyString",
|
3139
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4072
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3140
4073
|
# },
|
3141
4074
|
# ],
|
3142
4075
|
# verification_state: [
|
3143
4076
|
# {
|
3144
4077
|
# value: "NonEmptyString",
|
3145
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4078
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3146
4079
|
# },
|
3147
4080
|
# ],
|
3148
4081
|
# workflow_state: [
|
3149
4082
|
# {
|
3150
4083
|
# value: "NonEmptyString",
|
3151
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4084
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3152
4085
|
# },
|
3153
4086
|
# ],
|
3154
4087
|
# workflow_status: [
|
3155
4088
|
# {
|
3156
4089
|
# value: "NonEmptyString",
|
3157
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4090
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3158
4091
|
# },
|
3159
4092
|
# ],
|
3160
4093
|
# record_state: [
|
3161
4094
|
# {
|
3162
4095
|
# value: "NonEmptyString",
|
3163
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4096
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3164
4097
|
# },
|
3165
4098
|
# ],
|
3166
4099
|
# related_findings_product_arn: [
|
3167
4100
|
# {
|
3168
4101
|
# value: "NonEmptyString",
|
3169
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4102
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3170
4103
|
# },
|
3171
4104
|
# ],
|
3172
4105
|
# related_findings_id: [
|
3173
4106
|
# {
|
3174
4107
|
# value: "NonEmptyString",
|
3175
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4108
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3176
4109
|
# },
|
3177
4110
|
# ],
|
3178
4111
|
# note_text: [
|
3179
4112
|
# {
|
3180
4113
|
# value: "NonEmptyString",
|
3181
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4114
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3182
4115
|
# },
|
3183
4116
|
# ],
|
3184
4117
|
# note_updated_at: [
|
@@ -3194,7 +4127,7 @@ module Aws::SecurityHub
|
|
3194
4127
|
# note_updated_by: [
|
3195
4128
|
# {
|
3196
4129
|
# value: "NonEmptyString",
|
3197
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
4130
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
3198
4131
|
# },
|
3199
4132
|
# ],
|
3200
4133
|
# keyword: [
|
@@ -3303,6 +4236,7 @@ module Aws::SecurityHub
|
|
3303
4236
|
# resp.findings[0].resources[0].id #=> String
|
3304
4237
|
# resp.findings[0].resources[0].partition #=> String, one of "aws", "aws-cn", "aws-us-gov"
|
3305
4238
|
# resp.findings[0].resources[0].region #=> String
|
4239
|
+
# resp.findings[0].resources[0].resource_role #=> String
|
3306
4240
|
# resp.findings[0].resources[0].tags #=> Hash
|
3307
4241
|
# resp.findings[0].resources[0].tags["NonEmptyString"] #=> String
|
3308
4242
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_configuration_name #=> String
|
@@ -3328,6 +4262,10 @@ module Aws::SecurityHub
|
|
3328
4262
|
# resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.subnets[0] #=> String
|
3329
4263
|
# resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.security_group_ids #=> Array
|
3330
4264
|
# resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.security_group_ids[0] #=> String
|
4265
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.cache_behaviors.items #=> Array
|
4266
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.cache_behaviors.items[0].viewer_protocol_policy #=> String
|
4267
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.default_cache_behavior.viewer_protocol_policy #=> String
|
4268
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.default_root_object #=> String
|
3331
4269
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.domain_name #=> String
|
3332
4270
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.etag #=> String
|
3333
4271
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.last_modified_time #=> String
|
@@ -3339,6 +4277,11 @@ module Aws::SecurityHub
|
|
3339
4277
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].domain_name #=> String
|
3340
4278
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].id #=> String
|
3341
4279
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].origin_path #=> String
|
4280
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
4281
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items #=> Array
|
4282
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
4283
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
4284
|
+
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
3342
4285
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.status #=> String
|
3343
4286
|
# resp.findings[0].resources[0].details.aws_cloud_front_distribution.web_acl_id #=> String
|
3344
4287
|
# resp.findings[0].resources[0].details.aws_ec2_instance.type #=> String
|
@@ -3423,6 +4366,16 @@ module Aws::SecurityHub
|
|
3423
4366
|
# resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].cidr_block_state #=> String
|
3424
4367
|
# resp.findings[0].resources[0].details.aws_ec2_vpc.dhcp_options_id #=> String
|
3425
4368
|
# resp.findings[0].resources[0].details.aws_ec2_vpc.state #=> String
|
4369
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.instance_id #=> String
|
4370
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.public_ip #=> String
|
4371
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.allocation_id #=> String
|
4372
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.association_id #=> String
|
4373
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.domain #=> String
|
4374
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.public_ipv_4_pool #=> String
|
4375
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_border_group #=> String
|
4376
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_id #=> String
|
4377
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_owner_id #=> String
|
4378
|
+
# resp.findings[0].resources[0].details.aws_ec2_eip.private_ip_address #=> String
|
3426
4379
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones #=> Array
|
3427
4380
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].zone_name #=> String
|
3428
4381
|
# resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].subnet_id #=> String
|
@@ -3468,16 +4421,442 @@ module Aws::SecurityHub
|
|
3468
4421
|
# resp.findings[0].resources[0].details.aws_s3_object.content_type #=> String
|
3469
4422
|
# resp.findings[0].resources[0].details.aws_s3_object.server_side_encryption #=> String
|
3470
4423
|
# resp.findings[0].resources[0].details.aws_s3_object.ssekms_key_id #=> String
|
4424
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_rules.automatically_after_days #=> Integer
|
4425
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_occurred_within_frequency #=> Boolean
|
4426
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.kms_key_id #=> String
|
4427
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_enabled #=> Boolean
|
4428
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_lambda_arn #=> String
|
4429
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.deleted #=> Boolean
|
4430
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.name #=> String
|
4431
|
+
# resp.findings[0].resources[0].details.aws_secrets_manager_secret.description #=> String
|
3471
4432
|
# resp.findings[0].resources[0].details.aws_iam_access_key.user_name #=> String
|
3472
4433
|
# resp.findings[0].resources[0].details.aws_iam_access_key.status #=> String, one of "Active", "Inactive"
|
3473
4434
|
# resp.findings[0].resources[0].details.aws_iam_access_key.created_at #=> String
|
3474
4435
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_id #=> String
|
3475
4436
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_type #=> String
|
3476
4437
|
# resp.findings[0].resources[0].details.aws_iam_access_key.principal_name #=> String
|
4438
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.account_id #=> String
|
4439
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.access_key_id #=> String
|
4440
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.attributes.mfa_authenticated #=> Boolean
|
4441
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.attributes.creation_date #=> String
|
4442
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.type #=> String
|
4443
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.principal_id #=> String
|
4444
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.arn #=> String
|
4445
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.account_id #=> String
|
4446
|
+
# resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.user_name #=> String
|
4447
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies #=> Array
|
4448
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_name #=> String
|
4449
|
+
# resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_arn #=> String
|
4450
|
+
# resp.findings[0].resources[0].details.aws_iam_user.create_date #=> String
|
4451
|
+
# resp.findings[0].resources[0].details.aws_iam_user.group_list #=> Array
|
4452
|
+
# resp.findings[0].resources[0].details.aws_iam_user.group_list[0] #=> String
|
4453
|
+
# resp.findings[0].resources[0].details.aws_iam_user.path #=> String
|
4454
|
+
# resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_arn #=> String
|
4455
|
+
# resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_type #=> String
|
4456
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_id #=> String
|
4457
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_name #=> String
|
4458
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_policy_list #=> Array
|
4459
|
+
# resp.findings[0].resources[0].details.aws_iam_user.user_policy_list[0].policy_name #=> String
|
4460
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.attachment_count #=> Integer
|
4461
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.create_date #=> String
|
4462
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.default_version_id #=> String
|
4463
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.description #=> String
|
4464
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.is_attachable #=> Boolean
|
4465
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.path #=> String
|
4466
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.permissions_boundary_usage_count #=> Integer
|
4467
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_id #=> String
|
4468
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_name #=> String
|
4469
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list #=> Array
|
4470
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].version_id #=> String
|
4471
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].is_default_version #=> Boolean
|
4472
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].create_date #=> String
|
4473
|
+
# resp.findings[0].resources[0].details.aws_iam_policy.update_date #=> String
|
4474
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.created_date #=> String
|
4475
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.description #=> String
|
4476
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.detailed_metrics_enabled #=> Boolean
|
4477
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.logging_level #=> String
|
4478
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.data_trace_enabled #=> Boolean
|
4479
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.throttling_burst_limit #=> Integer
|
4480
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.throttling_rate_limit #=> Float
|
4481
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.deployment_id #=> String
|
4482
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.last_updated_date #=> String
|
4483
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.detailed_metrics_enabled #=> Boolean
|
4484
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.logging_level #=> String
|
4485
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.data_trace_enabled #=> Boolean
|
4486
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.throttling_burst_limit #=> Integer
|
4487
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.throttling_rate_limit #=> Float
|
4488
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.stage_name #=> String
|
4489
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.stage_variables #=> Hash
|
4490
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.stage_variables["NonEmptyString"] #=> String
|
4491
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.access_log_settings.format #=> String
|
4492
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.access_log_settings.destination_arn #=> String
|
4493
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.auto_deploy #=> Boolean
|
4494
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.last_deployment_status_message #=> String
|
4495
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.api_gateway_managed #=> Boolean
|
4496
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.api_endpoint #=> String
|
4497
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.api_id #=> String
|
4498
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.api_key_selection_expression #=> String
|
4499
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.created_date #=> String
|
4500
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.description #=> String
|
4501
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.version #=> String
|
4502
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.name #=> String
|
4503
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.protocol_type #=> String
|
4504
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.route_selection_expression #=> String
|
4505
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_origins #=> Array
|
4506
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_origins[0] #=> String
|
4507
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_credentials #=> Boolean
|
4508
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.expose_headers #=> Array
|
4509
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.expose_headers[0] #=> String
|
4510
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.max_age #=> Integer
|
4511
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_methods #=> Array
|
4512
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_methods[0] #=> String
|
4513
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_headers #=> Array
|
4514
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_headers[0] #=> String
|
4515
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions #=> Array
|
4516
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_name #=> String
|
4517
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_type #=> String
|
4518
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.billing_mode #=> String
|
4519
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.last_update_to_pay_per_request_date_time #=> String
|
4520
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.creation_date_time #=> String
|
4521
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes #=> Array
|
4522
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].backfilling #=> Boolean
|
4523
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_arn #=> String
|
4524
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_name #=> String
|
4525
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_size_bytes #=> Integer
|
4526
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_status #=> String
|
4527
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].item_count #=> Integer
|
4528
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema #=> Array
|
4529
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].attribute_name #=> String
|
4530
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].key_type #=> String
|
4531
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes #=> Array
|
4532
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes[0] #=> String
|
4533
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.projection_type #=> String
|
4534
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_decrease_date_time #=> String
|
4535
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_increase_date_time #=> String
|
4536
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.number_of_decreases_today #=> Integer
|
4537
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.read_capacity_units #=> Integer
|
4538
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.write_capacity_units #=> Integer
|
4539
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.global_table_version #=> String
|
4540
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.item_count #=> Integer
|
4541
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema #=> Array
|
4542
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].attribute_name #=> String
|
4543
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].key_type #=> String
|
4544
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_arn #=> String
|
4545
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_label #=> String
|
4546
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes #=> Array
|
4547
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_arn #=> String
|
4548
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_name #=> String
|
4549
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema #=> Array
|
4550
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].attribute_name #=> String
|
4551
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].key_type #=> String
|
4552
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes #=> Array
|
4553
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes[0] #=> String
|
4554
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.projection_type #=> String
|
4555
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_decrease_date_time #=> String
|
4556
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_increase_date_time #=> String
|
4557
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.number_of_decreases_today #=> Integer
|
4558
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.read_capacity_units #=> Integer
|
4559
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.write_capacity_units #=> Integer
|
4560
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas #=> Array
|
4561
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes #=> Array
|
4562
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4563
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4564
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].kms_master_key_id #=> String
|
4565
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4566
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].region_name #=> String
|
4567
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status #=> String
|
4568
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status_description #=> String
|
4569
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_backup_arn #=> String
|
4570
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_table_arn #=> String
|
4571
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_date_time #=> String
|
4572
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_in_progress #=> Boolean
|
4573
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.inaccessible_encryption_date_time #=> String
|
4574
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.status #=> String
|
4575
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.sse_type #=> String
|
4576
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.kms_master_key_arn #=> String
|
4577
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_enabled #=> Boolean
|
4578
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_view_type #=> String
|
4579
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_id #=> String
|
4580
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_name #=> String
|
4581
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_size_bytes #=> Integer
|
4582
|
+
# resp.findings[0].resources[0].details.aws_dynamo_db_table.table_status #=> String
|
4583
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.deployment_id #=> String
|
4584
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.client_certificate_id #=> String
|
4585
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.stage_name #=> String
|
4586
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.description #=> String
|
4587
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.cache_cluster_enabled #=> Boolean
|
4588
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.cache_cluster_size #=> String
|
4589
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.cache_cluster_status #=> String
|
4590
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings #=> Array
|
4591
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].metrics_enabled #=> Boolean
|
4592
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].logging_level #=> String
|
4593
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].data_trace_enabled #=> Boolean
|
4594
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].throttling_burst_limit #=> Integer
|
4595
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].throttling_rate_limit #=> Float
|
4596
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].caching_enabled #=> Boolean
|
4597
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].cache_ttl_in_seconds #=> Integer
|
4598
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].cache_data_encrypted #=> Boolean
|
4599
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].require_authorization_for_cache_control #=> Boolean
|
4600
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].unauthorized_cache_control_header_strategy #=> String
|
4601
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].http_method #=> String
|
4602
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].resource_path #=> String
|
4603
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.variables #=> Hash
|
4604
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.variables["NonEmptyString"] #=> String
|
4605
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.documentation_version #=> String
|
4606
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.access_log_settings.format #=> String
|
4607
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.access_log_settings.destination_arn #=> String
|
4608
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.percent_traffic #=> Float
|
4609
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.deployment_id #=> String
|
4610
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.stage_variable_overrides #=> Hash
|
4611
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.stage_variable_overrides["NonEmptyString"] #=> String
|
4612
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.use_stage_cache #=> Boolean
|
4613
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.tracing_enabled #=> Boolean
|
4614
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.created_date #=> String
|
4615
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.last_updated_date #=> String
|
4616
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_stage.web_acl_arn #=> String
|
4617
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.id #=> String
|
4618
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.name #=> String
|
4619
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.description #=> String
|
4620
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.created_date #=> String
|
4621
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.version #=> String
|
4622
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.binary_media_types #=> Array
|
4623
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.binary_media_types[0] #=> String
|
4624
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.minimum_compression_size #=> Integer
|
4625
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.api_key_source #=> String
|
4626
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.endpoint_configuration.types #=> Array
|
4627
|
+
# resp.findings[0].resources[0].details.aws_api_gateway_rest_api.endpoint_configuration.types[0] #=> String
|
4628
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.cloud_watch_logs_log_group_arn #=> String
|
4629
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.cloud_watch_logs_role_arn #=> String
|
4630
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.has_custom_event_selectors #=> Boolean
|
4631
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.home_region #=> String
|
4632
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.include_global_service_events #=> Boolean
|
4633
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.is_multi_region_trail #=> Boolean
|
4634
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.is_organization_trail #=> Boolean
|
4635
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.kms_key_id #=> String
|
4636
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.log_file_validation_enabled #=> Boolean
|
4637
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.name #=> String
|
4638
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.s3_bucket_name #=> String
|
4639
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.s3_key_prefix #=> String
|
4640
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.sns_topic_arn #=> String
|
4641
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.sns_topic_name #=> String
|
4642
|
+
# resp.findings[0].resources[0].details.aws_cloud_trail_trail.trail_arn #=> String
|
4643
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.certificate_authority_arn #=> String
|
4644
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.created_at #=> String
|
4645
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_name #=> String
|
4646
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options #=> Array
|
4647
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].domain_name #=> String
|
4648
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].resource_record.name #=> String
|
4649
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].resource_record.type #=> String
|
4650
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].resource_record.value #=> String
|
4651
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_domain #=> String
|
4652
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_emails #=> Array
|
4653
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_emails[0] #=> String
|
4654
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_method #=> String
|
4655
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_status #=> String
|
4656
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.extended_key_usages #=> Array
|
4657
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.extended_key_usages[0].name #=> String
|
4658
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.extended_key_usages[0].o_id #=> String
|
4659
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.failure_reason #=> String
|
4660
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.imported_at #=> String
|
4661
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.in_use_by #=> Array
|
4662
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.in_use_by[0] #=> String
|
4663
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.issued_at #=> String
|
4664
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.issuer #=> String
|
4665
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.key_algorithm #=> String
|
4666
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.key_usages #=> Array
|
4667
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.key_usages[0].name #=> String
|
4668
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.not_after #=> String
|
4669
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.not_before #=> String
|
4670
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.options.certificate_transparency_logging_preference #=> String
|
4671
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_eligibility #=> String
|
4672
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options #=> Array
|
4673
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].domain_name #=> String
|
4674
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].resource_record.name #=> String
|
4675
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].resource_record.type #=> String
|
4676
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].resource_record.value #=> String
|
4677
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_domain #=> String
|
4678
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_emails #=> Array
|
4679
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_emails[0] #=> String
|
4680
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_method #=> String
|
4681
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_status #=> String
|
4682
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.renewal_status #=> String
|
4683
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.renewal_status_reason #=> String
|
4684
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.updated_at #=> String
|
4685
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.serial #=> String
|
4686
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.signature_algorithm #=> String
|
4687
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.status #=> String
|
4688
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.subject #=> String
|
4689
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.subject_alternative_names #=> Array
|
4690
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.subject_alternative_names[0] #=> String
|
4691
|
+
# resp.findings[0].resources[0].details.aws_certificate_manager_certificate.type #=> String
|
4692
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.allow_version_upgrade #=> Boolean
|
4693
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.automated_snapshot_retention_period #=> Integer
|
4694
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.availability_zone #=> String
|
4695
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_availability_status #=> String
|
4696
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_create_time #=> String
|
4697
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_identifier #=> String
|
4698
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes #=> Array
|
4699
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes[0].node_role #=> String
|
4700
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes[0].private_ip_address #=> String
|
4701
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes[0].public_ip_address #=> String
|
4702
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups #=> Array
|
4703
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list #=> Array
|
4704
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_name #=> String
|
4705
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_apply_status #=> String
|
4706
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_apply_error_description #=> String
|
4707
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].parameter_apply_status #=> String
|
4708
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].parameter_group_name #=> String
|
4709
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_public_key #=> String
|
4710
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_revision_number #=> String
|
4711
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_security_groups #=> Array
|
4712
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_security_groups[0].cluster_security_group_name #=> String
|
4713
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_security_groups[0].status #=> String
|
4714
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.destination_region #=> String
|
4715
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.manual_snapshot_retention_period #=> Integer
|
4716
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.retention_period #=> Integer
|
4717
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.snapshot_copy_grant_name #=> String
|
4718
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_status #=> String
|
4719
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_subnet_group_name #=> String
|
4720
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_version #=> String
|
4721
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.db_name #=> String
|
4722
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows #=> Array
|
4723
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows[0].defer_maintenance_end_time #=> String
|
4724
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows[0].defer_maintenance_identifier #=> String
|
4725
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows[0].defer_maintenance_start_time #=> String
|
4726
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.elastic_ip_status.elastic_ip #=> String
|
4727
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.elastic_ip_status.status #=> String
|
4728
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.elastic_resize_number_of_node_options #=> String
|
4729
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.encrypted #=> Boolean
|
4730
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.endpoint.address #=> String
|
4731
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.endpoint.port #=> Integer
|
4732
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.enhanced_vpc_routing #=> Boolean
|
4733
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.expected_next_snapshot_schedule_time #=> String
|
4734
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.expected_next_snapshot_schedule_time_status #=> String
|
4735
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.hsm_status.hsm_client_certificate_identifier #=> String
|
4736
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.hsm_status.hsm_configuration_identifier #=> String
|
4737
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.hsm_status.status #=> String
|
4738
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.iam_roles #=> Array
|
4739
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.iam_roles[0].apply_status #=> String
|
4740
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.iam_roles[0].iam_role_arn #=> String
|
4741
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.kms_key_id #=> String
|
4742
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.maintenance_track_name #=> String
|
4743
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.manual_snapshot_retention_period #=> Integer
|
4744
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.master_username #=> String
|
4745
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.next_maintenance_window_start_time #=> String
|
4746
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.node_type #=> String
|
4747
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.number_of_nodes #=> Integer
|
4748
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_actions #=> Array
|
4749
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_actions[0] #=> String
|
4750
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.automated_snapshot_retention_period #=> Integer
|
4751
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.cluster_identifier #=> String
|
4752
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.cluster_type #=> String
|
4753
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.cluster_version #=> String
|
4754
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.encryption_type #=> String
|
4755
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.enhanced_vpc_routing #=> Boolean
|
4756
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.maintenance_track_name #=> String
|
4757
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.master_user_password #=> String
|
4758
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.node_type #=> String
|
4759
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.number_of_nodes #=> Integer
|
4760
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.publicly_accessible #=> Boolean
|
4761
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.preferred_maintenance_window #=> String
|
4762
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.publicly_accessible #=> Boolean
|
4763
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.resize_info.allow_cancel_resize #=> Boolean
|
4764
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.resize_info.resize_type #=> String
|
4765
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.current_restore_rate_in_mega_bytes_per_second #=> Float
|
4766
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.elapsed_time_in_seconds #=> Integer
|
4767
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.estimated_time_to_completion_in_seconds #=> Integer
|
4768
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.progress_in_mega_bytes #=> Integer
|
4769
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.snapshot_size_in_mega_bytes #=> Integer
|
4770
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.status #=> String
|
4771
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.snapshot_schedule_identifier #=> String
|
4772
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.snapshot_schedule_state #=> String
|
4773
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_id #=> String
|
4774
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_security_groups #=> Array
|
4775
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_security_groups[0].status #=> String
|
4776
|
+
# resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_security_groups[0].vpc_security_group_id #=> String
|
4777
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.availability_zones #=> Array
|
4778
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.availability_zones[0] #=> String
|
4779
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions #=> Array
|
4780
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions[0].instance_port #=> Integer
|
4781
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions[0].policy_names #=> Array
|
4782
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions[0].policy_names[0] #=> String
|
4783
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.canonical_hosted_zone_name #=> String
|
4784
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.canonical_hosted_zone_name_id #=> String
|
4785
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.created_time #=> String
|
4786
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.dns_name #=> String
|
4787
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.healthy_threshold #=> Integer
|
4788
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.interval #=> Integer
|
4789
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.target #=> String
|
4790
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.timeout #=> Integer
|
4791
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.unhealthy_threshold #=> Integer
|
4792
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.instances #=> Array
|
4793
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.instances[0].instance_id #=> String
|
4794
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions #=> Array
|
4795
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.instance_port #=> Integer
|
4796
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.instance_protocol #=> String
|
4797
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.load_balancer_port #=> Integer
|
4798
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.protocol #=> String
|
4799
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.ssl_certificate_id #=> String
|
4800
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].policy_names #=> Array
|
4801
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].policy_names[0] #=> String
|
4802
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.emit_interval #=> Integer
|
4803
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.enabled #=> Boolean
|
4804
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.s3_bucket_name #=> String
|
4805
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.s3_bucket_prefix #=> String
|
4806
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.connection_draining.enabled #=> Boolean
|
4807
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.connection_draining.timeout #=> Integer
|
4808
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.connection_settings.idle_timeout #=> Integer
|
4809
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.cross_zone_load_balancing.enabled #=> Boolean
|
4810
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_name #=> String
|
4811
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.app_cookie_stickiness_policies #=> Array
|
4812
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.app_cookie_stickiness_policies[0].cookie_name #=> String
|
4813
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.app_cookie_stickiness_policies[0].policy_name #=> String
|
4814
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.lb_cookie_stickiness_policies #=> Array
|
4815
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.lb_cookie_stickiness_policies[0].cookie_expiration_period #=> Integer
|
4816
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.lb_cookie_stickiness_policies[0].policy_name #=> String
|
4817
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.other_policies #=> Array
|
4818
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.other_policies[0] #=> String
|
4819
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.scheme #=> String
|
4820
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.security_groups #=> Array
|
4821
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.security_groups[0] #=> String
|
4822
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.source_security_group.group_name #=> String
|
4823
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.source_security_group.owner_alias #=> String
|
4824
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.subnets #=> Array
|
4825
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.subnets[0] #=> String
|
4826
|
+
# resp.findings[0].resources[0].details.aws_elb_load_balancer.vpc_id #=> String
|
4827
|
+
# resp.findings[0].resources[0].details.aws_iam_group.attached_managed_policies #=> Array
|
4828
|
+
# resp.findings[0].resources[0].details.aws_iam_group.attached_managed_policies[0].policy_name #=> String
|
4829
|
+
# resp.findings[0].resources[0].details.aws_iam_group.attached_managed_policies[0].policy_arn #=> String
|
4830
|
+
# resp.findings[0].resources[0].details.aws_iam_group.create_date #=> String
|
4831
|
+
# resp.findings[0].resources[0].details.aws_iam_group.group_id #=> String
|
4832
|
+
# resp.findings[0].resources[0].details.aws_iam_group.group_name #=> String
|
4833
|
+
# resp.findings[0].resources[0].details.aws_iam_group.group_policy_list #=> Array
|
4834
|
+
# resp.findings[0].resources[0].details.aws_iam_group.group_policy_list[0].policy_name #=> String
|
4835
|
+
# resp.findings[0].resources[0].details.aws_iam_group.path #=> String
|
3477
4836
|
# resp.findings[0].resources[0].details.aws_iam_role.assume_role_policy_document #=> String
|
4837
|
+
# resp.findings[0].resources[0].details.aws_iam_role.attached_managed_policies #=> Array
|
4838
|
+
# resp.findings[0].resources[0].details.aws_iam_role.attached_managed_policies[0].policy_name #=> String
|
4839
|
+
# resp.findings[0].resources[0].details.aws_iam_role.attached_managed_policies[0].policy_arn #=> String
|
3478
4840
|
# resp.findings[0].resources[0].details.aws_iam_role.create_date #=> String
|
4841
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list #=> Array
|
4842
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].arn #=> String
|
4843
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].create_date #=> String
|
4844
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].instance_profile_id #=> String
|
4845
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].instance_profile_name #=> String
|
4846
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].path #=> String
|
4847
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles #=> Array
|
4848
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].arn #=> String
|
4849
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].assume_role_policy_document #=> String
|
4850
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].create_date #=> String
|
4851
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].path #=> String
|
4852
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].role_id #=> String
|
4853
|
+
# resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].role_name #=> String
|
4854
|
+
# resp.findings[0].resources[0].details.aws_iam_role.permissions_boundary.permissions_boundary_arn #=> String
|
4855
|
+
# resp.findings[0].resources[0].details.aws_iam_role.permissions_boundary.permissions_boundary_type #=> String
|
3479
4856
|
# resp.findings[0].resources[0].details.aws_iam_role.role_id #=> String
|
3480
4857
|
# resp.findings[0].resources[0].details.aws_iam_role.role_name #=> String
|
4858
|
+
# resp.findings[0].resources[0].details.aws_iam_role.role_policy_list #=> Array
|
4859
|
+
# resp.findings[0].resources[0].details.aws_iam_role.role_policy_list[0].policy_name #=> String
|
3481
4860
|
# resp.findings[0].resources[0].details.aws_iam_role.max_session_duration #=> Integer
|
3482
4861
|
# resp.findings[0].resources[0].details.aws_iam_role.path #=> String
|
3483
4862
|
# resp.findings[0].resources[0].details.aws_kms_key.aws_account_id #=> String
|
@@ -3486,6 +4865,7 @@ module Aws::SecurityHub
|
|
3486
4865
|
# resp.findings[0].resources[0].details.aws_kms_key.key_manager #=> String
|
3487
4866
|
# resp.findings[0].resources[0].details.aws_kms_key.key_state #=> String
|
3488
4867
|
# resp.findings[0].resources[0].details.aws_kms_key.origin #=> String
|
4868
|
+
# resp.findings[0].resources[0].details.aws_kms_key.description #=> String
|
3489
4869
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_bucket #=> String
|
3490
4870
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_key #=> String
|
3491
4871
|
# resp.findings[0].resources[0].details.aws_lambda_function.code.s3_object_version #=> String
|
@@ -3546,6 +4926,91 @@ module Aws::SecurityHub
|
|
3546
4926
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups #=> Array
|
3547
4927
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].vpc_security_group_id #=> String
|
3548
4928
|
# resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].status #=> String
|
4929
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.multi_az #=> Boolean
|
4930
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enhanced_monitoring_resource_arn #=> String
|
4931
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_status #=> String
|
4932
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.master_username #=> String
|
4933
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.allocated_storage #=> Integer
|
4934
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_backup_window #=> String
|
4935
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.backup_retention_period #=> Integer
|
4936
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups #=> Array
|
4937
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups[0] #=> String
|
4938
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups #=> Array
|
4939
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].db_parameter_group_name #=> String
|
4940
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].parameter_apply_status #=> String
|
4941
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.availability_zone #=> String
|
4942
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_name #=> String
|
4943
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_description #=> String
|
4944
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.vpc_id #=> String
|
4945
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnet_group_status #=> String
|
4946
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets #=> Array
|
4947
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4948
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4949
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4950
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4951
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_maintenance_window #=> String
|
4952
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_class #=> String
|
4953
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.allocated_storage #=> Integer
|
4954
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.master_user_password #=> String
|
4955
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.port #=> Integer
|
4956
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.backup_retention_period #=> Integer
|
4957
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.multi_az #=> Boolean
|
4958
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.engine_version #=> String
|
4959
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.license_model #=> String
|
4960
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.iops #=> Integer
|
4961
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_identifier #=> String
|
4962
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.storage_type #=> String
|
4963
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.ca_certificate_identifier #=> String
|
4964
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_subnet_group_name #=> String
|
4965
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable #=> Array
|
4966
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable[0] #=> String
|
4967
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable #=> Array
|
4968
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable[0] #=> String
|
4969
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features #=> Array
|
4970
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].name #=> String
|
4971
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].value #=> String
|
4972
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.latest_restorable_time #=> String
|
4973
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.auto_minor_version_upgrade #=> Boolean
|
4974
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_source_db_instance_identifier #=> String
|
4975
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers #=> Array
|
4976
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers[0] #=> String
|
4977
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers #=> Array
|
4978
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
4979
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.license_model #=> String
|
4980
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.iops #=> Integer
|
4981
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships #=> Array
|
4982
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].option_group_name #=> String
|
4983
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].status #=> String
|
4984
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.character_set_name #=> String
|
4985
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.secondary_availability_zone #=> String
|
4986
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos #=> Array
|
4987
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status_type #=> String
|
4988
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].normal #=> Boolean
|
4989
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status #=> String
|
4990
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].message #=> String
|
4991
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.storage_type #=> String
|
4992
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships #=> Array
|
4993
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].domain #=> String
|
4994
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].status #=> String
|
4995
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].fqdn #=> String
|
4996
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].iam_role_name #=> String
|
4997
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.copy_tags_to_snapshot #=> Boolean
|
4998
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_interval #=> Integer
|
4999
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_role_arn #=> String
|
5000
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.promotion_tier #=> Integer
|
5001
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.timezone #=> String
|
5002
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_enabled #=> Boolean
|
5003
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_kms_key_id #=> String
|
5004
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_retention_period #=> Integer
|
5005
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports #=> Array
|
5006
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports[0] #=> String
|
5007
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features #=> Array
|
5008
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].name #=> String
|
5009
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].value #=> String
|
5010
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.address #=> String
|
5011
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.port #=> Integer
|
5012
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.hosted_zone_id #=> String
|
5013
|
+
# resp.findings[0].resources[0].details.aws_rds_db_instance.max_allocated_storage #=> Integer
|
3549
5014
|
# resp.findings[0].resources[0].details.aws_sns_topic.kms_master_key_id #=> String
|
3550
5015
|
# resp.findings[0].resources[0].details.aws_sns_topic.subscription #=> Array
|
3551
5016
|
# resp.findings[0].resources[0].details.aws_sns_topic.subscription[0].endpoint #=> String
|
@@ -3567,6 +5032,109 @@ module Aws::SecurityHub
|
|
3567
5032
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].rule_id #=> String
|
3568
5033
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].type #=> String
|
3569
5034
|
# resp.findings[0].resources[0].details.aws_waf_web_acl.web_acl_id #=> String
|
5035
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_snapshot_identifier #=> String
|
5036
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_instance_identifier #=> String
|
5037
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_create_time #=> String
|
5038
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine #=> String
|
5039
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.allocated_storage #=> Integer
|
5040
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.status #=> String
|
5041
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.port #=> Integer
|
5042
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.availability_zone #=> String
|
5043
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.vpc_id #=> String
|
5044
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.instance_create_time #=> String
|
5045
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.master_username #=> String
|
5046
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine_version #=> String
|
5047
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.license_model #=> String
|
5048
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_type #=> String
|
5049
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.iops #=> Integer
|
5050
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.option_group_name #=> String
|
5051
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.percent_progress #=> Integer
|
5052
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_region #=> String
|
5053
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_db_snapshot_identifier #=> String
|
5054
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.storage_type #=> String
|
5055
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.tde_credential_arn #=> String
|
5056
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.encrypted #=> Boolean
|
5057
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.kms_key_id #=> String
|
5058
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.timezone #=> String
|
5059
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.iam_database_authentication_enabled #=> Boolean
|
5060
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features #=> Array
|
5061
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].name #=> String
|
5062
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].value #=> String
|
5063
|
+
# resp.findings[0].resources[0].details.aws_rds_db_snapshot.dbi_resource_id #=> String
|
5064
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones #=> Array
|
5065
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones[0] #=> String
|
5066
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_create_time #=> String
|
5067
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine #=> String
|
5068
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.allocated_storage #=> Integer
|
5069
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.status #=> String
|
5070
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.port #=> Integer
|
5071
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.vpc_id #=> String
|
5072
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.cluster_create_time #=> String
|
5073
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.master_username #=> String
|
5074
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine_version #=> String
|
5075
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.license_model #=> String
|
5076
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_type #=> String
|
5077
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.percent_progress #=> Integer
|
5078
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.storage_encrypted #=> Boolean
|
5079
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.kms_key_id #=> String
|
5080
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_identifier #=> String
|
5081
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_snapshot_identifier #=> String
|
5082
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
5083
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.allocated_storage #=> Integer
|
5084
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones #=> Array
|
5085
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones[0] #=> String
|
5086
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.backup_retention_period #=> Integer
|
5087
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.database_name #=> String
|
5088
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.status #=> String
|
5089
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.endpoint #=> String
|
5090
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.reader_endpoint #=> String
|
5091
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints #=> Array
|
5092
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints[0] #=> String
|
5093
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.multi_az #=> Boolean
|
5094
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine #=> String
|
5095
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_version #=> String
|
5096
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.port #=> Integer
|
5097
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.master_username #=> String
|
5098
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_backup_window #=> String
|
5099
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_maintenance_window #=> String
|
5100
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers #=> Array
|
5101
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers[0] #=> String
|
5102
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups #=> Array
|
5103
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].vpc_security_group_id #=> String
|
5104
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].status #=> String
|
5105
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.hosted_zone_id #=> String
|
5106
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.storage_encrypted #=> Boolean
|
5107
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.kms_key_id #=> String
|
5108
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_resource_id #=> String
|
5109
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles #=> Array
|
5110
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].role_arn #=> String
|
5111
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].status #=> String
|
5112
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.cluster_create_time #=> String
|
5113
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports #=> Array
|
5114
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports[0] #=> String
|
5115
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_mode #=> String
|
5116
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.deletion_protection #=> Boolean
|
5117
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.http_endpoint_enabled #=> Boolean
|
5118
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.activity_stream_status #=> String
|
5119
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.copy_tags_to_snapshot #=> Boolean
|
5120
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.cross_account_clone #=> Boolean
|
5121
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships #=> Array
|
5122
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].domain #=> String
|
5123
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].status #=> String
|
5124
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].fqdn #=> String
|
5125
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].iam_role_name #=> String
|
5126
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_parameter_group #=> String
|
5127
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_subnet_group #=> String
|
5128
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships #=> Array
|
5129
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].db_cluster_option_group_name #=> String
|
5130
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
5131
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_identifier #=> String
|
5132
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members #=> Array
|
5133
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
|
5134
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].promotion_tier #=> Integer
|
5135
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_instance_identifier #=> String
|
5136
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_cluster_parameter_group_status #=> String
|
5137
|
+
# resp.findings[0].resources[0].details.aws_rds_db_cluster.iam_database_authentication_enabled #=> Boolean
|
3570
5138
|
# resp.findings[0].resources[0].details.container.name #=> String
|
3571
5139
|
# resp.findings[0].resources[0].details.container.image_id #=> String
|
3572
5140
|
# resp.findings[0].resources[0].details.container.image_name #=> String
|
@@ -3610,6 +5178,17 @@ module Aws::SecurityHub
|
|
3610
5178
|
# resp.findings[0].vulnerabilities[0].vendor.vendor_updated_at #=> String
|
3611
5179
|
# resp.findings[0].vulnerabilities[0].reference_urls #=> Array
|
3612
5180
|
# resp.findings[0].vulnerabilities[0].reference_urls[0] #=> String
|
5181
|
+
# resp.findings[0].patch_summary.id #=> String
|
5182
|
+
# resp.findings[0].patch_summary.installed_count #=> Integer
|
5183
|
+
# resp.findings[0].patch_summary.missing_count #=> Integer
|
5184
|
+
# resp.findings[0].patch_summary.failed_count #=> Integer
|
5185
|
+
# resp.findings[0].patch_summary.installed_other_count #=> Integer
|
5186
|
+
# resp.findings[0].patch_summary.installed_rejected_count #=> Integer
|
5187
|
+
# resp.findings[0].patch_summary.installed_pending_reboot #=> Integer
|
5188
|
+
# resp.findings[0].patch_summary.operation_start_time #=> String
|
5189
|
+
# resp.findings[0].patch_summary.operation_end_time #=> String
|
5190
|
+
# resp.findings[0].patch_summary.reboot_option #=> String
|
5191
|
+
# resp.findings[0].patch_summary.operation #=> String
|
3613
5192
|
# resp.next_token #=> String
|
3614
5193
|
#
|
3615
5194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation
|
@@ -3694,19 +5273,19 @@ module Aws::SecurityHub
|
|
3694
5273
|
# resp.insights[0].name #=> String
|
3695
5274
|
# resp.insights[0].filters.product_arn #=> Array
|
3696
5275
|
# resp.insights[0].filters.product_arn[0].value #=> String
|
3697
|
-
# resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5276
|
+
# resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3698
5277
|
# resp.insights[0].filters.aws_account_id #=> Array
|
3699
5278
|
# resp.insights[0].filters.aws_account_id[0].value #=> String
|
3700
|
-
# resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5279
|
+
# resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3701
5280
|
# resp.insights[0].filters.id #=> Array
|
3702
5281
|
# resp.insights[0].filters.id[0].value #=> String
|
3703
|
-
# resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5282
|
+
# resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3704
5283
|
# resp.insights[0].filters.generator_id #=> Array
|
3705
5284
|
# resp.insights[0].filters.generator_id[0].value #=> String
|
3706
|
-
# resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5285
|
+
# resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3707
5286
|
# resp.insights[0].filters.type #=> Array
|
3708
5287
|
# resp.insights[0].filters.type[0].value #=> String
|
3709
|
-
# resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5288
|
+
# resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3710
5289
|
# resp.insights[0].filters.first_observed_at #=> Array
|
3711
5290
|
# resp.insights[0].filters.first_observed_at[0].start #=> String
|
3712
5291
|
# resp.insights[0].filters.first_observed_at[0].end #=> String
|
@@ -3737,7 +5316,7 @@ module Aws::SecurityHub
|
|
3737
5316
|
# resp.insights[0].filters.severity_normalized[0].eq #=> Float
|
3738
5317
|
# resp.insights[0].filters.severity_label #=> Array
|
3739
5318
|
# resp.insights[0].filters.severity_label[0].value #=> String
|
3740
|
-
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5319
|
+
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3741
5320
|
# resp.insights[0].filters.confidence #=> Array
|
3742
5321
|
# resp.insights[0].filters.confidence[0].gte #=> Float
|
3743
5322
|
# resp.insights[0].filters.confidence[0].lte #=> Float
|
@@ -3748,48 +5327,48 @@ module Aws::SecurityHub
|
|
3748
5327
|
# resp.insights[0].filters.criticality[0].eq #=> Float
|
3749
5328
|
# resp.insights[0].filters.title #=> Array
|
3750
5329
|
# resp.insights[0].filters.title[0].value #=> String
|
3751
|
-
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5330
|
+
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3752
5331
|
# resp.insights[0].filters.description #=> Array
|
3753
5332
|
# resp.insights[0].filters.description[0].value #=> String
|
3754
|
-
# resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5333
|
+
# resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3755
5334
|
# resp.insights[0].filters.recommendation_text #=> Array
|
3756
5335
|
# resp.insights[0].filters.recommendation_text[0].value #=> String
|
3757
|
-
# resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5336
|
+
# resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3758
5337
|
# resp.insights[0].filters.source_url #=> Array
|
3759
5338
|
# resp.insights[0].filters.source_url[0].value #=> String
|
3760
|
-
# resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5339
|
+
# resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3761
5340
|
# resp.insights[0].filters.product_fields #=> Array
|
3762
5341
|
# resp.insights[0].filters.product_fields[0].key #=> String
|
3763
5342
|
# resp.insights[0].filters.product_fields[0].value #=> String
|
3764
|
-
# resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS"
|
5343
|
+
# resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3765
5344
|
# resp.insights[0].filters.product_name #=> Array
|
3766
5345
|
# resp.insights[0].filters.product_name[0].value #=> String
|
3767
|
-
# resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5346
|
+
# resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3768
5347
|
# resp.insights[0].filters.company_name #=> Array
|
3769
5348
|
# resp.insights[0].filters.company_name[0].value #=> String
|
3770
|
-
# resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5349
|
+
# resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3771
5350
|
# resp.insights[0].filters.user_defined_fields #=> Array
|
3772
5351
|
# resp.insights[0].filters.user_defined_fields[0].key #=> String
|
3773
5352
|
# resp.insights[0].filters.user_defined_fields[0].value #=> String
|
3774
|
-
# resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS"
|
5353
|
+
# resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3775
5354
|
# resp.insights[0].filters.malware_name #=> Array
|
3776
5355
|
# resp.insights[0].filters.malware_name[0].value #=> String
|
3777
|
-
# resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5356
|
+
# resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3778
5357
|
# resp.insights[0].filters.malware_type #=> Array
|
3779
5358
|
# resp.insights[0].filters.malware_type[0].value #=> String
|
3780
|
-
# resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5359
|
+
# resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3781
5360
|
# resp.insights[0].filters.malware_path #=> Array
|
3782
5361
|
# resp.insights[0].filters.malware_path[0].value #=> String
|
3783
|
-
# resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5362
|
+
# resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3784
5363
|
# resp.insights[0].filters.malware_state #=> Array
|
3785
5364
|
# resp.insights[0].filters.malware_state[0].value #=> String
|
3786
|
-
# resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5365
|
+
# resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3787
5366
|
# resp.insights[0].filters.network_direction #=> Array
|
3788
5367
|
# resp.insights[0].filters.network_direction[0].value #=> String
|
3789
|
-
# resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5368
|
+
# resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3790
5369
|
# resp.insights[0].filters.network_protocol #=> Array
|
3791
5370
|
# resp.insights[0].filters.network_protocol[0].value #=> String
|
3792
|
-
# resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5371
|
+
# resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3793
5372
|
# resp.insights[0].filters.network_source_ip_v4 #=> Array
|
3794
5373
|
# resp.insights[0].filters.network_source_ip_v4[0].cidr #=> String
|
3795
5374
|
# resp.insights[0].filters.network_source_ip_v6 #=> Array
|
@@ -3800,10 +5379,10 @@ module Aws::SecurityHub
|
|
3800
5379
|
# resp.insights[0].filters.network_source_port[0].eq #=> Float
|
3801
5380
|
# resp.insights[0].filters.network_source_domain #=> Array
|
3802
5381
|
# resp.insights[0].filters.network_source_domain[0].value #=> String
|
3803
|
-
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5382
|
+
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3804
5383
|
# resp.insights[0].filters.network_source_mac #=> Array
|
3805
5384
|
# resp.insights[0].filters.network_source_mac[0].value #=> String
|
3806
|
-
# resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5385
|
+
# resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3807
5386
|
# resp.insights[0].filters.network_destination_ip_v4 #=> Array
|
3808
5387
|
# resp.insights[0].filters.network_destination_ip_v4[0].cidr #=> String
|
3809
5388
|
# resp.insights[0].filters.network_destination_ip_v6 #=> Array
|
@@ -3814,13 +5393,13 @@ module Aws::SecurityHub
|
|
3814
5393
|
# resp.insights[0].filters.network_destination_port[0].eq #=> Float
|
3815
5394
|
# resp.insights[0].filters.network_destination_domain #=> Array
|
3816
5395
|
# resp.insights[0].filters.network_destination_domain[0].value #=> String
|
3817
|
-
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5396
|
+
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3818
5397
|
# resp.insights[0].filters.process_name #=> Array
|
3819
5398
|
# resp.insights[0].filters.process_name[0].value #=> String
|
3820
|
-
# resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5399
|
+
# resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3821
5400
|
# resp.insights[0].filters.process_path #=> Array
|
3822
5401
|
# resp.insights[0].filters.process_path[0].value #=> String
|
3823
|
-
# resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5402
|
+
# resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3824
5403
|
# resp.insights[0].filters.process_pid #=> Array
|
3825
5404
|
# resp.insights[0].filters.process_pid[0].gte #=> Float
|
3826
5405
|
# resp.insights[0].filters.process_pid[0].lte #=> Float
|
@@ -3841,13 +5420,13 @@ module Aws::SecurityHub
|
|
3841
5420
|
# resp.insights[0].filters.process_terminated_at[0].date_range.unit #=> String, one of "DAYS"
|
3842
5421
|
# resp.insights[0].filters.threat_intel_indicator_type #=> Array
|
3843
5422
|
# resp.insights[0].filters.threat_intel_indicator_type[0].value #=> String
|
3844
|
-
# resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5423
|
+
# resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3845
5424
|
# resp.insights[0].filters.threat_intel_indicator_value #=> Array
|
3846
5425
|
# resp.insights[0].filters.threat_intel_indicator_value[0].value #=> String
|
3847
|
-
# resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5426
|
+
# resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3848
5427
|
# resp.insights[0].filters.threat_intel_indicator_category #=> Array
|
3849
5428
|
# resp.insights[0].filters.threat_intel_indicator_category[0].value #=> String
|
3850
|
-
# resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5429
|
+
# resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3851
5430
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at #=> Array
|
3852
5431
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].start #=> String
|
3853
5432
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].end #=> String
|
@@ -3855,48 +5434,48 @@ module Aws::SecurityHub
|
|
3855
5434
|
# resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].date_range.unit #=> String, one of "DAYS"
|
3856
5435
|
# resp.insights[0].filters.threat_intel_indicator_source #=> Array
|
3857
5436
|
# resp.insights[0].filters.threat_intel_indicator_source[0].value #=> String
|
3858
|
-
# resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5437
|
+
# resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3859
5438
|
# resp.insights[0].filters.threat_intel_indicator_source_url #=> Array
|
3860
5439
|
# resp.insights[0].filters.threat_intel_indicator_source_url[0].value #=> String
|
3861
|
-
# resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5440
|
+
# resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3862
5441
|
# resp.insights[0].filters.resource_type #=> Array
|
3863
5442
|
# resp.insights[0].filters.resource_type[0].value #=> String
|
3864
|
-
# resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5443
|
+
# resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3865
5444
|
# resp.insights[0].filters.resource_id #=> Array
|
3866
5445
|
# resp.insights[0].filters.resource_id[0].value #=> String
|
3867
|
-
# resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5446
|
+
# resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3868
5447
|
# resp.insights[0].filters.resource_partition #=> Array
|
3869
5448
|
# resp.insights[0].filters.resource_partition[0].value #=> String
|
3870
|
-
# resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5449
|
+
# resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3871
5450
|
# resp.insights[0].filters.resource_region #=> Array
|
3872
5451
|
# resp.insights[0].filters.resource_region[0].value #=> String
|
3873
|
-
# resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5452
|
+
# resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3874
5453
|
# resp.insights[0].filters.resource_tags #=> Array
|
3875
5454
|
# resp.insights[0].filters.resource_tags[0].key #=> String
|
3876
5455
|
# resp.insights[0].filters.resource_tags[0].value #=> String
|
3877
|
-
# resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS"
|
5456
|
+
# resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3878
5457
|
# resp.insights[0].filters.resource_aws_ec2_instance_type #=> Array
|
3879
5458
|
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].value #=> String
|
3880
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5459
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3881
5460
|
# resp.insights[0].filters.resource_aws_ec2_instance_image_id #=> Array
|
3882
5461
|
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].value #=> String
|
3883
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5462
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3884
5463
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses #=> Array
|
3885
5464
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses[0].cidr #=> String
|
3886
5465
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses #=> Array
|
3887
5466
|
# resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses[0].cidr #=> String
|
3888
5467
|
# resp.insights[0].filters.resource_aws_ec2_instance_key_name #=> Array
|
3889
5468
|
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].value #=> String
|
3890
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5469
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3891
5470
|
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn #=> Array
|
3892
5471
|
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].value #=> String
|
3893
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5472
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3894
5473
|
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id #=> Array
|
3895
5474
|
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].value #=> String
|
3896
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5475
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3897
5476
|
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id #=> Array
|
3898
5477
|
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].value #=> String
|
3899
|
-
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5478
|
+
# resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3900
5479
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at #=> Array
|
3901
5480
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].start #=> String
|
3902
5481
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].end #=> String
|
@@ -3904,16 +5483,16 @@ module Aws::SecurityHub
|
|
3904
5483
|
# resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].date_range.unit #=> String, one of "DAYS"
|
3905
5484
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id #=> Array
|
3906
5485
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].value #=> String
|
3907
|
-
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5486
|
+
# resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3908
5487
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name #=> Array
|
3909
5488
|
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].value #=> String
|
3910
|
-
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5489
|
+
# resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3911
5490
|
# resp.insights[0].filters.resource_aws_iam_access_key_user_name #=> Array
|
3912
5491
|
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].value #=> String
|
3913
|
-
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5492
|
+
# resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3914
5493
|
# resp.insights[0].filters.resource_aws_iam_access_key_status #=> Array
|
3915
5494
|
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].value #=> String
|
3916
|
-
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5495
|
+
# resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3917
5496
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at #=> Array
|
3918
5497
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].start #=> String
|
3919
5498
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].end #=> String
|
@@ -3921,13 +5500,13 @@ module Aws::SecurityHub
|
|
3921
5500
|
# resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].date_range.unit #=> String, one of "DAYS"
|
3922
5501
|
# resp.insights[0].filters.resource_container_name #=> Array
|
3923
5502
|
# resp.insights[0].filters.resource_container_name[0].value #=> String
|
3924
|
-
# resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5503
|
+
# resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3925
5504
|
# resp.insights[0].filters.resource_container_image_id #=> Array
|
3926
5505
|
# resp.insights[0].filters.resource_container_image_id[0].value #=> String
|
3927
|
-
# resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5506
|
+
# resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3928
5507
|
# resp.insights[0].filters.resource_container_image_name #=> Array
|
3929
5508
|
# resp.insights[0].filters.resource_container_image_name[0].value #=> String
|
3930
|
-
# resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5509
|
+
# resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3931
5510
|
# resp.insights[0].filters.resource_container_launched_at #=> Array
|
3932
5511
|
# resp.insights[0].filters.resource_container_launched_at[0].start #=> String
|
3933
5512
|
# resp.insights[0].filters.resource_container_launched_at[0].end #=> String
|
@@ -3936,31 +5515,31 @@ module Aws::SecurityHub
|
|
3936
5515
|
# resp.insights[0].filters.resource_details_other #=> Array
|
3937
5516
|
# resp.insights[0].filters.resource_details_other[0].key #=> String
|
3938
5517
|
# resp.insights[0].filters.resource_details_other[0].value #=> String
|
3939
|
-
# resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS"
|
5518
|
+
# resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
|
3940
5519
|
# resp.insights[0].filters.compliance_status #=> Array
|
3941
5520
|
# resp.insights[0].filters.compliance_status[0].value #=> String
|
3942
|
-
# resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5521
|
+
# resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3943
5522
|
# resp.insights[0].filters.verification_state #=> Array
|
3944
5523
|
# resp.insights[0].filters.verification_state[0].value #=> String
|
3945
|
-
# resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5524
|
+
# resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3946
5525
|
# resp.insights[0].filters.workflow_state #=> Array
|
3947
5526
|
# resp.insights[0].filters.workflow_state[0].value #=> String
|
3948
|
-
# resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5527
|
+
# resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3949
5528
|
# resp.insights[0].filters.workflow_status #=> Array
|
3950
5529
|
# resp.insights[0].filters.workflow_status[0].value #=> String
|
3951
|
-
# resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5530
|
+
# resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3952
5531
|
# resp.insights[0].filters.record_state #=> Array
|
3953
5532
|
# resp.insights[0].filters.record_state[0].value #=> String
|
3954
|
-
# resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5533
|
+
# resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3955
5534
|
# resp.insights[0].filters.related_findings_product_arn #=> Array
|
3956
5535
|
# resp.insights[0].filters.related_findings_product_arn[0].value #=> String
|
3957
|
-
# resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5536
|
+
# resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3958
5537
|
# resp.insights[0].filters.related_findings_id #=> Array
|
3959
5538
|
# resp.insights[0].filters.related_findings_id[0].value #=> String
|
3960
|
-
# resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5539
|
+
# resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3961
5540
|
# resp.insights[0].filters.note_text #=> Array
|
3962
5541
|
# resp.insights[0].filters.note_text[0].value #=> String
|
3963
|
-
# resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5542
|
+
# resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3964
5543
|
# resp.insights[0].filters.note_updated_at #=> Array
|
3965
5544
|
# resp.insights[0].filters.note_updated_at[0].start #=> String
|
3966
5545
|
# resp.insights[0].filters.note_updated_at[0].end #=> String
|
@@ -3968,7 +5547,7 @@ module Aws::SecurityHub
|
|
3968
5547
|
# resp.insights[0].filters.note_updated_at[0].date_range.unit #=> String, one of "DAYS"
|
3969
5548
|
# resp.insights[0].filters.note_updated_by #=> Array
|
3970
5549
|
# resp.insights[0].filters.note_updated_by[0].value #=> String
|
3971
|
-
# resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX"
|
5550
|
+
# resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
3972
5551
|
# resp.insights[0].filters.keyword #=> Array
|
3973
5552
|
# resp.insights[0].filters.keyword[0].value #=> String
|
3974
5553
|
# resp.insights[0].group_by_attribute #=> String
|
@@ -4399,31 +5978,31 @@ module Aws::SecurityHub
|
|
4399
5978
|
# product_arn: [
|
4400
5979
|
# {
|
4401
5980
|
# value: "NonEmptyString",
|
4402
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5981
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4403
5982
|
# },
|
4404
5983
|
# ],
|
4405
5984
|
# aws_account_id: [
|
4406
5985
|
# {
|
4407
5986
|
# value: "NonEmptyString",
|
4408
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5987
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4409
5988
|
# },
|
4410
5989
|
# ],
|
4411
5990
|
# id: [
|
4412
5991
|
# {
|
4413
5992
|
# value: "NonEmptyString",
|
4414
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5993
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4415
5994
|
# },
|
4416
5995
|
# ],
|
4417
5996
|
# generator_id: [
|
4418
5997
|
# {
|
4419
5998
|
# value: "NonEmptyString",
|
4420
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
5999
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4421
6000
|
# },
|
4422
6001
|
# ],
|
4423
6002
|
# type: [
|
4424
6003
|
# {
|
4425
6004
|
# value: "NonEmptyString",
|
4426
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6005
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4427
6006
|
# },
|
4428
6007
|
# ],
|
4429
6008
|
# first_observed_at: [
|
@@ -4483,7 +6062,7 @@ module Aws::SecurityHub
|
|
4483
6062
|
# severity_label: [
|
4484
6063
|
# {
|
4485
6064
|
# value: "NonEmptyString",
|
4486
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6065
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4487
6066
|
# },
|
4488
6067
|
# ],
|
4489
6068
|
# confidence: [
|
@@ -4503,87 +6082,87 @@ module Aws::SecurityHub
|
|
4503
6082
|
# title: [
|
4504
6083
|
# {
|
4505
6084
|
# value: "NonEmptyString",
|
4506
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6085
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4507
6086
|
# },
|
4508
6087
|
# ],
|
4509
6088
|
# description: [
|
4510
6089
|
# {
|
4511
6090
|
# value: "NonEmptyString",
|
4512
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6091
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4513
6092
|
# },
|
4514
6093
|
# ],
|
4515
6094
|
# recommendation_text: [
|
4516
6095
|
# {
|
4517
6096
|
# value: "NonEmptyString",
|
4518
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6097
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4519
6098
|
# },
|
4520
6099
|
# ],
|
4521
6100
|
# source_url: [
|
4522
6101
|
# {
|
4523
6102
|
# value: "NonEmptyString",
|
4524
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6103
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4525
6104
|
# },
|
4526
6105
|
# ],
|
4527
6106
|
# product_fields: [
|
4528
6107
|
# {
|
4529
6108
|
# key: "NonEmptyString",
|
4530
6109
|
# value: "NonEmptyString",
|
4531
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6110
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4532
6111
|
# },
|
4533
6112
|
# ],
|
4534
6113
|
# product_name: [
|
4535
6114
|
# {
|
4536
6115
|
# value: "NonEmptyString",
|
4537
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6116
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4538
6117
|
# },
|
4539
6118
|
# ],
|
4540
6119
|
# company_name: [
|
4541
6120
|
# {
|
4542
6121
|
# value: "NonEmptyString",
|
4543
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6122
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4544
6123
|
# },
|
4545
6124
|
# ],
|
4546
6125
|
# user_defined_fields: [
|
4547
6126
|
# {
|
4548
6127
|
# key: "NonEmptyString",
|
4549
6128
|
# value: "NonEmptyString",
|
4550
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6129
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4551
6130
|
# },
|
4552
6131
|
# ],
|
4553
6132
|
# malware_name: [
|
4554
6133
|
# {
|
4555
6134
|
# value: "NonEmptyString",
|
4556
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6135
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4557
6136
|
# },
|
4558
6137
|
# ],
|
4559
6138
|
# malware_type: [
|
4560
6139
|
# {
|
4561
6140
|
# value: "NonEmptyString",
|
4562
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6141
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4563
6142
|
# },
|
4564
6143
|
# ],
|
4565
6144
|
# malware_path: [
|
4566
6145
|
# {
|
4567
6146
|
# value: "NonEmptyString",
|
4568
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6147
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4569
6148
|
# },
|
4570
6149
|
# ],
|
4571
6150
|
# malware_state: [
|
4572
6151
|
# {
|
4573
6152
|
# value: "NonEmptyString",
|
4574
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6153
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4575
6154
|
# },
|
4576
6155
|
# ],
|
4577
6156
|
# network_direction: [
|
4578
6157
|
# {
|
4579
6158
|
# value: "NonEmptyString",
|
4580
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6159
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4581
6160
|
# },
|
4582
6161
|
# ],
|
4583
6162
|
# network_protocol: [
|
4584
6163
|
# {
|
4585
6164
|
# value: "NonEmptyString",
|
4586
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6165
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4587
6166
|
# },
|
4588
6167
|
# ],
|
4589
6168
|
# network_source_ip_v4: [
|
@@ -4606,13 +6185,13 @@ module Aws::SecurityHub
|
|
4606
6185
|
# network_source_domain: [
|
4607
6186
|
# {
|
4608
6187
|
# value: "NonEmptyString",
|
4609
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6188
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4610
6189
|
# },
|
4611
6190
|
# ],
|
4612
6191
|
# network_source_mac: [
|
4613
6192
|
# {
|
4614
6193
|
# value: "NonEmptyString",
|
4615
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6194
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4616
6195
|
# },
|
4617
6196
|
# ],
|
4618
6197
|
# network_destination_ip_v4: [
|
@@ -4635,19 +6214,19 @@ module Aws::SecurityHub
|
|
4635
6214
|
# network_destination_domain: [
|
4636
6215
|
# {
|
4637
6216
|
# value: "NonEmptyString",
|
4638
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6217
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4639
6218
|
# },
|
4640
6219
|
# ],
|
4641
6220
|
# process_name: [
|
4642
6221
|
# {
|
4643
6222
|
# value: "NonEmptyString",
|
4644
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6223
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4645
6224
|
# },
|
4646
6225
|
# ],
|
4647
6226
|
# process_path: [
|
4648
6227
|
# {
|
4649
6228
|
# value: "NonEmptyString",
|
4650
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6229
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4651
6230
|
# },
|
4652
6231
|
# ],
|
4653
6232
|
# process_pid: [
|
@@ -4687,19 +6266,19 @@ module Aws::SecurityHub
|
|
4687
6266
|
# threat_intel_indicator_type: [
|
4688
6267
|
# {
|
4689
6268
|
# value: "NonEmptyString",
|
4690
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6269
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4691
6270
|
# },
|
4692
6271
|
# ],
|
4693
6272
|
# threat_intel_indicator_value: [
|
4694
6273
|
# {
|
4695
6274
|
# value: "NonEmptyString",
|
4696
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6275
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4697
6276
|
# },
|
4698
6277
|
# ],
|
4699
6278
|
# threat_intel_indicator_category: [
|
4700
6279
|
# {
|
4701
6280
|
# value: "NonEmptyString",
|
4702
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6281
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4703
6282
|
# },
|
4704
6283
|
# ],
|
4705
6284
|
# threat_intel_indicator_last_observed_at: [
|
@@ -4715,56 +6294,56 @@ module Aws::SecurityHub
|
|
4715
6294
|
# threat_intel_indicator_source: [
|
4716
6295
|
# {
|
4717
6296
|
# value: "NonEmptyString",
|
4718
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6297
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4719
6298
|
# },
|
4720
6299
|
# ],
|
4721
6300
|
# threat_intel_indicator_source_url: [
|
4722
6301
|
# {
|
4723
6302
|
# value: "NonEmptyString",
|
4724
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6303
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4725
6304
|
# },
|
4726
6305
|
# ],
|
4727
6306
|
# resource_type: [
|
4728
6307
|
# {
|
4729
6308
|
# value: "NonEmptyString",
|
4730
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6309
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4731
6310
|
# },
|
4732
6311
|
# ],
|
4733
6312
|
# resource_id: [
|
4734
6313
|
# {
|
4735
6314
|
# value: "NonEmptyString",
|
4736
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6315
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4737
6316
|
# },
|
4738
6317
|
# ],
|
4739
6318
|
# resource_partition: [
|
4740
6319
|
# {
|
4741
6320
|
# value: "NonEmptyString",
|
4742
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6321
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4743
6322
|
# },
|
4744
6323
|
# ],
|
4745
6324
|
# resource_region: [
|
4746
6325
|
# {
|
4747
6326
|
# value: "NonEmptyString",
|
4748
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6327
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4749
6328
|
# },
|
4750
6329
|
# ],
|
4751
6330
|
# resource_tags: [
|
4752
6331
|
# {
|
4753
6332
|
# key: "NonEmptyString",
|
4754
6333
|
# value: "NonEmptyString",
|
4755
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6334
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4756
6335
|
# },
|
4757
6336
|
# ],
|
4758
6337
|
# resource_aws_ec2_instance_type: [
|
4759
6338
|
# {
|
4760
6339
|
# value: "NonEmptyString",
|
4761
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6340
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4762
6341
|
# },
|
4763
6342
|
# ],
|
4764
6343
|
# resource_aws_ec2_instance_image_id: [
|
4765
6344
|
# {
|
4766
6345
|
# value: "NonEmptyString",
|
4767
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6346
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4768
6347
|
# },
|
4769
6348
|
# ],
|
4770
6349
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -4780,25 +6359,25 @@ module Aws::SecurityHub
|
|
4780
6359
|
# resource_aws_ec2_instance_key_name: [
|
4781
6360
|
# {
|
4782
6361
|
# value: "NonEmptyString",
|
4783
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6362
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4784
6363
|
# },
|
4785
6364
|
# ],
|
4786
6365
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
4787
6366
|
# {
|
4788
6367
|
# value: "NonEmptyString",
|
4789
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6368
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4790
6369
|
# },
|
4791
6370
|
# ],
|
4792
6371
|
# resource_aws_ec2_instance_vpc_id: [
|
4793
6372
|
# {
|
4794
6373
|
# value: "NonEmptyString",
|
4795
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6374
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4796
6375
|
# },
|
4797
6376
|
# ],
|
4798
6377
|
# resource_aws_ec2_instance_subnet_id: [
|
4799
6378
|
# {
|
4800
6379
|
# value: "NonEmptyString",
|
4801
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6380
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4802
6381
|
# },
|
4803
6382
|
# ],
|
4804
6383
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -4814,25 +6393,25 @@ module Aws::SecurityHub
|
|
4814
6393
|
# resource_aws_s3_bucket_owner_id: [
|
4815
6394
|
# {
|
4816
6395
|
# value: "NonEmptyString",
|
4817
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6396
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4818
6397
|
# },
|
4819
6398
|
# ],
|
4820
6399
|
# resource_aws_s3_bucket_owner_name: [
|
4821
6400
|
# {
|
4822
6401
|
# value: "NonEmptyString",
|
4823
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6402
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4824
6403
|
# },
|
4825
6404
|
# ],
|
4826
6405
|
# resource_aws_iam_access_key_user_name: [
|
4827
6406
|
# {
|
4828
6407
|
# value: "NonEmptyString",
|
4829
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6408
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4830
6409
|
# },
|
4831
6410
|
# ],
|
4832
6411
|
# resource_aws_iam_access_key_status: [
|
4833
6412
|
# {
|
4834
6413
|
# value: "NonEmptyString",
|
4835
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6414
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4836
6415
|
# },
|
4837
6416
|
# ],
|
4838
6417
|
# resource_aws_iam_access_key_created_at: [
|
@@ -4848,19 +6427,19 @@ module Aws::SecurityHub
|
|
4848
6427
|
# resource_container_name: [
|
4849
6428
|
# {
|
4850
6429
|
# value: "NonEmptyString",
|
4851
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6430
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4852
6431
|
# },
|
4853
6432
|
# ],
|
4854
6433
|
# resource_container_image_id: [
|
4855
6434
|
# {
|
4856
6435
|
# value: "NonEmptyString",
|
4857
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6436
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4858
6437
|
# },
|
4859
6438
|
# ],
|
4860
6439
|
# resource_container_image_name: [
|
4861
6440
|
# {
|
4862
6441
|
# value: "NonEmptyString",
|
4863
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6442
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4864
6443
|
# },
|
4865
6444
|
# ],
|
4866
6445
|
# resource_container_launched_at: [
|
@@ -4877,55 +6456,55 @@ module Aws::SecurityHub
|
|
4877
6456
|
# {
|
4878
6457
|
# key: "NonEmptyString",
|
4879
6458
|
# value: "NonEmptyString",
|
4880
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6459
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
4881
6460
|
# },
|
4882
6461
|
# ],
|
4883
6462
|
# compliance_status: [
|
4884
6463
|
# {
|
4885
6464
|
# value: "NonEmptyString",
|
4886
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6465
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4887
6466
|
# },
|
4888
6467
|
# ],
|
4889
6468
|
# verification_state: [
|
4890
6469
|
# {
|
4891
6470
|
# value: "NonEmptyString",
|
4892
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6471
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4893
6472
|
# },
|
4894
6473
|
# ],
|
4895
6474
|
# workflow_state: [
|
4896
6475
|
# {
|
4897
6476
|
# value: "NonEmptyString",
|
4898
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6477
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4899
6478
|
# },
|
4900
6479
|
# ],
|
4901
6480
|
# workflow_status: [
|
4902
6481
|
# {
|
4903
6482
|
# value: "NonEmptyString",
|
4904
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6483
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4905
6484
|
# },
|
4906
6485
|
# ],
|
4907
6486
|
# record_state: [
|
4908
6487
|
# {
|
4909
6488
|
# value: "NonEmptyString",
|
4910
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6489
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4911
6490
|
# },
|
4912
6491
|
# ],
|
4913
6492
|
# related_findings_product_arn: [
|
4914
6493
|
# {
|
4915
6494
|
# value: "NonEmptyString",
|
4916
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6495
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4917
6496
|
# },
|
4918
6497
|
# ],
|
4919
6498
|
# related_findings_id: [
|
4920
6499
|
# {
|
4921
6500
|
# value: "NonEmptyString",
|
4922
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6501
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4923
6502
|
# },
|
4924
6503
|
# ],
|
4925
6504
|
# note_text: [
|
4926
6505
|
# {
|
4927
6506
|
# value: "NonEmptyString",
|
4928
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6507
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4929
6508
|
# },
|
4930
6509
|
# ],
|
4931
6510
|
# note_updated_at: [
|
@@ -4941,7 +6520,7 @@ module Aws::SecurityHub
|
|
4941
6520
|
# note_updated_by: [
|
4942
6521
|
# {
|
4943
6522
|
# value: "NonEmptyString",
|
4944
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6523
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4945
6524
|
# },
|
4946
6525
|
# ],
|
4947
6526
|
# keyword: [
|
@@ -4992,31 +6571,31 @@ module Aws::SecurityHub
|
|
4992
6571
|
# product_arn: [
|
4993
6572
|
# {
|
4994
6573
|
# value: "NonEmptyString",
|
4995
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6574
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4996
6575
|
# },
|
4997
6576
|
# ],
|
4998
6577
|
# aws_account_id: [
|
4999
6578
|
# {
|
5000
6579
|
# value: "NonEmptyString",
|
5001
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6580
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5002
6581
|
# },
|
5003
6582
|
# ],
|
5004
6583
|
# id: [
|
5005
6584
|
# {
|
5006
6585
|
# value: "NonEmptyString",
|
5007
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6586
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5008
6587
|
# },
|
5009
6588
|
# ],
|
5010
6589
|
# generator_id: [
|
5011
6590
|
# {
|
5012
6591
|
# value: "NonEmptyString",
|
5013
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6592
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5014
6593
|
# },
|
5015
6594
|
# ],
|
5016
6595
|
# type: [
|
5017
6596
|
# {
|
5018
6597
|
# value: "NonEmptyString",
|
5019
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6598
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5020
6599
|
# },
|
5021
6600
|
# ],
|
5022
6601
|
# first_observed_at: [
|
@@ -5076,7 +6655,7 @@ module Aws::SecurityHub
|
|
5076
6655
|
# severity_label: [
|
5077
6656
|
# {
|
5078
6657
|
# value: "NonEmptyString",
|
5079
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6658
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5080
6659
|
# },
|
5081
6660
|
# ],
|
5082
6661
|
# confidence: [
|
@@ -5096,87 +6675,87 @@ module Aws::SecurityHub
|
|
5096
6675
|
# title: [
|
5097
6676
|
# {
|
5098
6677
|
# value: "NonEmptyString",
|
5099
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6678
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5100
6679
|
# },
|
5101
6680
|
# ],
|
5102
6681
|
# description: [
|
5103
6682
|
# {
|
5104
6683
|
# value: "NonEmptyString",
|
5105
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6684
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5106
6685
|
# },
|
5107
6686
|
# ],
|
5108
6687
|
# recommendation_text: [
|
5109
6688
|
# {
|
5110
6689
|
# value: "NonEmptyString",
|
5111
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6690
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5112
6691
|
# },
|
5113
6692
|
# ],
|
5114
6693
|
# source_url: [
|
5115
6694
|
# {
|
5116
6695
|
# value: "NonEmptyString",
|
5117
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6696
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5118
6697
|
# },
|
5119
6698
|
# ],
|
5120
6699
|
# product_fields: [
|
5121
6700
|
# {
|
5122
6701
|
# key: "NonEmptyString",
|
5123
6702
|
# value: "NonEmptyString",
|
5124
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6703
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5125
6704
|
# },
|
5126
6705
|
# ],
|
5127
6706
|
# product_name: [
|
5128
6707
|
# {
|
5129
6708
|
# value: "NonEmptyString",
|
5130
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6709
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5131
6710
|
# },
|
5132
6711
|
# ],
|
5133
6712
|
# company_name: [
|
5134
6713
|
# {
|
5135
6714
|
# value: "NonEmptyString",
|
5136
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6715
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5137
6716
|
# },
|
5138
6717
|
# ],
|
5139
6718
|
# user_defined_fields: [
|
5140
6719
|
# {
|
5141
6720
|
# key: "NonEmptyString",
|
5142
6721
|
# value: "NonEmptyString",
|
5143
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6722
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5144
6723
|
# },
|
5145
6724
|
# ],
|
5146
6725
|
# malware_name: [
|
5147
6726
|
# {
|
5148
6727
|
# value: "NonEmptyString",
|
5149
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6728
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5150
6729
|
# },
|
5151
6730
|
# ],
|
5152
6731
|
# malware_type: [
|
5153
6732
|
# {
|
5154
6733
|
# value: "NonEmptyString",
|
5155
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6734
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5156
6735
|
# },
|
5157
6736
|
# ],
|
5158
6737
|
# malware_path: [
|
5159
6738
|
# {
|
5160
6739
|
# value: "NonEmptyString",
|
5161
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6740
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5162
6741
|
# },
|
5163
6742
|
# ],
|
5164
6743
|
# malware_state: [
|
5165
6744
|
# {
|
5166
6745
|
# value: "NonEmptyString",
|
5167
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6746
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5168
6747
|
# },
|
5169
6748
|
# ],
|
5170
6749
|
# network_direction: [
|
5171
6750
|
# {
|
5172
6751
|
# value: "NonEmptyString",
|
5173
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6752
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5174
6753
|
# },
|
5175
6754
|
# ],
|
5176
6755
|
# network_protocol: [
|
5177
6756
|
# {
|
5178
6757
|
# value: "NonEmptyString",
|
5179
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6758
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5180
6759
|
# },
|
5181
6760
|
# ],
|
5182
6761
|
# network_source_ip_v4: [
|
@@ -5199,13 +6778,13 @@ module Aws::SecurityHub
|
|
5199
6778
|
# network_source_domain: [
|
5200
6779
|
# {
|
5201
6780
|
# value: "NonEmptyString",
|
5202
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6781
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5203
6782
|
# },
|
5204
6783
|
# ],
|
5205
6784
|
# network_source_mac: [
|
5206
6785
|
# {
|
5207
6786
|
# value: "NonEmptyString",
|
5208
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6787
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5209
6788
|
# },
|
5210
6789
|
# ],
|
5211
6790
|
# network_destination_ip_v4: [
|
@@ -5228,19 +6807,19 @@ module Aws::SecurityHub
|
|
5228
6807
|
# network_destination_domain: [
|
5229
6808
|
# {
|
5230
6809
|
# value: "NonEmptyString",
|
5231
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6810
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5232
6811
|
# },
|
5233
6812
|
# ],
|
5234
6813
|
# process_name: [
|
5235
6814
|
# {
|
5236
6815
|
# value: "NonEmptyString",
|
5237
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6816
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5238
6817
|
# },
|
5239
6818
|
# ],
|
5240
6819
|
# process_path: [
|
5241
6820
|
# {
|
5242
6821
|
# value: "NonEmptyString",
|
5243
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6822
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5244
6823
|
# },
|
5245
6824
|
# ],
|
5246
6825
|
# process_pid: [
|
@@ -5280,19 +6859,19 @@ module Aws::SecurityHub
|
|
5280
6859
|
# threat_intel_indicator_type: [
|
5281
6860
|
# {
|
5282
6861
|
# value: "NonEmptyString",
|
5283
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6862
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5284
6863
|
# },
|
5285
6864
|
# ],
|
5286
6865
|
# threat_intel_indicator_value: [
|
5287
6866
|
# {
|
5288
6867
|
# value: "NonEmptyString",
|
5289
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6868
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5290
6869
|
# },
|
5291
6870
|
# ],
|
5292
6871
|
# threat_intel_indicator_category: [
|
5293
6872
|
# {
|
5294
6873
|
# value: "NonEmptyString",
|
5295
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6874
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5296
6875
|
# },
|
5297
6876
|
# ],
|
5298
6877
|
# threat_intel_indicator_last_observed_at: [
|
@@ -5308,56 +6887,56 @@ module Aws::SecurityHub
|
|
5308
6887
|
# threat_intel_indicator_source: [
|
5309
6888
|
# {
|
5310
6889
|
# value: "NonEmptyString",
|
5311
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6890
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5312
6891
|
# },
|
5313
6892
|
# ],
|
5314
6893
|
# threat_intel_indicator_source_url: [
|
5315
6894
|
# {
|
5316
6895
|
# value: "NonEmptyString",
|
5317
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6896
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5318
6897
|
# },
|
5319
6898
|
# ],
|
5320
6899
|
# resource_type: [
|
5321
6900
|
# {
|
5322
6901
|
# value: "NonEmptyString",
|
5323
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6902
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5324
6903
|
# },
|
5325
6904
|
# ],
|
5326
6905
|
# resource_id: [
|
5327
6906
|
# {
|
5328
6907
|
# value: "NonEmptyString",
|
5329
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6908
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5330
6909
|
# },
|
5331
6910
|
# ],
|
5332
6911
|
# resource_partition: [
|
5333
6912
|
# {
|
5334
6913
|
# value: "NonEmptyString",
|
5335
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6914
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5336
6915
|
# },
|
5337
6916
|
# ],
|
5338
6917
|
# resource_region: [
|
5339
6918
|
# {
|
5340
6919
|
# value: "NonEmptyString",
|
5341
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6920
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5342
6921
|
# },
|
5343
6922
|
# ],
|
5344
6923
|
# resource_tags: [
|
5345
6924
|
# {
|
5346
6925
|
# key: "NonEmptyString",
|
5347
6926
|
# value: "NonEmptyString",
|
5348
|
-
# comparison: "EQUALS", # accepts EQUALS
|
6927
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5349
6928
|
# },
|
5350
6929
|
# ],
|
5351
6930
|
# resource_aws_ec2_instance_type: [
|
5352
6931
|
# {
|
5353
6932
|
# value: "NonEmptyString",
|
5354
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6933
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5355
6934
|
# },
|
5356
6935
|
# ],
|
5357
6936
|
# resource_aws_ec2_instance_image_id: [
|
5358
6937
|
# {
|
5359
6938
|
# value: "NonEmptyString",
|
5360
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6939
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5361
6940
|
# },
|
5362
6941
|
# ],
|
5363
6942
|
# resource_aws_ec2_instance_ip_v4_addresses: [
|
@@ -5373,25 +6952,25 @@ module Aws::SecurityHub
|
|
5373
6952
|
# resource_aws_ec2_instance_key_name: [
|
5374
6953
|
# {
|
5375
6954
|
# value: "NonEmptyString",
|
5376
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6955
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5377
6956
|
# },
|
5378
6957
|
# ],
|
5379
6958
|
# resource_aws_ec2_instance_iam_instance_profile_arn: [
|
5380
6959
|
# {
|
5381
6960
|
# value: "NonEmptyString",
|
5382
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6961
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5383
6962
|
# },
|
5384
6963
|
# ],
|
5385
6964
|
# resource_aws_ec2_instance_vpc_id: [
|
5386
6965
|
# {
|
5387
6966
|
# value: "NonEmptyString",
|
5388
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6967
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5389
6968
|
# },
|
5390
6969
|
# ],
|
5391
6970
|
# resource_aws_ec2_instance_subnet_id: [
|
5392
6971
|
# {
|
5393
6972
|
# value: "NonEmptyString",
|
5394
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6973
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5395
6974
|
# },
|
5396
6975
|
# ],
|
5397
6976
|
# resource_aws_ec2_instance_launched_at: [
|
@@ -5407,25 +6986,25 @@ module Aws::SecurityHub
|
|
5407
6986
|
# resource_aws_s3_bucket_owner_id: [
|
5408
6987
|
# {
|
5409
6988
|
# value: "NonEmptyString",
|
5410
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6989
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5411
6990
|
# },
|
5412
6991
|
# ],
|
5413
6992
|
# resource_aws_s3_bucket_owner_name: [
|
5414
6993
|
# {
|
5415
6994
|
# value: "NonEmptyString",
|
5416
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
6995
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5417
6996
|
# },
|
5418
6997
|
# ],
|
5419
6998
|
# resource_aws_iam_access_key_user_name: [
|
5420
6999
|
# {
|
5421
7000
|
# value: "NonEmptyString",
|
5422
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7001
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5423
7002
|
# },
|
5424
7003
|
# ],
|
5425
7004
|
# resource_aws_iam_access_key_status: [
|
5426
7005
|
# {
|
5427
7006
|
# value: "NonEmptyString",
|
5428
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7007
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5429
7008
|
# },
|
5430
7009
|
# ],
|
5431
7010
|
# resource_aws_iam_access_key_created_at: [
|
@@ -5441,19 +7020,19 @@ module Aws::SecurityHub
|
|
5441
7020
|
# resource_container_name: [
|
5442
7021
|
# {
|
5443
7022
|
# value: "NonEmptyString",
|
5444
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7023
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5445
7024
|
# },
|
5446
7025
|
# ],
|
5447
7026
|
# resource_container_image_id: [
|
5448
7027
|
# {
|
5449
7028
|
# value: "NonEmptyString",
|
5450
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7029
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5451
7030
|
# },
|
5452
7031
|
# ],
|
5453
7032
|
# resource_container_image_name: [
|
5454
7033
|
# {
|
5455
7034
|
# value: "NonEmptyString",
|
5456
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7035
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5457
7036
|
# },
|
5458
7037
|
# ],
|
5459
7038
|
# resource_container_launched_at: [
|
@@ -5470,55 +7049,55 @@ module Aws::SecurityHub
|
|
5470
7049
|
# {
|
5471
7050
|
# key: "NonEmptyString",
|
5472
7051
|
# value: "NonEmptyString",
|
5473
|
-
# comparison: "EQUALS", # accepts EQUALS
|
7052
|
+
# comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS
|
5474
7053
|
# },
|
5475
7054
|
# ],
|
5476
7055
|
# compliance_status: [
|
5477
7056
|
# {
|
5478
7057
|
# value: "NonEmptyString",
|
5479
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7058
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5480
7059
|
# },
|
5481
7060
|
# ],
|
5482
7061
|
# verification_state: [
|
5483
7062
|
# {
|
5484
7063
|
# value: "NonEmptyString",
|
5485
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7064
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5486
7065
|
# },
|
5487
7066
|
# ],
|
5488
7067
|
# workflow_state: [
|
5489
7068
|
# {
|
5490
7069
|
# value: "NonEmptyString",
|
5491
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7070
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5492
7071
|
# },
|
5493
7072
|
# ],
|
5494
7073
|
# workflow_status: [
|
5495
7074
|
# {
|
5496
7075
|
# value: "NonEmptyString",
|
5497
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7076
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5498
7077
|
# },
|
5499
7078
|
# ],
|
5500
7079
|
# record_state: [
|
5501
7080
|
# {
|
5502
7081
|
# value: "NonEmptyString",
|
5503
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7082
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5504
7083
|
# },
|
5505
7084
|
# ],
|
5506
7085
|
# related_findings_product_arn: [
|
5507
7086
|
# {
|
5508
7087
|
# value: "NonEmptyString",
|
5509
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7088
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5510
7089
|
# },
|
5511
7090
|
# ],
|
5512
7091
|
# related_findings_id: [
|
5513
7092
|
# {
|
5514
7093
|
# value: "NonEmptyString",
|
5515
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7094
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5516
7095
|
# },
|
5517
7096
|
# ],
|
5518
7097
|
# note_text: [
|
5519
7098
|
# {
|
5520
7099
|
# value: "NonEmptyString",
|
5521
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7100
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5522
7101
|
# },
|
5523
7102
|
# ],
|
5524
7103
|
# note_updated_at: [
|
@@ -5534,7 +7113,7 @@ module Aws::SecurityHub
|
|
5534
7113
|
# note_updated_by: [
|
5535
7114
|
# {
|
5536
7115
|
# value: "NonEmptyString",
|
5537
|
-
# comparison: "EQUALS", # accepts EQUALS, PREFIX
|
7116
|
+
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5538
7117
|
# },
|
5539
7118
|
# ],
|
5540
7119
|
# keyword: [
|
@@ -5627,7 +7206,7 @@ module Aws::SecurityHub
|
|
5627
7206
|
params: params,
|
5628
7207
|
config: config)
|
5629
7208
|
context[:gem_name] = 'aws-sdk-securityhub'
|
5630
|
-
context[:gem_version] = '1.
|
7209
|
+
context[:gem_version] = '1.35.0'
|
5631
7210
|
Seahorse::Client::Request.new(handlers, context)
|
5632
7211
|
end
|
5633
7212
|
|