aws-sdk-securityhub 1.55.0 → 1.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +325 -5
- data/lib/aws-sdk-securityhub/client_api.rb +284 -0
- data/lib/aws-sdk-securityhub/types.rb +2667 -9
- data/lib/aws-sdk-securityhub.rb +1 -1
- 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: c33eaffca4d10eadb01e5f41761ed424b9d98fe9535b96647ec649029f0ebfa9
|
4
|
+
data.tar.gz: cb2ac050284bd5609fd7366d44d5ae3650c9d825ae33bb0a21b5dfe100bd6ccb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f19863c63ac0ee75830e0be4a99407c7cde7405095038d430b562b438a6f16cf2cc1518e67f48cab5cdcda9c8370dbde537132115e8fd5c71a7de9a01b517467
|
7
|
+
data.tar.gz: c7821af70e5637d5b666f989170c43a7ed13c6e11ae4514915220758234a4ae0f7cc9cf794f3374b7d211f1dc9234bd833e126ae788d914a50a1831c6c1930a0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.59.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.58.0 (2021-12-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added new resource details objects to ASFF, including resources for Firewall, and RuleGroup, FirewallPolicy Added additional details for AutoScalingGroup, LaunchConfiguration, and S3 buckets.
|
13
|
+
|
14
|
+
1.57.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.56.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.55.0 (2021-10-20)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::SecurityHub
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::SecurityHub
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::SecurityHub
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -275,6 +283,15 @@ module Aws::SecurityHub
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
284
|
# requests are made, and retries are disabled.
|
277
285
|
#
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
288
|
+
# will be used if available.
|
289
|
+
#
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
293
|
+
# is set to `true`.
|
294
|
+
#
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
279
296
|
# When `true`, request parameters are validated before
|
280
297
|
# sending the request.
|
@@ -286,7 +303,7 @@ module Aws::SecurityHub
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
287
304
|
# `Timeout::Error`.
|
288
305
|
#
|
289
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
307
|
# number of seconds to wait for response data. This value can
|
291
308
|
# safely be set per-request on the session.
|
292
309
|
#
|
@@ -302,6 +319,9 @@ module Aws::SecurityHub
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
303
320
|
# request on the session.
|
304
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
307
327
|
#
|
@@ -441,6 +461,7 @@ module Aws::SecurityHub
|
|
441
461
|
# resp.standards_subscriptions[0].standards_input #=> Hash
|
442
462
|
# resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String
|
443
463
|
# resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE"
|
464
|
+
# resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR"
|
444
465
|
#
|
445
466
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchDisableStandards AWS API Documentation
|
446
467
|
#
|
@@ -489,6 +510,7 @@ module Aws::SecurityHub
|
|
489
510
|
# resp.standards_subscriptions[0].standards_input #=> Hash
|
490
511
|
# resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String
|
491
512
|
# resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE"
|
513
|
+
# resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR"
|
492
514
|
#
|
493
515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchEnableStandards AWS API Documentation
|
494
516
|
#
|
@@ -499,10 +521,19 @@ module Aws::SecurityHub
|
|
499
521
|
req.send_request(options)
|
500
522
|
end
|
501
523
|
|
502
|
-
# Imports security findings generated
|
503
|
-
# Security Hub. This action is requested by the
|
524
|
+
# Imports security findings generated by a finding provider into
|
525
|
+
# Security Hub. This action is requested by the finding provider to
|
504
526
|
# import its findings into Security Hub.
|
505
527
|
#
|
528
|
+
# `BatchImportFindings` must be called by one of the following:
|
529
|
+
#
|
530
|
+
# * The account that is associated with the findings. The identifier of
|
531
|
+
# the associated account is the value of the `AwsAccountId` attribute
|
532
|
+
# for the finding.
|
533
|
+
#
|
534
|
+
# * An account that is allow-listed for an official Security Hub partner
|
535
|
+
# integration.
|
536
|
+
#
|
506
537
|
# The maximum allowed size for a finding is 240 Kb. An error is returned
|
507
538
|
# for any finding larger than 240 Kb.
|
508
539
|
#
|
@@ -822,6 +853,34 @@ module Aws::SecurityHub
|
|
822
853
|
# health_check_type: "NonEmptyString",
|
823
854
|
# health_check_grace_period: 1,
|
824
855
|
# created_time: "NonEmptyString",
|
856
|
+
# mixed_instances_policy: {
|
857
|
+
# instances_distribution: {
|
858
|
+
# on_demand_allocation_strategy: "NonEmptyString",
|
859
|
+
# on_demand_base_capacity: 1,
|
860
|
+
# on_demand_percentage_above_base_capacity: 1,
|
861
|
+
# spot_allocation_strategy: "NonEmptyString",
|
862
|
+
# spot_instance_pools: 1,
|
863
|
+
# spot_max_price: "NonEmptyString",
|
864
|
+
# },
|
865
|
+
# launch_template: {
|
866
|
+
# launch_template_specification: {
|
867
|
+
# launch_template_id: "NonEmptyString",
|
868
|
+
# launch_template_name: "NonEmptyString",
|
869
|
+
# version: "NonEmptyString",
|
870
|
+
# },
|
871
|
+
# overrides: [
|
872
|
+
# {
|
873
|
+
# instance_type: "NonEmptyString",
|
874
|
+
# weighted_capacity: "NonEmptyString",
|
875
|
+
# },
|
876
|
+
# ],
|
877
|
+
# },
|
878
|
+
# },
|
879
|
+
# availability_zones: [
|
880
|
+
# {
|
881
|
+
# value: "NonEmptyString",
|
882
|
+
# },
|
883
|
+
# ],
|
825
884
|
# },
|
826
885
|
# aws_code_build_project: {
|
827
886
|
# encryption_key: "NonEmptyString",
|
@@ -1392,6 +1451,10 @@ module Aws::SecurityHub
|
|
1392
1451
|
# },
|
1393
1452
|
# ],
|
1394
1453
|
# },
|
1454
|
+
# bucket_versioning_configuration: {
|
1455
|
+
# is_mfa_delete_enabled: false,
|
1456
|
+
# status: "NonEmptyString",
|
1457
|
+
# },
|
1395
1458
|
# },
|
1396
1459
|
# aws_s3_account_public_access_block: {
|
1397
1460
|
# block_public_acls: false,
|
@@ -2806,6 +2869,11 @@ module Aws::SecurityHub
|
|
2806
2869
|
# security_groups: ["NonEmptyString"],
|
2807
2870
|
# spot_price: "NonEmptyString",
|
2808
2871
|
# user_data: "NonEmptyString",
|
2872
|
+
# metadata_options: {
|
2873
|
+
# http_endpoint: "NonEmptyString",
|
2874
|
+
# http_put_response_hop_limit: 1,
|
2875
|
+
# http_tokens: "NonEmptyString",
|
2876
|
+
# },
|
2809
2877
|
# },
|
2810
2878
|
# aws_ec2_vpn_connection: {
|
2811
2879
|
# vpn_connection_id: "NonEmptyString",
|
@@ -3015,6 +3083,157 @@ module Aws::SecurityHub
|
|
3015
3083
|
# ],
|
3016
3084
|
# },
|
3017
3085
|
# },
|
3086
|
+
# aws_network_firewall_firewall_policy: {
|
3087
|
+
# firewall_policy: {
|
3088
|
+
# stateful_rule_group_references: [
|
3089
|
+
# {
|
3090
|
+
# resource_arn: "NonEmptyString",
|
3091
|
+
# },
|
3092
|
+
# ],
|
3093
|
+
# stateless_custom_actions: [
|
3094
|
+
# {
|
3095
|
+
# action_definition: {
|
3096
|
+
# publish_metric_action: {
|
3097
|
+
# dimensions: [
|
3098
|
+
# {
|
3099
|
+
# value: "NonEmptyString",
|
3100
|
+
# },
|
3101
|
+
# ],
|
3102
|
+
# },
|
3103
|
+
# },
|
3104
|
+
# action_name: "NonEmptyString",
|
3105
|
+
# },
|
3106
|
+
# ],
|
3107
|
+
# stateless_default_actions: ["NonEmptyString"],
|
3108
|
+
# stateless_fragment_default_actions: ["NonEmptyString"],
|
3109
|
+
# stateless_rule_group_references: [
|
3110
|
+
# {
|
3111
|
+
# priority: 1,
|
3112
|
+
# resource_arn: "NonEmptyString",
|
3113
|
+
# },
|
3114
|
+
# ],
|
3115
|
+
# },
|
3116
|
+
# firewall_policy_arn: "NonEmptyString",
|
3117
|
+
# firewall_policy_id: "NonEmptyString",
|
3118
|
+
# firewall_policy_name: "NonEmptyString",
|
3119
|
+
# description: "NonEmptyString",
|
3120
|
+
# },
|
3121
|
+
# aws_network_firewall_firewall: {
|
3122
|
+
# delete_protection: false,
|
3123
|
+
# description: "NonEmptyString",
|
3124
|
+
# firewall_arn: "NonEmptyString",
|
3125
|
+
# firewall_id: "NonEmptyString",
|
3126
|
+
# firewall_name: "NonEmptyString",
|
3127
|
+
# firewall_policy_arn: "NonEmptyString",
|
3128
|
+
# firewall_policy_change_protection: false,
|
3129
|
+
# subnet_change_protection: false,
|
3130
|
+
# subnet_mappings: [
|
3131
|
+
# {
|
3132
|
+
# subnet_id: "NonEmptyString",
|
3133
|
+
# },
|
3134
|
+
# ],
|
3135
|
+
# vpc_id: "NonEmptyString",
|
3136
|
+
# },
|
3137
|
+
# aws_network_firewall_rule_group: {
|
3138
|
+
# capacity: 1,
|
3139
|
+
# description: "NonEmptyString",
|
3140
|
+
# rule_group: {
|
3141
|
+
# rule_variables: {
|
3142
|
+
# ip_sets: {
|
3143
|
+
# definition: ["NonEmptyString"],
|
3144
|
+
# },
|
3145
|
+
# port_sets: {
|
3146
|
+
# definition: ["NonEmptyString"],
|
3147
|
+
# },
|
3148
|
+
# },
|
3149
|
+
# rules_source: {
|
3150
|
+
# rules_source_list: {
|
3151
|
+
# generated_rules_type: "NonEmptyString",
|
3152
|
+
# target_types: ["NonEmptyString"],
|
3153
|
+
# targets: ["NonEmptyString"],
|
3154
|
+
# },
|
3155
|
+
# rules_string: "NonEmptyString",
|
3156
|
+
# stateful_rules: [
|
3157
|
+
# {
|
3158
|
+
# action: "NonEmptyString",
|
3159
|
+
# header: {
|
3160
|
+
# destination: "NonEmptyString",
|
3161
|
+
# destination_port: "NonEmptyString",
|
3162
|
+
# direction: "NonEmptyString",
|
3163
|
+
# protocol: "NonEmptyString",
|
3164
|
+
# source: "NonEmptyString",
|
3165
|
+
# source_port: "NonEmptyString",
|
3166
|
+
# },
|
3167
|
+
# rule_options: [
|
3168
|
+
# {
|
3169
|
+
# keyword: "NonEmptyString",
|
3170
|
+
# settings: ["NonEmptyString"],
|
3171
|
+
# },
|
3172
|
+
# ],
|
3173
|
+
# },
|
3174
|
+
# ],
|
3175
|
+
# stateless_rules_and_custom_actions: {
|
3176
|
+
# custom_actions: [
|
3177
|
+
# {
|
3178
|
+
# action_definition: {
|
3179
|
+
# publish_metric_action: {
|
3180
|
+
# dimensions: [
|
3181
|
+
# {
|
3182
|
+
# value: "NonEmptyString",
|
3183
|
+
# },
|
3184
|
+
# ],
|
3185
|
+
# },
|
3186
|
+
# },
|
3187
|
+
# action_name: "NonEmptyString",
|
3188
|
+
# },
|
3189
|
+
# ],
|
3190
|
+
# stateless_rules: [
|
3191
|
+
# {
|
3192
|
+
# priority: 1,
|
3193
|
+
# rule_definition: {
|
3194
|
+
# actions: ["NonEmptyString"],
|
3195
|
+
# match_attributes: {
|
3196
|
+
# destination_ports: [
|
3197
|
+
# {
|
3198
|
+
# from_port: 1,
|
3199
|
+
# to_port: 1,
|
3200
|
+
# },
|
3201
|
+
# ],
|
3202
|
+
# destinations: [
|
3203
|
+
# {
|
3204
|
+
# address_definition: "NonEmptyString",
|
3205
|
+
# },
|
3206
|
+
# ],
|
3207
|
+
# protocols: [1],
|
3208
|
+
# source_ports: [
|
3209
|
+
# {
|
3210
|
+
# from_port: 1,
|
3211
|
+
# to_port: 1,
|
3212
|
+
# },
|
3213
|
+
# ],
|
3214
|
+
# sources: [
|
3215
|
+
# {
|
3216
|
+
# address_definition: "NonEmptyString",
|
3217
|
+
# },
|
3218
|
+
# ],
|
3219
|
+
# tcp_flags: [
|
3220
|
+
# {
|
3221
|
+
# flags: ["NonEmptyString"],
|
3222
|
+
# masks: ["NonEmptyString"],
|
3223
|
+
# },
|
3224
|
+
# ],
|
3225
|
+
# },
|
3226
|
+
# },
|
3227
|
+
# },
|
3228
|
+
# ],
|
3229
|
+
# },
|
3230
|
+
# },
|
3231
|
+
# },
|
3232
|
+
# rule_group_arn: "NonEmptyString",
|
3233
|
+
# rule_group_id: "NonEmptyString",
|
3234
|
+
# rule_group_name: "NonEmptyString",
|
3235
|
+
# type: "NonEmptyString",
|
3236
|
+
# },
|
3018
3237
|
# },
|
3019
3238
|
# },
|
3020
3239
|
# ],
|
@@ -5079,6 +5298,7 @@ module Aws::SecurityHub
|
|
5079
5298
|
# resp.standards_subscriptions[0].standards_input #=> Hash
|
5080
5299
|
# resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String
|
5081
5300
|
# resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE"
|
5301
|
+
# resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR"
|
5082
5302
|
# resp.next_token #=> String
|
5083
5303
|
#
|
5084
5304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetEnabledStandards AWS API Documentation
|
@@ -5961,6 +6181,20 @@ module Aws::SecurityHub
|
|
5961
6181
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_type #=> String
|
5962
6182
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_grace_period #=> Integer
|
5963
6183
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.created_time #=> String
|
6184
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_allocation_strategy #=> String
|
6185
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_base_capacity #=> Integer
|
6186
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_percentage_above_base_capacity #=> Integer
|
6187
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_allocation_strategy #=> String
|
6188
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_instance_pools #=> Integer
|
6189
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_max_price #=> String
|
6190
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.launch_template_id #=> String
|
6191
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.launch_template_name #=> String
|
6192
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.version #=> String
|
6193
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides #=> Array
|
6194
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides[0].instance_type #=> String
|
6195
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides[0].weighted_capacity #=> String
|
6196
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.availability_zones #=> Array
|
6197
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.availability_zones[0].value #=> String
|
5964
6198
|
# resp.findings[0].resources[0].details.aws_code_build_project.encryption_key #=> String
|
5965
6199
|
# resp.findings[0].resources[0].details.aws_code_build_project.artifacts #=> Array
|
5966
6200
|
# resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].artifact_identifier #=> String
|
@@ -6303,6 +6537,8 @@ module Aws::SecurityHub
|
|
6303
6537
|
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].filter.s3_key_filter.filter_rules[0].value #=> String
|
6304
6538
|
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].destination #=> String
|
6305
6539
|
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].type #=> String
|
6540
|
+
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_versioning_configuration.is_mfa_delete_enabled #=> Boolean
|
6541
|
+
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_versioning_configuration.status #=> String
|
6306
6542
|
# resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_acls #=> Boolean
|
6307
6543
|
# resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_policy #=> Boolean
|
6308
6544
|
# resp.findings[0].resources[0].details.aws_s3_account_public_access_block.ignore_public_acls #=> Boolean
|
@@ -7292,6 +7528,9 @@ module Aws::SecurityHub
|
|
7292
7528
|
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.security_groups[0] #=> String
|
7293
7529
|
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.spot_price #=> String
|
7294
7530
|
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.user_data #=> String
|
7531
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_endpoint #=> String
|
7532
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_put_response_hop_limit #=> Integer
|
7533
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_tokens #=> String
|
7295
7534
|
# resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vpn_connection_id #=> String
|
7296
7535
|
# resp.findings[0].resources[0].details.aws_ec2_vpn_connection.state #=> String
|
7297
7536
|
# resp.findings[0].resources[0].details.aws_ec2_vpn_connection.customer_gateway_id #=> String
|
@@ -7445,6 +7684,87 @@ module Aws::SecurityHub
|
|
7445
7684
|
# resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].enabled #=> Boolean
|
7446
7685
|
# resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].types #=> Array
|
7447
7686
|
# resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].types[0] #=> String
|
7687
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateful_rule_group_references #=> Array
|
7688
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateful_rule_group_references[0].resource_arn #=> String
|
7689
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions #=> Array
|
7690
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_definition.publish_metric_action.dimensions #=> Array
|
7691
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_definition.publish_metric_action.dimensions[0].value #=> String
|
7692
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_name #=> String
|
7693
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_default_actions #=> Array
|
7694
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_default_actions[0] #=> String
|
7695
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_fragment_default_actions #=> Array
|
7696
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_fragment_default_actions[0] #=> String
|
7697
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references #=> Array
|
7698
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references[0].priority #=> Integer
|
7699
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references[0].resource_arn #=> String
|
7700
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_arn #=> String
|
7701
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_id #=> String
|
7702
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_name #=> String
|
7703
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.description #=> String
|
7704
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.delete_protection #=> Boolean
|
7705
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.description #=> String
|
7706
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_arn #=> String
|
7707
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_id #=> String
|
7708
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_name #=> String
|
7709
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_policy_arn #=> String
|
7710
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_policy_change_protection #=> Boolean
|
7711
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_change_protection #=> Boolean
|
7712
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_mappings #=> Array
|
7713
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_mappings[0].subnet_id #=> String
|
7714
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.vpc_id #=> String
|
7715
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.capacity #=> Integer
|
7716
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.description #=> String
|
7717
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.ip_sets.definition #=> Array
|
7718
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.ip_sets.definition[0] #=> String
|
7719
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.port_sets.definition #=> Array
|
7720
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.port_sets.definition[0] #=> String
|
7721
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.generated_rules_type #=> String
|
7722
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.target_types #=> Array
|
7723
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.target_types[0] #=> String
|
7724
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.targets #=> Array
|
7725
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.targets[0] #=> String
|
7726
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_string #=> String
|
7727
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules #=> Array
|
7728
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].action #=> String
|
7729
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.destination #=> String
|
7730
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.destination_port #=> String
|
7731
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.direction #=> String
|
7732
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.protocol #=> String
|
7733
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.source #=> String
|
7734
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.source_port #=> String
|
7735
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options #=> Array
|
7736
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].keyword #=> String
|
7737
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].settings #=> Array
|
7738
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].settings[0] #=> String
|
7739
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions #=> Array
|
7740
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions[0].action_definition.publish_metric_action.dimensions #=> Array
|
7741
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions[0].action_definition.publish_metric_action.dimensions[0].value #=> String
|
7742
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions[0].action_name #=> String
|
7743
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules #=> Array
|
7744
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].priority #=> Integer
|
7745
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.actions #=> Array
|
7746
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.actions[0] #=> String
|
7747
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destination_ports #=> Array
|
7748
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destination_ports[0].from_port #=> Integer
|
7749
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destination_ports[0].to_port #=> Integer
|
7750
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destinations #=> Array
|
7751
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destinations[0].address_definition #=> String
|
7752
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.protocols #=> Array
|
7753
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.protocols[0] #=> Integer
|
7754
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.source_ports #=> Array
|
7755
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.source_ports[0].from_port #=> Integer
|
7756
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.source_ports[0].to_port #=> Integer
|
7757
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.sources #=> Array
|
7758
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.sources[0].address_definition #=> String
|
7759
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags #=> Array
|
7760
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].flags #=> Array
|
7761
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].flags[0] #=> String
|
7762
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].masks #=> Array
|
7763
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].masks[0] #=> String
|
7764
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_arn #=> String
|
7765
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_id #=> String
|
7766
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_name #=> String
|
7767
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.type #=> String
|
7448
7768
|
# resp.findings[0].compliance.status #=> String, one of "PASSED", "WARNING", "FAILED", "NOT_AVAILABLE"
|
7449
7769
|
# resp.findings[0].compliance.related_requirements #=> Array
|
7450
7770
|
# resp.findings[0].compliance.related_requirements[0] #=> String
|
@@ -9962,7 +10282,7 @@ module Aws::SecurityHub
|
|
9962
10282
|
params: params,
|
9963
10283
|
config: config)
|
9964
10284
|
context[:gem_name] = 'aws-sdk-securityhub'
|
9965
|
-
context[:gem_version] = '1.
|
10285
|
+
context[:gem_version] = '1.59.0'
|
9966
10286
|
Seahorse::Client::Request.new(handlers, context)
|
9967
10287
|
end
|
9968
10288
|
|