aws-sdk-securityhub 1.57.0 → 1.61.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +339 -4
- data/lib/aws-sdk-securityhub/client_api.rb +293 -0
- data/lib/aws-sdk-securityhub/types.rb +2728 -11
- 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: 7006dee2dad952c02366f2cf05400a1f390268a34b2fa6d482565d7e5e2bba3c
|
4
|
+
data.tar.gz: 622f15b3dd5bdc1fc0c7059f287a06c6ed7be2d673995f0bbfcbce4956c64f53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2062d0217fb0a3cf3fe109bce0ad9de3abc21531d333b1d7aba3ac7b1561700a9e468becc6dc112d6aa7b68192f5c17f731bdf4a266ada48be0ac88c14593ca2
|
7
|
+
data.tar.gz: 15634d5fd83bed5ef9688be7e56db65aba9d8be1bc2f5dfbe82a2e14326594dcaf89dfc79753d4a0f7c809900f16fbbb0190759efa9993a5d187d79392692d20
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.61.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.60.0 (2022-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adding top level Sample boolean field
|
13
|
+
|
14
|
+
1.59.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.58.0 (2021-12-20)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Added new resource details objects to ASFF, including resources for Firewall, and RuleGroup, FirewallPolicy Added additional details for AutoScalingGroup, LaunchConfiguration, and S3 buckets.
|
23
|
+
|
4
24
|
1.57.0 (2021-11-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
@@ -27,6 +27,8 @@ 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'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::SecurityHub
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -175,6 +179,10 @@ module Aws::SecurityHub
|
|
175
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
178
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
187
|
# Set to true to disable SDK automatically adding host prefix
|
180
188
|
# to default service endpoint when available.
|
@@ -297,7 +305,7 @@ module Aws::SecurityHub
|
|
297
305
|
# seconds to wait when opening a HTTP session before raising a
|
298
306
|
# `Timeout::Error`.
|
299
307
|
#
|
300
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
309
|
# number of seconds to wait for response data. This value can
|
302
310
|
# safely be set per-request on the session.
|
303
311
|
#
|
@@ -313,6 +321,9 @@ module Aws::SecurityHub
|
|
313
321
|
# disables this behaviour. This value can safely be set per
|
314
322
|
# request on the session.
|
315
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
316
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
328
|
# HTTP debug output will be sent to the `:logger`.
|
318
329
|
#
|
@@ -452,6 +463,7 @@ module Aws::SecurityHub
|
|
452
463
|
# resp.standards_subscriptions[0].standards_input #=> Hash
|
453
464
|
# resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String
|
454
465
|
# resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE"
|
466
|
+
# resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR"
|
455
467
|
#
|
456
468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchDisableStandards AWS API Documentation
|
457
469
|
#
|
@@ -500,6 +512,7 @@ module Aws::SecurityHub
|
|
500
512
|
# resp.standards_subscriptions[0].standards_input #=> Hash
|
501
513
|
# resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String
|
502
514
|
# resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE"
|
515
|
+
# resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR"
|
503
516
|
#
|
504
517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchEnableStandards AWS API Documentation
|
505
518
|
#
|
@@ -510,10 +523,19 @@ module Aws::SecurityHub
|
|
510
523
|
req.send_request(options)
|
511
524
|
end
|
512
525
|
|
513
|
-
# Imports security findings generated
|
514
|
-
# Security Hub. This action is requested by the
|
526
|
+
# Imports security findings generated by a finding provider into
|
527
|
+
# Security Hub. This action is requested by the finding provider to
|
515
528
|
# import its findings into Security Hub.
|
516
529
|
#
|
530
|
+
# `BatchImportFindings` must be called by one of the following:
|
531
|
+
#
|
532
|
+
# * The account that is associated with the findings. The identifier of
|
533
|
+
# the associated account is the value of the `AwsAccountId` attribute
|
534
|
+
# for the finding.
|
535
|
+
#
|
536
|
+
# * An account that is allow-listed for an official Security Hub partner
|
537
|
+
# integration.
|
538
|
+
#
|
517
539
|
# The maximum allowed size for a finding is 240 Kb. An error is returned
|
518
540
|
# for any finding larger than 240 Kb.
|
519
541
|
#
|
@@ -833,6 +855,34 @@ module Aws::SecurityHub
|
|
833
855
|
# health_check_type: "NonEmptyString",
|
834
856
|
# health_check_grace_period: 1,
|
835
857
|
# created_time: "NonEmptyString",
|
858
|
+
# mixed_instances_policy: {
|
859
|
+
# instances_distribution: {
|
860
|
+
# on_demand_allocation_strategy: "NonEmptyString",
|
861
|
+
# on_demand_base_capacity: 1,
|
862
|
+
# on_demand_percentage_above_base_capacity: 1,
|
863
|
+
# spot_allocation_strategy: "NonEmptyString",
|
864
|
+
# spot_instance_pools: 1,
|
865
|
+
# spot_max_price: "NonEmptyString",
|
866
|
+
# },
|
867
|
+
# launch_template: {
|
868
|
+
# launch_template_specification: {
|
869
|
+
# launch_template_id: "NonEmptyString",
|
870
|
+
# launch_template_name: "NonEmptyString",
|
871
|
+
# version: "NonEmptyString",
|
872
|
+
# },
|
873
|
+
# overrides: [
|
874
|
+
# {
|
875
|
+
# instance_type: "NonEmptyString",
|
876
|
+
# weighted_capacity: "NonEmptyString",
|
877
|
+
# },
|
878
|
+
# ],
|
879
|
+
# },
|
880
|
+
# },
|
881
|
+
# availability_zones: [
|
882
|
+
# {
|
883
|
+
# value: "NonEmptyString",
|
884
|
+
# },
|
885
|
+
# ],
|
836
886
|
# },
|
837
887
|
# aws_code_build_project: {
|
838
888
|
# encryption_key: "NonEmptyString",
|
@@ -1403,6 +1453,10 @@ module Aws::SecurityHub
|
|
1403
1453
|
# },
|
1404
1454
|
# ],
|
1405
1455
|
# },
|
1456
|
+
# bucket_versioning_configuration: {
|
1457
|
+
# is_mfa_delete_enabled: false,
|
1458
|
+
# status: "NonEmptyString",
|
1459
|
+
# },
|
1406
1460
|
# },
|
1407
1461
|
# aws_s3_account_public_access_block: {
|
1408
1462
|
# block_public_acls: false,
|
@@ -2817,6 +2871,11 @@ module Aws::SecurityHub
|
|
2817
2871
|
# security_groups: ["NonEmptyString"],
|
2818
2872
|
# spot_price: "NonEmptyString",
|
2819
2873
|
# user_data: "NonEmptyString",
|
2874
|
+
# metadata_options: {
|
2875
|
+
# http_endpoint: "NonEmptyString",
|
2876
|
+
# http_put_response_hop_limit: 1,
|
2877
|
+
# http_tokens: "NonEmptyString",
|
2878
|
+
# },
|
2820
2879
|
# },
|
2821
2880
|
# aws_ec2_vpn_connection: {
|
2822
2881
|
# vpn_connection_id: "NonEmptyString",
|
@@ -3026,6 +3085,157 @@ module Aws::SecurityHub
|
|
3026
3085
|
# ],
|
3027
3086
|
# },
|
3028
3087
|
# },
|
3088
|
+
# aws_network_firewall_firewall_policy: {
|
3089
|
+
# firewall_policy: {
|
3090
|
+
# stateful_rule_group_references: [
|
3091
|
+
# {
|
3092
|
+
# resource_arn: "NonEmptyString",
|
3093
|
+
# },
|
3094
|
+
# ],
|
3095
|
+
# stateless_custom_actions: [
|
3096
|
+
# {
|
3097
|
+
# action_definition: {
|
3098
|
+
# publish_metric_action: {
|
3099
|
+
# dimensions: [
|
3100
|
+
# {
|
3101
|
+
# value: "NonEmptyString",
|
3102
|
+
# },
|
3103
|
+
# ],
|
3104
|
+
# },
|
3105
|
+
# },
|
3106
|
+
# action_name: "NonEmptyString",
|
3107
|
+
# },
|
3108
|
+
# ],
|
3109
|
+
# stateless_default_actions: ["NonEmptyString"],
|
3110
|
+
# stateless_fragment_default_actions: ["NonEmptyString"],
|
3111
|
+
# stateless_rule_group_references: [
|
3112
|
+
# {
|
3113
|
+
# priority: 1,
|
3114
|
+
# resource_arn: "NonEmptyString",
|
3115
|
+
# },
|
3116
|
+
# ],
|
3117
|
+
# },
|
3118
|
+
# firewall_policy_arn: "NonEmptyString",
|
3119
|
+
# firewall_policy_id: "NonEmptyString",
|
3120
|
+
# firewall_policy_name: "NonEmptyString",
|
3121
|
+
# description: "NonEmptyString",
|
3122
|
+
# },
|
3123
|
+
# aws_network_firewall_firewall: {
|
3124
|
+
# delete_protection: false,
|
3125
|
+
# description: "NonEmptyString",
|
3126
|
+
# firewall_arn: "NonEmptyString",
|
3127
|
+
# firewall_id: "NonEmptyString",
|
3128
|
+
# firewall_name: "NonEmptyString",
|
3129
|
+
# firewall_policy_arn: "NonEmptyString",
|
3130
|
+
# firewall_policy_change_protection: false,
|
3131
|
+
# subnet_change_protection: false,
|
3132
|
+
# subnet_mappings: [
|
3133
|
+
# {
|
3134
|
+
# subnet_id: "NonEmptyString",
|
3135
|
+
# },
|
3136
|
+
# ],
|
3137
|
+
# vpc_id: "NonEmptyString",
|
3138
|
+
# },
|
3139
|
+
# aws_network_firewall_rule_group: {
|
3140
|
+
# capacity: 1,
|
3141
|
+
# description: "NonEmptyString",
|
3142
|
+
# rule_group: {
|
3143
|
+
# rule_variables: {
|
3144
|
+
# ip_sets: {
|
3145
|
+
# definition: ["NonEmptyString"],
|
3146
|
+
# },
|
3147
|
+
# port_sets: {
|
3148
|
+
# definition: ["NonEmptyString"],
|
3149
|
+
# },
|
3150
|
+
# },
|
3151
|
+
# rules_source: {
|
3152
|
+
# rules_source_list: {
|
3153
|
+
# generated_rules_type: "NonEmptyString",
|
3154
|
+
# target_types: ["NonEmptyString"],
|
3155
|
+
# targets: ["NonEmptyString"],
|
3156
|
+
# },
|
3157
|
+
# rules_string: "NonEmptyString",
|
3158
|
+
# stateful_rules: [
|
3159
|
+
# {
|
3160
|
+
# action: "NonEmptyString",
|
3161
|
+
# header: {
|
3162
|
+
# destination: "NonEmptyString",
|
3163
|
+
# destination_port: "NonEmptyString",
|
3164
|
+
# direction: "NonEmptyString",
|
3165
|
+
# protocol: "NonEmptyString",
|
3166
|
+
# source: "NonEmptyString",
|
3167
|
+
# source_port: "NonEmptyString",
|
3168
|
+
# },
|
3169
|
+
# rule_options: [
|
3170
|
+
# {
|
3171
|
+
# keyword: "NonEmptyString",
|
3172
|
+
# settings: ["NonEmptyString"],
|
3173
|
+
# },
|
3174
|
+
# ],
|
3175
|
+
# },
|
3176
|
+
# ],
|
3177
|
+
# stateless_rules_and_custom_actions: {
|
3178
|
+
# custom_actions: [
|
3179
|
+
# {
|
3180
|
+
# action_definition: {
|
3181
|
+
# publish_metric_action: {
|
3182
|
+
# dimensions: [
|
3183
|
+
# {
|
3184
|
+
# value: "NonEmptyString",
|
3185
|
+
# },
|
3186
|
+
# ],
|
3187
|
+
# },
|
3188
|
+
# },
|
3189
|
+
# action_name: "NonEmptyString",
|
3190
|
+
# },
|
3191
|
+
# ],
|
3192
|
+
# stateless_rules: [
|
3193
|
+
# {
|
3194
|
+
# priority: 1,
|
3195
|
+
# rule_definition: {
|
3196
|
+
# actions: ["NonEmptyString"],
|
3197
|
+
# match_attributes: {
|
3198
|
+
# destination_ports: [
|
3199
|
+
# {
|
3200
|
+
# from_port: 1,
|
3201
|
+
# to_port: 1,
|
3202
|
+
# },
|
3203
|
+
# ],
|
3204
|
+
# destinations: [
|
3205
|
+
# {
|
3206
|
+
# address_definition: "NonEmptyString",
|
3207
|
+
# },
|
3208
|
+
# ],
|
3209
|
+
# protocols: [1],
|
3210
|
+
# source_ports: [
|
3211
|
+
# {
|
3212
|
+
# from_port: 1,
|
3213
|
+
# to_port: 1,
|
3214
|
+
# },
|
3215
|
+
# ],
|
3216
|
+
# sources: [
|
3217
|
+
# {
|
3218
|
+
# address_definition: "NonEmptyString",
|
3219
|
+
# },
|
3220
|
+
# ],
|
3221
|
+
# tcp_flags: [
|
3222
|
+
# {
|
3223
|
+
# flags: ["NonEmptyString"],
|
3224
|
+
# masks: ["NonEmptyString"],
|
3225
|
+
# },
|
3226
|
+
# ],
|
3227
|
+
# },
|
3228
|
+
# },
|
3229
|
+
# },
|
3230
|
+
# ],
|
3231
|
+
# },
|
3232
|
+
# },
|
3233
|
+
# },
|
3234
|
+
# rule_group_arn: "NonEmptyString",
|
3235
|
+
# rule_group_id: "NonEmptyString",
|
3236
|
+
# rule_group_name: "NonEmptyString",
|
3237
|
+
# type: "NonEmptyString",
|
3238
|
+
# },
|
3029
3239
|
# },
|
3030
3240
|
# },
|
3031
3241
|
# ],
|
@@ -3231,6 +3441,7 @@ module Aws::SecurityHub
|
|
3231
3441
|
# },
|
3232
3442
|
# types: ["NonEmptyString"],
|
3233
3443
|
# },
|
3444
|
+
# sample: false,
|
3234
3445
|
# },
|
3235
3446
|
# ],
|
3236
3447
|
# })
|
@@ -4184,6 +4395,11 @@ module Aws::SecurityHub
|
|
4184
4395
|
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
4185
4396
|
# },
|
4186
4397
|
# ],
|
4398
|
+
# sample: [
|
4399
|
+
# {
|
4400
|
+
# value: false,
|
4401
|
+
# },
|
4402
|
+
# ],
|
4187
4403
|
# },
|
4188
4404
|
# group_by_attribute: "NonEmptyString", # required
|
4189
4405
|
# })
|
@@ -5090,6 +5306,7 @@ module Aws::SecurityHub
|
|
5090
5306
|
# resp.standards_subscriptions[0].standards_input #=> Hash
|
5091
5307
|
# resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String
|
5092
5308
|
# resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE"
|
5309
|
+
# resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR"
|
5093
5310
|
# resp.next_token #=> String
|
5094
5311
|
#
|
5095
5312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetEnabledStandards AWS API Documentation
|
@@ -5794,6 +6011,11 @@ module Aws::SecurityHub
|
|
5794
6011
|
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
5795
6012
|
# },
|
5796
6013
|
# ],
|
6014
|
+
# sample: [
|
6015
|
+
# {
|
6016
|
+
# value: false,
|
6017
|
+
# },
|
6018
|
+
# ],
|
5797
6019
|
# },
|
5798
6020
|
# sort_criteria: [
|
5799
6021
|
# {
|
@@ -5972,6 +6194,20 @@ module Aws::SecurityHub
|
|
5972
6194
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_type #=> String
|
5973
6195
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_grace_period #=> Integer
|
5974
6196
|
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.created_time #=> String
|
6197
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_allocation_strategy #=> String
|
6198
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_base_capacity #=> Integer
|
6199
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_percentage_above_base_capacity #=> Integer
|
6200
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_allocation_strategy #=> String
|
6201
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_instance_pools #=> Integer
|
6202
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_max_price #=> String
|
6203
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.launch_template_id #=> String
|
6204
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.launch_template_name #=> String
|
6205
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.version #=> String
|
6206
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides #=> Array
|
6207
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides[0].instance_type #=> String
|
6208
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides[0].weighted_capacity #=> String
|
6209
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.availability_zones #=> Array
|
6210
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.availability_zones[0].value #=> String
|
5975
6211
|
# resp.findings[0].resources[0].details.aws_code_build_project.encryption_key #=> String
|
5976
6212
|
# resp.findings[0].resources[0].details.aws_code_build_project.artifacts #=> Array
|
5977
6213
|
# resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].artifact_identifier #=> String
|
@@ -6314,6 +6550,8 @@ module Aws::SecurityHub
|
|
6314
6550
|
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].filter.s3_key_filter.filter_rules[0].value #=> String
|
6315
6551
|
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].destination #=> String
|
6316
6552
|
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].type #=> String
|
6553
|
+
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_versioning_configuration.is_mfa_delete_enabled #=> Boolean
|
6554
|
+
# resp.findings[0].resources[0].details.aws_s3_bucket.bucket_versioning_configuration.status #=> String
|
6317
6555
|
# resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_acls #=> Boolean
|
6318
6556
|
# resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_policy #=> Boolean
|
6319
6557
|
# resp.findings[0].resources[0].details.aws_s3_account_public_access_block.ignore_public_acls #=> Boolean
|
@@ -7303,6 +7541,9 @@ module Aws::SecurityHub
|
|
7303
7541
|
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.security_groups[0] #=> String
|
7304
7542
|
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.spot_price #=> String
|
7305
7543
|
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.user_data #=> String
|
7544
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_endpoint #=> String
|
7545
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_put_response_hop_limit #=> Integer
|
7546
|
+
# resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_tokens #=> String
|
7306
7547
|
# resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vpn_connection_id #=> String
|
7307
7548
|
# resp.findings[0].resources[0].details.aws_ec2_vpn_connection.state #=> String
|
7308
7549
|
# resp.findings[0].resources[0].details.aws_ec2_vpn_connection.customer_gateway_id #=> String
|
@@ -7456,6 +7697,87 @@ module Aws::SecurityHub
|
|
7456
7697
|
# resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].enabled #=> Boolean
|
7457
7698
|
# resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].types #=> Array
|
7458
7699
|
# resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].types[0] #=> String
|
7700
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateful_rule_group_references #=> Array
|
7701
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateful_rule_group_references[0].resource_arn #=> String
|
7702
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions #=> Array
|
7703
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_definition.publish_metric_action.dimensions #=> Array
|
7704
|
+
# 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
|
7705
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_name #=> String
|
7706
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_default_actions #=> Array
|
7707
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_default_actions[0] #=> String
|
7708
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_fragment_default_actions #=> Array
|
7709
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_fragment_default_actions[0] #=> String
|
7710
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references #=> Array
|
7711
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references[0].priority #=> Integer
|
7712
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references[0].resource_arn #=> String
|
7713
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_arn #=> String
|
7714
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_id #=> String
|
7715
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_name #=> String
|
7716
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.description #=> String
|
7717
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.delete_protection #=> Boolean
|
7718
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.description #=> String
|
7719
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_arn #=> String
|
7720
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_id #=> String
|
7721
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_name #=> String
|
7722
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_policy_arn #=> String
|
7723
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_policy_change_protection #=> Boolean
|
7724
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_change_protection #=> Boolean
|
7725
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_mappings #=> Array
|
7726
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_mappings[0].subnet_id #=> String
|
7727
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_firewall.vpc_id #=> String
|
7728
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.capacity #=> Integer
|
7729
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.description #=> String
|
7730
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.ip_sets.definition #=> Array
|
7731
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.ip_sets.definition[0] #=> String
|
7732
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.port_sets.definition #=> Array
|
7733
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.port_sets.definition[0] #=> String
|
7734
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.generated_rules_type #=> String
|
7735
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.target_types #=> Array
|
7736
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.target_types[0] #=> String
|
7737
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.targets #=> Array
|
7738
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.targets[0] #=> String
|
7739
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_string #=> String
|
7740
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules #=> Array
|
7741
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].action #=> String
|
7742
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.destination #=> String
|
7743
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.destination_port #=> String
|
7744
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.direction #=> String
|
7745
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.protocol #=> String
|
7746
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.source #=> String
|
7747
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.source_port #=> String
|
7748
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options #=> Array
|
7749
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].keyword #=> String
|
7750
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].settings #=> Array
|
7751
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].settings[0] #=> String
|
7752
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions #=> Array
|
7753
|
+
# 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
|
7754
|
+
# 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
|
7755
|
+
# 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
|
7756
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules #=> Array
|
7757
|
+
# 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
|
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.actions #=> Array
|
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.actions[0] #=> String
|
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.destination_ports #=> 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.destination_ports[0].from_port #=> Integer
|
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.destination_ports[0].to_port #=> Integer
|
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.destinations #=> Array
|
7764
|
+
# 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
|
7765
|
+
# 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
|
7766
|
+
# 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
|
7767
|
+
# 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
|
7768
|
+
# 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
|
7769
|
+
# 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
|
7770
|
+
# 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
|
7771
|
+
# 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
|
7772
|
+
# 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
|
7773
|
+
# 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
|
7774
|
+
# 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
|
7775
|
+
# 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
|
7776
|
+
# 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
|
7777
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_arn #=> String
|
7778
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_id #=> String
|
7779
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_name #=> String
|
7780
|
+
# resp.findings[0].resources[0].details.aws_network_firewall_rule_group.type #=> String
|
7459
7781
|
# resp.findings[0].compliance.status #=> String, one of "PASSED", "WARNING", "FAILED", "NOT_AVAILABLE"
|
7460
7782
|
# resp.findings[0].compliance.related_requirements #=> Array
|
7461
7783
|
# resp.findings[0].compliance.related_requirements[0] #=> String
|
@@ -7573,6 +7895,7 @@ module Aws::SecurityHub
|
|
7573
7895
|
# resp.findings[0].finding_provider_fields.severity.original #=> String
|
7574
7896
|
# resp.findings[0].finding_provider_fields.types #=> Array
|
7575
7897
|
# resp.findings[0].finding_provider_fields.types[0] #=> String
|
7898
|
+
# resp.findings[0].sample #=> Boolean
|
7576
7899
|
# resp.next_token #=> String
|
7577
7900
|
#
|
7578
7901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation
|
@@ -7966,6 +8289,8 @@ module Aws::SecurityHub
|
|
7966
8289
|
# resp.insights[0].filters.finding_provider_fields_types #=> Array
|
7967
8290
|
# resp.insights[0].filters.finding_provider_fields_types[0].value #=> String
|
7968
8291
|
# resp.insights[0].filters.finding_provider_fields_types[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
|
8292
|
+
# resp.insights[0].filters.sample #=> Array
|
8293
|
+
# resp.insights[0].filters.sample[0].value #=> Boolean
|
7969
8294
|
# resp.insights[0].group_by_attribute #=> String
|
7970
8295
|
# resp.next_token #=> String
|
7971
8296
|
#
|
@@ -9203,6 +9528,11 @@ module Aws::SecurityHub
|
|
9203
9528
|
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
9204
9529
|
# },
|
9205
9530
|
# ],
|
9531
|
+
# sample: [
|
9532
|
+
# {
|
9533
|
+
# value: false,
|
9534
|
+
# },
|
9535
|
+
# ],
|
9206
9536
|
# },
|
9207
9537
|
# note: {
|
9208
9538
|
# text: "NonEmptyString", # required
|
@@ -9858,6 +10188,11 @@ module Aws::SecurityHub
|
|
9858
10188
|
# comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
|
9859
10189
|
# },
|
9860
10190
|
# ],
|
10191
|
+
# sample: [
|
10192
|
+
# {
|
10193
|
+
# value: false,
|
10194
|
+
# },
|
10195
|
+
# ],
|
9861
10196
|
# },
|
9862
10197
|
# group_by_attribute: "NonEmptyString",
|
9863
10198
|
# })
|
@@ -9973,7 +10308,7 @@ module Aws::SecurityHub
|
|
9973
10308
|
params: params,
|
9974
10309
|
config: config)
|
9975
10310
|
context[:gem_name] = 'aws-sdk-securityhub'
|
9976
|
-
context[:gem_version] = '1.
|
10311
|
+
context[:gem_version] = '1.61.0'
|
9977
10312
|
Seahorse::Client::Request.new(handlers, context)
|
9978
10313
|
end
|
9979
10314
|
|