aws-sdk-securityhub 1.120.0 → 1.122.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +139 -51
- data/lib/aws-sdk-securityhub/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-securityhub/endpoints.rb +2 -867
- data/lib/aws-sdk-securityhub/plugins/endpoints.rb +1 -164
- data/lib/aws-sdk-securityhub/types.rb +55 -56
- data/lib/aws-sdk-securityhub.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::SecurityHub::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,169 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :accept_administrator_invitation
|
74
|
-
Aws::SecurityHub::Endpoints::AcceptAdministratorInvitation.build(context)
|
75
|
-
when :accept_invitation
|
76
|
-
Aws::SecurityHub::Endpoints::AcceptInvitation.build(context)
|
77
|
-
when :batch_delete_automation_rules
|
78
|
-
Aws::SecurityHub::Endpoints::BatchDeleteAutomationRules.build(context)
|
79
|
-
when :batch_disable_standards
|
80
|
-
Aws::SecurityHub::Endpoints::BatchDisableStandards.build(context)
|
81
|
-
when :batch_enable_standards
|
82
|
-
Aws::SecurityHub::Endpoints::BatchEnableStandards.build(context)
|
83
|
-
when :batch_get_automation_rules
|
84
|
-
Aws::SecurityHub::Endpoints::BatchGetAutomationRules.build(context)
|
85
|
-
when :batch_get_configuration_policy_associations
|
86
|
-
Aws::SecurityHub::Endpoints::BatchGetConfigurationPolicyAssociations.build(context)
|
87
|
-
when :batch_get_security_controls
|
88
|
-
Aws::SecurityHub::Endpoints::BatchGetSecurityControls.build(context)
|
89
|
-
when :batch_get_standards_control_associations
|
90
|
-
Aws::SecurityHub::Endpoints::BatchGetStandardsControlAssociations.build(context)
|
91
|
-
when :batch_import_findings
|
92
|
-
Aws::SecurityHub::Endpoints::BatchImportFindings.build(context)
|
93
|
-
when :batch_update_automation_rules
|
94
|
-
Aws::SecurityHub::Endpoints::BatchUpdateAutomationRules.build(context)
|
95
|
-
when :batch_update_findings
|
96
|
-
Aws::SecurityHub::Endpoints::BatchUpdateFindings.build(context)
|
97
|
-
when :batch_update_standards_control_associations
|
98
|
-
Aws::SecurityHub::Endpoints::BatchUpdateStandardsControlAssociations.build(context)
|
99
|
-
when :create_action_target
|
100
|
-
Aws::SecurityHub::Endpoints::CreateActionTarget.build(context)
|
101
|
-
when :create_automation_rule
|
102
|
-
Aws::SecurityHub::Endpoints::CreateAutomationRule.build(context)
|
103
|
-
when :create_configuration_policy
|
104
|
-
Aws::SecurityHub::Endpoints::CreateConfigurationPolicy.build(context)
|
105
|
-
when :create_finding_aggregator
|
106
|
-
Aws::SecurityHub::Endpoints::CreateFindingAggregator.build(context)
|
107
|
-
when :create_insight
|
108
|
-
Aws::SecurityHub::Endpoints::CreateInsight.build(context)
|
109
|
-
when :create_members
|
110
|
-
Aws::SecurityHub::Endpoints::CreateMembers.build(context)
|
111
|
-
when :decline_invitations
|
112
|
-
Aws::SecurityHub::Endpoints::DeclineInvitations.build(context)
|
113
|
-
when :delete_action_target
|
114
|
-
Aws::SecurityHub::Endpoints::DeleteActionTarget.build(context)
|
115
|
-
when :delete_configuration_policy
|
116
|
-
Aws::SecurityHub::Endpoints::DeleteConfigurationPolicy.build(context)
|
117
|
-
when :delete_finding_aggregator
|
118
|
-
Aws::SecurityHub::Endpoints::DeleteFindingAggregator.build(context)
|
119
|
-
when :delete_insight
|
120
|
-
Aws::SecurityHub::Endpoints::DeleteInsight.build(context)
|
121
|
-
when :delete_invitations
|
122
|
-
Aws::SecurityHub::Endpoints::DeleteInvitations.build(context)
|
123
|
-
when :delete_members
|
124
|
-
Aws::SecurityHub::Endpoints::DeleteMembers.build(context)
|
125
|
-
when :describe_action_targets
|
126
|
-
Aws::SecurityHub::Endpoints::DescribeActionTargets.build(context)
|
127
|
-
when :describe_hub
|
128
|
-
Aws::SecurityHub::Endpoints::DescribeHub.build(context)
|
129
|
-
when :describe_organization_configuration
|
130
|
-
Aws::SecurityHub::Endpoints::DescribeOrganizationConfiguration.build(context)
|
131
|
-
when :describe_products
|
132
|
-
Aws::SecurityHub::Endpoints::DescribeProducts.build(context)
|
133
|
-
when :describe_standards
|
134
|
-
Aws::SecurityHub::Endpoints::DescribeStandards.build(context)
|
135
|
-
when :describe_standards_controls
|
136
|
-
Aws::SecurityHub::Endpoints::DescribeStandardsControls.build(context)
|
137
|
-
when :disable_import_findings_for_product
|
138
|
-
Aws::SecurityHub::Endpoints::DisableImportFindingsForProduct.build(context)
|
139
|
-
when :disable_organization_admin_account
|
140
|
-
Aws::SecurityHub::Endpoints::DisableOrganizationAdminAccount.build(context)
|
141
|
-
when :disable_security_hub
|
142
|
-
Aws::SecurityHub::Endpoints::DisableSecurityHub.build(context)
|
143
|
-
when :disassociate_from_administrator_account
|
144
|
-
Aws::SecurityHub::Endpoints::DisassociateFromAdministratorAccount.build(context)
|
145
|
-
when :disassociate_from_master_account
|
146
|
-
Aws::SecurityHub::Endpoints::DisassociateFromMasterAccount.build(context)
|
147
|
-
when :disassociate_members
|
148
|
-
Aws::SecurityHub::Endpoints::DisassociateMembers.build(context)
|
149
|
-
when :enable_import_findings_for_product
|
150
|
-
Aws::SecurityHub::Endpoints::EnableImportFindingsForProduct.build(context)
|
151
|
-
when :enable_organization_admin_account
|
152
|
-
Aws::SecurityHub::Endpoints::EnableOrganizationAdminAccount.build(context)
|
153
|
-
when :enable_security_hub
|
154
|
-
Aws::SecurityHub::Endpoints::EnableSecurityHub.build(context)
|
155
|
-
when :get_administrator_account
|
156
|
-
Aws::SecurityHub::Endpoints::GetAdministratorAccount.build(context)
|
157
|
-
when :get_configuration_policy
|
158
|
-
Aws::SecurityHub::Endpoints::GetConfigurationPolicy.build(context)
|
159
|
-
when :get_configuration_policy_association
|
160
|
-
Aws::SecurityHub::Endpoints::GetConfigurationPolicyAssociation.build(context)
|
161
|
-
when :get_enabled_standards
|
162
|
-
Aws::SecurityHub::Endpoints::GetEnabledStandards.build(context)
|
163
|
-
when :get_finding_aggregator
|
164
|
-
Aws::SecurityHub::Endpoints::GetFindingAggregator.build(context)
|
165
|
-
when :get_finding_history
|
166
|
-
Aws::SecurityHub::Endpoints::GetFindingHistory.build(context)
|
167
|
-
when :get_findings
|
168
|
-
Aws::SecurityHub::Endpoints::GetFindings.build(context)
|
169
|
-
when :get_insight_results
|
170
|
-
Aws::SecurityHub::Endpoints::GetInsightResults.build(context)
|
171
|
-
when :get_insights
|
172
|
-
Aws::SecurityHub::Endpoints::GetInsights.build(context)
|
173
|
-
when :get_invitations_count
|
174
|
-
Aws::SecurityHub::Endpoints::GetInvitationsCount.build(context)
|
175
|
-
when :get_master_account
|
176
|
-
Aws::SecurityHub::Endpoints::GetMasterAccount.build(context)
|
177
|
-
when :get_members
|
178
|
-
Aws::SecurityHub::Endpoints::GetMembers.build(context)
|
179
|
-
when :get_security_control_definition
|
180
|
-
Aws::SecurityHub::Endpoints::GetSecurityControlDefinition.build(context)
|
181
|
-
when :invite_members
|
182
|
-
Aws::SecurityHub::Endpoints::InviteMembers.build(context)
|
183
|
-
when :list_automation_rules
|
184
|
-
Aws::SecurityHub::Endpoints::ListAutomationRules.build(context)
|
185
|
-
when :list_configuration_policies
|
186
|
-
Aws::SecurityHub::Endpoints::ListConfigurationPolicies.build(context)
|
187
|
-
when :list_configuration_policy_associations
|
188
|
-
Aws::SecurityHub::Endpoints::ListConfigurationPolicyAssociations.build(context)
|
189
|
-
when :list_enabled_products_for_import
|
190
|
-
Aws::SecurityHub::Endpoints::ListEnabledProductsForImport.build(context)
|
191
|
-
when :list_finding_aggregators
|
192
|
-
Aws::SecurityHub::Endpoints::ListFindingAggregators.build(context)
|
193
|
-
when :list_invitations
|
194
|
-
Aws::SecurityHub::Endpoints::ListInvitations.build(context)
|
195
|
-
when :list_members
|
196
|
-
Aws::SecurityHub::Endpoints::ListMembers.build(context)
|
197
|
-
when :list_organization_admin_accounts
|
198
|
-
Aws::SecurityHub::Endpoints::ListOrganizationAdminAccounts.build(context)
|
199
|
-
when :list_security_control_definitions
|
200
|
-
Aws::SecurityHub::Endpoints::ListSecurityControlDefinitions.build(context)
|
201
|
-
when :list_standards_control_associations
|
202
|
-
Aws::SecurityHub::Endpoints::ListStandardsControlAssociations.build(context)
|
203
|
-
when :list_tags_for_resource
|
204
|
-
Aws::SecurityHub::Endpoints::ListTagsForResource.build(context)
|
205
|
-
when :start_configuration_policy_association
|
206
|
-
Aws::SecurityHub::Endpoints::StartConfigurationPolicyAssociation.build(context)
|
207
|
-
when :start_configuration_policy_disassociation
|
208
|
-
Aws::SecurityHub::Endpoints::StartConfigurationPolicyDisassociation.build(context)
|
209
|
-
when :tag_resource
|
210
|
-
Aws::SecurityHub::Endpoints::TagResource.build(context)
|
211
|
-
when :untag_resource
|
212
|
-
Aws::SecurityHub::Endpoints::UntagResource.build(context)
|
213
|
-
when :update_action_target
|
214
|
-
Aws::SecurityHub::Endpoints::UpdateActionTarget.build(context)
|
215
|
-
when :update_configuration_policy
|
216
|
-
Aws::SecurityHub::Endpoints::UpdateConfigurationPolicy.build(context)
|
217
|
-
when :update_finding_aggregator
|
218
|
-
Aws::SecurityHub::Endpoints::UpdateFindingAggregator.build(context)
|
219
|
-
when :update_findings
|
220
|
-
Aws::SecurityHub::Endpoints::UpdateFindings.build(context)
|
221
|
-
when :update_insight
|
222
|
-
Aws::SecurityHub::Endpoints::UpdateInsight.build(context)
|
223
|
-
when :update_organization_configuration
|
224
|
-
Aws::SecurityHub::Endpoints::UpdateOrganizationConfiguration.build(context)
|
225
|
-
when :update_security_control
|
226
|
-
Aws::SecurityHub::Endpoints::UpdateSecurityControl.build(context)
|
227
|
-
when :update_security_hub_configuration
|
228
|
-
Aws::SecurityHub::Endpoints::UpdateSecurityHubConfiguration.build(context)
|
229
|
-
when :update_standards_control
|
230
|
-
Aws::SecurityHub::Endpoints::UpdateStandardsControl.build(context)
|
231
|
-
end
|
232
|
-
end
|
233
70
|
end
|
234
71
|
|
235
72
|
def add_handlers(handlers, _config)
|
@@ -425,18 +425,12 @@ module Aws::SecurityHub
|
|
425
425
|
include Aws::Structure
|
426
426
|
end
|
427
427
|
|
428
|
-
# One or more actions
|
429
|
-
# defined criteria of
|
428
|
+
# One or more actions that Security Hub takes when a finding matches the
|
429
|
+
# defined criteria of a rule.
|
430
430
|
#
|
431
431
|
# @!attribute [rw] type
|
432
|
-
# Specifies
|
433
|
-
#
|
434
|
-
# of namespace/category/classifier. For more information, see [Types
|
435
|
-
# taxonomy for ASFF][1] in the *Security Hub User Guide*.
|
436
|
-
#
|
437
|
-
#
|
438
|
-
#
|
439
|
-
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format-type-taxonomy.html
|
432
|
+
# Specifies the type of action that Security Hub takes when a finding
|
433
|
+
# matches the defined criteria of a rule.
|
440
434
|
# @return [String]
|
441
435
|
#
|
442
436
|
# @!attribute [rw] finding_fields_update
|
@@ -865,7 +859,7 @@ module Aws::SecurityHub
|
|
865
859
|
# The identifier for the given resource type. For Amazon Web Services
|
866
860
|
# resources that are identified by Amazon Resource Names (ARNs), this
|
867
861
|
# is the ARN. For Amazon Web Services resources that lack ARNs, this
|
868
|
-
# is the identifier as defined by the Amazon Web
|
862
|
+
# is the identifier as defined by the Amazon Web Services service that
|
869
863
|
# created the resource. For non-Amazon Web Services resources, this is
|
870
864
|
# a unique identifier that is associated with the resource.
|
871
865
|
#
|
@@ -3299,9 +3293,9 @@ module Aws::SecurityHub
|
|
3299
3293
|
# @!attribute [rw] lifecycle
|
3300
3294
|
# Defines when a protected resource is transitioned to cold storage
|
3301
3295
|
# and when it expires. Backup transitions and expires backups
|
3302
|
-
# automatically according to the lifecycle that you define. If you
|
3303
|
-
#
|
3304
|
-
# source backup to the destination backup.
|
3296
|
+
# automatically according to the lifecycle that you define. If you
|
3297
|
+
# don't specify a lifecycle, Backup applies the lifecycle policy of
|
3298
|
+
# the source backup to the destination backup.
|
3305
3299
|
#
|
3306
3300
|
# Backups transitioned to cold storage must be stored in cold storage
|
3307
3301
|
# for a minimum of 90 days.
|
@@ -3366,9 +3360,9 @@ module Aws::SecurityHub
|
|
3366
3360
|
# @!attribute [rw] lifecycle
|
3367
3361
|
# Defines when a protected resource is transitioned to cold storage
|
3368
3362
|
# and when it expires. Backup transitions and expires backups
|
3369
|
-
# automatically according to the lifecycle that you define. If you
|
3370
|
-
#
|
3371
|
-
# source backup to the destination backup.
|
3363
|
+
# automatically according to the lifecycle that you define. If you
|
3364
|
+
# don't specify a lifecycle, Backup applies the lifecycle policy of
|
3365
|
+
# the source backup to the destination backup.
|
3372
3366
|
#
|
3373
3367
|
# Backups transitioned to cold storage must be stored in cold storage
|
3374
3368
|
# for a minimum of 90 days.
|
@@ -3409,7 +3403,7 @@ module Aws::SecurityHub
|
|
3409
3403
|
# @!attribute [rw] encryption_key_arn
|
3410
3404
|
# The unique ARN associated with the server-side encryption key. You
|
3411
3405
|
# can specify a key to encrypt your backups from services that support
|
3412
|
-
# full Backup management. If you
|
3406
|
+
# full Backup management. If you don't specify a key, Backup creates
|
3413
3407
|
# an KMS key for you by default.
|
3414
3408
|
# @return [String]
|
3415
3409
|
#
|
@@ -10075,7 +10069,7 @@ module Aws::SecurityHub
|
|
10075
10069
|
# active container instance that meets all of the task placement
|
10076
10070
|
# constraints that are specified in the cluster. The service scheduler
|
10077
10071
|
# also evaluates the task placement constraints for running tasks and
|
10078
|
-
# stops tasks that
|
10072
|
+
# stops tasks that don't meet the placement constraints.
|
10079
10073
|
#
|
10080
10074
|
# Valid values: `REPLICA` \| `DAEMON`
|
10081
10075
|
# @return [String]
|
@@ -16283,7 +16277,7 @@ module Aws::SecurityHub
|
|
16283
16277
|
# **Oracle**
|
16284
16278
|
#
|
16285
16279
|
# Contains the Oracle System ID (SID) of the created DB instance. Not
|
16286
|
-
# shown when the returned parameters
|
16280
|
+
# shown when the returned parameters don't apply to an Oracle DB
|
16287
16281
|
# instance.
|
16288
16282
|
# @return [String]
|
16289
16283
|
#
|
@@ -20542,7 +20536,7 @@ module Aws::SecurityHub
|
|
20542
20536
|
# * `Compliance.Status` changes from `PASSED` to `FAILED`,
|
20543
20537
|
# `WARNING`, or `NOT_AVAILABLE`.
|
20544
20538
|
#
|
20545
|
-
# * `SUPPRESSED` - Indicates that you reviewed the finding and
|
20539
|
+
# * `SUPPRESSED` - Indicates that you reviewed the finding and don't
|
20546
20540
|
# believe that any action is needed.
|
20547
20541
|
#
|
20548
20542
|
# The workflow status of a `SUPPRESSED` finding does not change if
|
@@ -20647,7 +20641,7 @@ module Aws::SecurityHub
|
|
20647
20641
|
#
|
20648
20642
|
# @!attribute [rw] compliance_security_control_id
|
20649
20643
|
# The unique identifier of a control across standards. Values for this
|
20650
|
-
# field typically consist of an Amazon Web
|
20644
|
+
# field typically consist of an Amazon Web Services service and a
|
20651
20645
|
# number, such as APIGateway.5.
|
20652
20646
|
# @return [Array<Types::StringFilter>]
|
20653
20647
|
#
|
@@ -21887,7 +21881,7 @@ module Aws::SecurityHub
|
|
21887
21881
|
# counted.
|
21888
21882
|
#
|
21889
21883
|
# `ActivatedRule`\|`OverrideAction` applies only when updating or
|
21890
|
-
# adding a `RuleGroup` to a web ACL. In this case you
|
21884
|
+
# adding a `RuleGroup` to a web ACL. In this case you don't use
|
21891
21885
|
# `ActivatedRule` `Action`. For all other update requests,
|
21892
21886
|
# `ActivatedRule` `Action` is used instead of `ActivatedRule`
|
21893
21887
|
# `OverrideAction`.
|
@@ -21897,7 +21891,7 @@ module Aws::SecurityHub
|
|
21897
21891
|
# Specifies the order in which the rules in a web ACL are evaluated.
|
21898
21892
|
# Rules with a lower value for `Priority` are evaluated before rules
|
21899
21893
|
# with a higher value. The value must be a unique integer. If you add
|
21900
|
-
# multiple rules to a web ACL, the values
|
21894
|
+
# multiple rules to a web ACL, the values don't need to be
|
21901
21895
|
# consecutive.
|
21902
21896
|
# @return [Integer]
|
21903
21897
|
#
|
@@ -23160,7 +23154,7 @@ module Aws::SecurityHub
|
|
23160
23154
|
# @!attribute [rw] security_control_id
|
23161
23155
|
# Typically provides the unique identifier of a control across
|
23162
23156
|
# standards. For Security Hub controls, this field consists of an
|
23163
|
-
# Amazon Web
|
23157
|
+
# Amazon Web Services service and a unique number, such as
|
23164
23158
|
# `APIGateway.5`.
|
23165
23159
|
# @return [String]
|
23166
23160
|
#
|
@@ -23703,12 +23697,12 @@ module Aws::SecurityHub
|
|
23703
23697
|
#
|
23704
23698
|
# @!attribute [rw] regions
|
23705
23699
|
# If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this
|
23706
|
-
# is a space-separated list of Regions that
|
23707
|
-
# to the
|
23700
|
+
# is a space-separated list of Regions that don't replicate and send
|
23701
|
+
# findings to the home Region.
|
23708
23702
|
#
|
23709
23703
|
# If `RegionLinkingMode` is `SPECIFIED_REGIONS`, then this is a
|
23710
|
-
# space-separated list of Regions that do
|
23711
|
-
#
|
23704
|
+
# space-separated list of Regions that do replicate and send findings
|
23705
|
+
# to the home Region.
|
23712
23706
|
#
|
23713
23707
|
# An `InvalidInputException` error results if you populate this field
|
23714
23708
|
# while `RegionLinkingMode` is `NO_REGIONS`.
|
@@ -23725,11 +23719,13 @@ module Aws::SecurityHub
|
|
23725
23719
|
|
23726
23720
|
# @!attribute [rw] finding_aggregator_arn
|
23727
23721
|
# The ARN of the finding aggregator. You use the finding aggregator
|
23728
|
-
# ARN to retrieve details for, update, and stop
|
23722
|
+
# ARN to retrieve details for, update, and stop cross-Region
|
23723
|
+
# aggregation.
|
23729
23724
|
# @return [String]
|
23730
23725
|
#
|
23731
23726
|
# @!attribute [rw] finding_aggregation_region
|
23732
|
-
# The
|
23727
|
+
# The home Region. Findings generated in linked Regions are replicated
|
23728
|
+
# and sent to the home Region.
|
23733
23729
|
# @return [String]
|
23734
23730
|
#
|
23735
23731
|
# @!attribute [rw] region_linking_mode
|
@@ -24655,7 +24651,7 @@ module Aws::SecurityHub
|
|
24655
24651
|
#
|
24656
24652
|
# @!attribute [rw] enable_default_standards
|
24657
24653
|
# Whether to enable the security standards that Security Hub has
|
24658
|
-
# designated as automatically enabled. If you
|
24654
|
+
# designated as automatically enabled. If you don't provide a value
|
24659
24655
|
# for `EnableDefaultStandards`, it is set to `true`. To not enable the
|
24660
24656
|
# automatically enabled standards, set `EnableDefaultStandards` to
|
24661
24657
|
# `false`.
|
@@ -24781,8 +24777,9 @@ module Aws::SecurityHub
|
|
24781
24777
|
include Aws::Structure
|
24782
24778
|
end
|
24783
24779
|
|
24784
|
-
# A finding aggregator
|
24785
|
-
#
|
24780
|
+
# A finding aggregator is a Security Hub resource that specifies
|
24781
|
+
# cross-Region aggregation settings, including the home Region and any
|
24782
|
+
# linked Regions.
|
24786
24783
|
#
|
24787
24784
|
# @!attribute [rw] finding_aggregator_arn
|
24788
24785
|
# The ARN of the finding aggregator. You use the finding aggregator
|
@@ -24839,7 +24836,7 @@ module Aws::SecurityHub
|
|
24839
24836
|
#
|
24840
24837
|
# @!attribute [rw] update_source
|
24841
24838
|
# Identifies the source of the event that changed the finding. For
|
24842
|
-
# example, an integrated Amazon Web
|
24839
|
+
# example, an integrated Amazon Web Services service or third-party
|
24843
24840
|
# partner integration may call [ `BatchImportFindings` ][1], or an
|
24844
24841
|
# Security Hub customer may call [ `BatchUpdateFindings` ][2].
|
24845
24842
|
#
|
@@ -24917,8 +24914,8 @@ module Aws::SecurityHub
|
|
24917
24914
|
#
|
24918
24915
|
# @!attribute [rw] type
|
24919
24916
|
# Describes the type of finding change event, such as a call to [
|
24920
|
-
# `BatchImportFindings` ][1] (by an integrated Amazon Web
|
24921
|
-
#
|
24917
|
+
# `BatchImportFindings` ][1] (by an integrated Amazon Web Services
|
24918
|
+
# service or third party partner integration) or [
|
24922
24919
|
# `BatchUpdateFindings` ][2] (by a Security Hub customer).
|
24923
24920
|
#
|
24924
24921
|
#
|
@@ -25442,7 +25439,8 @@ module Aws::SecurityHub
|
|
25442
25439
|
# @return [String]
|
25443
25440
|
#
|
25444
25441
|
# @!attribute [rw] finding_aggregation_region
|
25445
|
-
# The
|
25442
|
+
# The home Region. Findings generated in linked Regions are replicated
|
25443
|
+
# and sent to the home Region.
|
25446
25444
|
# @return [String]
|
25447
25445
|
#
|
25448
25446
|
# @!attribute [rw] region_linking_mode
|
@@ -25681,7 +25679,7 @@ module Aws::SecurityHub
|
|
25681
25679
|
end
|
25682
25680
|
|
25683
25681
|
# @!attribute [rw] insight_arns
|
25684
|
-
# The ARNs of the insights to describe. If you
|
25682
|
+
# The ARNs of the insights to describe. If you don't provide any
|
25685
25683
|
# insight ARNs, then `GetInsights` returns all of your custom
|
25686
25684
|
# insights. It does not return any managed insights.
|
25687
25685
|
# @return [Array<String>]
|
@@ -27637,8 +27635,8 @@ module Aws::SecurityHub
|
|
27637
27635
|
# @note Policy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Policy corresponding to the set member.
|
27638
27636
|
#
|
27639
27637
|
# @!attribute [rw] security_hub
|
27640
|
-
# The Amazon Web
|
27641
|
-
# to.
|
27638
|
+
# The Amazon Web Services service that the configuration policy
|
27639
|
+
# applies to.
|
27642
27640
|
# @return [Types::SecurityHubPolicy]
|
27643
27641
|
#
|
27644
27642
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Policy AWS API Documentation
|
@@ -28772,7 +28770,7 @@ module Aws::SecurityHub
|
|
28772
28770
|
# @return [String]
|
28773
28771
|
#
|
28774
28772
|
# @!attribute [rw] destination_prefix_list_id
|
28775
|
-
# The prefix of the destination Amazon Web
|
28773
|
+
# The prefix of the destination Amazon Web Services service.
|
28776
28774
|
# @return [String]
|
28777
28775
|
#
|
28778
28776
|
# @!attribute [rw] egress_only_internet_gateway_id
|
@@ -29287,7 +29285,7 @@ module Aws::SecurityHub
|
|
29287
29285
|
#
|
29288
29286
|
# @!attribute [rw] security_control_id
|
29289
29287
|
# The unique identifier of a security control across standards. Values
|
29290
|
-
# for this field typically consist of an Amazon Web
|
29288
|
+
# for this field typically consist of an Amazon Web Services service
|
29291
29289
|
# name and a number, such as APIGateway.3.
|
29292
29290
|
# @return [String]
|
29293
29291
|
#
|
@@ -29400,7 +29398,7 @@ module Aws::SecurityHub
|
|
29400
29398
|
#
|
29401
29399
|
# @!attribute [rw] security_control_id
|
29402
29400
|
# The unique identifier of a security control across standards. Values
|
29403
|
-
# for this field typically consist of an Amazon Web
|
29401
|
+
# for this field typically consist of an Amazon Web Services service
|
29404
29402
|
# name and a number (for example, APIGateway.3). This parameter
|
29405
29403
|
# differs from `SecurityControlArn`, which is a unique Amazon Resource
|
29406
29404
|
# Name (ARN) assigned to a control. The ARN references the security
|
@@ -29640,7 +29638,7 @@ module Aws::SecurityHub
|
|
29640
29638
|
# * `CRITICAL` - The issue must be remediated immediately to avoid it
|
29641
29639
|
# escalating.
|
29642
29640
|
#
|
29643
|
-
# If you provide `Normalized` and
|
29641
|
+
# If you provide `Normalized` and don't provide `Label`, then `Label`
|
29644
29642
|
# is set automatically as follows.
|
29645
29643
|
#
|
29646
29644
|
# * 0 - `INFORMATIONAL`
|
@@ -29660,7 +29658,7 @@ module Aws::SecurityHub
|
|
29660
29658
|
#
|
29661
29659
|
# The value of `Normalized` can be an integer between `0` and `100`.
|
29662
29660
|
#
|
29663
|
-
# If you provide `Label` and
|
29661
|
+
# If you provide `Label` and don't provide `Normalized`, then
|
29664
29662
|
# `Normalized` is set automatically as follows.
|
29665
29663
|
#
|
29666
29664
|
# * `INFORMATIONAL` - 0
|
@@ -29698,7 +29696,7 @@ module Aws::SecurityHub
|
|
29698
29696
|
# The normalized severity for the finding. This attribute is to be
|
29699
29697
|
# deprecated in favor of `Label`.
|
29700
29698
|
#
|
29701
|
-
# If you provide `Normalized` and
|
29699
|
+
# If you provide `Normalized` and don't provide `Label`, `Label` is
|
29702
29700
|
# set automatically as follows.
|
29703
29701
|
#
|
29704
29702
|
# * 0 - `INFORMATIONAL`
|
@@ -29947,7 +29945,7 @@ module Aws::SecurityHub
|
|
29947
29945
|
#
|
29948
29946
|
# @!attribute [rw] security_control_id
|
29949
29947
|
# The unique identifier of a security control across standards. Values
|
29950
|
-
# for this field typically consist of an Amazon Web
|
29948
|
+
# for this field typically consist of an Amazon Web Services service
|
29951
29949
|
# name and a number, such as APIGateway.3.
|
29952
29950
|
# @return [String]
|
29953
29951
|
#
|
@@ -30048,7 +30046,7 @@ module Aws::SecurityHub
|
|
30048
30046
|
#
|
30049
30047
|
# @!attribute [rw] security_control_id
|
30050
30048
|
# A unique standard-agnostic identifier for a control. Values for this
|
30051
|
-
# field typically consist of an Amazon Web
|
30049
|
+
# field typically consist of an Amazon Web Services service and a
|
30052
30050
|
# number, such as APIGateway.5. This field doesn't reference a
|
30053
30051
|
# specific standard.
|
30054
30052
|
# @return [String]
|
@@ -31156,12 +31154,12 @@ module Aws::SecurityHub
|
|
31156
31154
|
#
|
31157
31155
|
# @!attribute [rw] regions
|
31158
31156
|
# If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this
|
31159
|
-
# is a space-separated list of Regions that
|
31160
|
-
# to the
|
31157
|
+
# is a space-separated list of Regions that don't replicate and send
|
31158
|
+
# findings to the home Region.
|
31161
31159
|
#
|
31162
31160
|
# If `RegionLinkingMode` is `SPECIFIED_REGIONS`, then this is a
|
31163
|
-
# space-separated list of Regions that do
|
31164
|
-
#
|
31161
|
+
# space-separated list of Regions that do replicate and send findings
|
31162
|
+
# to the home Region.
|
31165
31163
|
#
|
31166
31164
|
# An `InvalidInputException` error results if you populate this field
|
31167
31165
|
# while `RegionLinkingMode` is `NO_REGIONS`.
|
@@ -31182,7 +31180,8 @@ module Aws::SecurityHub
|
|
31182
31180
|
# @return [String]
|
31183
31181
|
#
|
31184
31182
|
# @!attribute [rw] finding_aggregation_region
|
31185
|
-
# The
|
31183
|
+
# The home Region. Findings generated in linked Regions are replicated
|
31184
|
+
# and sent to the home Region.
|
31186
31185
|
# @return [String]
|
31187
31186
|
#
|
31188
31187
|
# @!attribute [rw] region_linking_mode
|
@@ -31757,7 +31756,7 @@ module Aws::SecurityHub
|
|
31757
31756
|
# the security issue. Used when the initial reviewer is not the
|
31758
31757
|
# resource owner, and needs intervention from the resource owner.
|
31759
31758
|
#
|
31760
|
-
# * `SUPPRESSED` - Indicates that you reviewed the finding and
|
31759
|
+
# * `SUPPRESSED` - Indicates that you reviewed the finding and don't
|
31761
31760
|
# believe that any action is needed. The finding is no longer
|
31762
31761
|
# updated.
|
31763
31762
|
#
|
@@ -31801,7 +31800,7 @@ module Aws::SecurityHub
|
|
31801
31800
|
# * `RESOLVED` - The finding was reviewed and remediated and is now
|
31802
31801
|
# considered resolved.
|
31803
31802
|
#
|
31804
|
-
# * `SUPPRESSED` - Indicates that you reviewed the finding and
|
31803
|
+
# * `SUPPRESSED` - Indicates that you reviewed the finding and don't
|
31805
31804
|
# believe that any action is needed. The finding is no longer
|
31806
31805
|
# updated.
|
31807
31806
|
# @return [String]
|
data/lib/aws-sdk-securityhub.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-securityhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.122.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|