aws-sdk-securityhub 1.136.0 → 1.137.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +2070 -456
- data/lib/aws-sdk-securityhub/client_api.rb +1081 -0
- data/lib/aws-sdk-securityhub/errors.rb +84 -0
- data/lib/aws-sdk-securityhub/types.rb +2364 -58
- data/lib/aws-sdk-securityhub.rb +1 -1
- data/sig/client.rbs +1094 -343
- data/sig/errors.rbs +16 -0
- data/sig/types.rbs +696 -2
- metadata +1 -1
@@ -441,6 +441,21 @@ module Aws::SecurityHub
|
|
441
441
|
include Aws::Structure
|
442
442
|
end
|
443
443
|
|
444
|
+
# Specifies a cross-Region data aggregation configuration, including the
|
445
|
+
# aggregation Region and any linked Regions.
|
446
|
+
#
|
447
|
+
# @!attribute [rw] aggregator_v2_arn
|
448
|
+
# The ARN of the aggregatorV2.
|
449
|
+
# @return [String]
|
450
|
+
#
|
451
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AggregatorV2 AWS API Documentation
|
452
|
+
#
|
453
|
+
class AggregatorV2 < Struct.new(
|
454
|
+
:aggregator_v2_arn)
|
455
|
+
SENSITIVE = []
|
456
|
+
include Aws::Structure
|
457
|
+
end
|
458
|
+
|
444
459
|
# Information about an enabled security standard in which a security
|
445
460
|
# control is enabled.
|
446
461
|
#
|
@@ -577,6 +592,46 @@ module Aws::SecurityHub
|
|
577
592
|
include Aws::Structure
|
578
593
|
end
|
579
594
|
|
595
|
+
# Allows you to customize security response workflows.
|
596
|
+
#
|
597
|
+
# @!attribute [rw] type
|
598
|
+
# The category of action to be executed by the automation rule.
|
599
|
+
# @return [String]
|
600
|
+
#
|
601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AutomationRulesActionTypeObjectV2 AWS API Documentation
|
602
|
+
#
|
603
|
+
class AutomationRulesActionTypeObjectV2 < Struct.new(
|
604
|
+
:type)
|
605
|
+
SENSITIVE = []
|
606
|
+
include Aws::Structure
|
607
|
+
end
|
608
|
+
|
609
|
+
# Allows you to configure automated responses.
|
610
|
+
#
|
611
|
+
# @!attribute [rw] type
|
612
|
+
# The category of action to be executed by the automation rule.
|
613
|
+
# @return [String]
|
614
|
+
#
|
615
|
+
# @!attribute [rw] finding_fields_update
|
616
|
+
# The changes to be applied to fields in a security finding when an
|
617
|
+
# automation rule is triggered.
|
618
|
+
# @return [Types::AutomationRulesFindingFieldsUpdateV2]
|
619
|
+
#
|
620
|
+
# @!attribute [rw] external_integration_configuration
|
621
|
+
# The settings for integrating automation rule actions with external
|
622
|
+
# systems or service.
|
623
|
+
# @return [Types::ExternalIntegrationConfiguration]
|
624
|
+
#
|
625
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AutomationRulesActionV2 AWS API Documentation
|
626
|
+
#
|
627
|
+
class AutomationRulesActionV2 < Struct.new(
|
628
|
+
:type,
|
629
|
+
:finding_fields_update,
|
630
|
+
:external_integration_configuration)
|
631
|
+
SENSITIVE = []
|
632
|
+
include Aws::Structure
|
633
|
+
end
|
634
|
+
|
580
635
|
# Defines the configuration of an automation rule.
|
581
636
|
#
|
582
637
|
# @!attribute [rw] rule_arn
|
@@ -729,6 +784,34 @@ module Aws::SecurityHub
|
|
729
784
|
include Aws::Structure
|
730
785
|
end
|
731
786
|
|
787
|
+
# Allows you to define the structure for modifying specific fields in
|
788
|
+
# security findings.
|
789
|
+
#
|
790
|
+
# @!attribute [rw] severity_id
|
791
|
+
# The severity level to be assigned to findings that match the
|
792
|
+
# automation rule criteria.
|
793
|
+
# @return [Integer]
|
794
|
+
#
|
795
|
+
# @!attribute [rw] comment
|
796
|
+
# Notes or contextual information for findings that are modified by
|
797
|
+
# the automation rule.
|
798
|
+
# @return [String]
|
799
|
+
#
|
800
|
+
# @!attribute [rw] status_id
|
801
|
+
# The status to be applied to findings that match automation rule
|
802
|
+
# criteria.
|
803
|
+
# @return [Integer]
|
804
|
+
#
|
805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AutomationRulesFindingFieldsUpdateV2 AWS API Documentation
|
806
|
+
#
|
807
|
+
class AutomationRulesFindingFieldsUpdateV2 < Struct.new(
|
808
|
+
:severity_id,
|
809
|
+
:comment,
|
810
|
+
:status_id)
|
811
|
+
SENSITIVE = []
|
812
|
+
include Aws::Structure
|
813
|
+
end
|
814
|
+
|
732
815
|
# The criteria that determine which findings a rule applies to.
|
733
816
|
#
|
734
817
|
# @!attribute [rw] product_arn
|
@@ -1188,6 +1271,62 @@ module Aws::SecurityHub
|
|
1188
1271
|
include Aws::Structure
|
1189
1272
|
end
|
1190
1273
|
|
1274
|
+
# Includes essential metadata information about automation rules.
|
1275
|
+
#
|
1276
|
+
# @!attribute [rw] rule_arn
|
1277
|
+
# The ARN of the automation rule.
|
1278
|
+
# @return [String]
|
1279
|
+
#
|
1280
|
+
# @!attribute [rw] rule_id
|
1281
|
+
# The ID of the automation rule.
|
1282
|
+
# @return [String]
|
1283
|
+
#
|
1284
|
+
# @!attribute [rw] rule_order
|
1285
|
+
# The value for the rule priority.
|
1286
|
+
# @return [Float]
|
1287
|
+
#
|
1288
|
+
# @!attribute [rw] rule_name
|
1289
|
+
# The name of the automation rule.
|
1290
|
+
# @return [String]
|
1291
|
+
#
|
1292
|
+
# @!attribute [rw] rule_status
|
1293
|
+
# The status of the automation rule.
|
1294
|
+
# @return [String]
|
1295
|
+
#
|
1296
|
+
# @!attribute [rw] description
|
1297
|
+
# An explanation for the purpose and funcitonality of the automation
|
1298
|
+
# rule.
|
1299
|
+
# @return [String]
|
1300
|
+
#
|
1301
|
+
# @!attribute [rw] actions
|
1302
|
+
# The list of action to be performed when the rule criteria is met.
|
1303
|
+
# @return [Array<Types::AutomationRulesActionTypeObjectV2>]
|
1304
|
+
#
|
1305
|
+
# @!attribute [rw] created_at
|
1306
|
+
# The timestamp for when the automation rule was created.
|
1307
|
+
# @return [Time]
|
1308
|
+
#
|
1309
|
+
# @!attribute [rw] updated_at
|
1310
|
+
# The timestamp for the most recent modification to the automation
|
1311
|
+
# rule.
|
1312
|
+
# @return [Time]
|
1313
|
+
#
|
1314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AutomationRulesMetadataV2 AWS API Documentation
|
1315
|
+
#
|
1316
|
+
class AutomationRulesMetadataV2 < Struct.new(
|
1317
|
+
:rule_arn,
|
1318
|
+
:rule_id,
|
1319
|
+
:rule_order,
|
1320
|
+
:rule_name,
|
1321
|
+
:rule_status,
|
1322
|
+
:description,
|
1323
|
+
:actions,
|
1324
|
+
:created_at,
|
1325
|
+
:updated_at)
|
1326
|
+
SENSITIVE = []
|
1327
|
+
include Aws::Structure
|
1328
|
+
end
|
1329
|
+
|
1191
1330
|
# Information about an Availability Zone.
|
1192
1331
|
#
|
1193
1332
|
# @!attribute [rw] zone_name
|
@@ -21953,6 +22092,116 @@ module Aws::SecurityHub
|
|
21953
22092
|
include Aws::Structure
|
21954
22093
|
end
|
21955
22094
|
|
22095
|
+
# The list of findings that were updated.
|
22096
|
+
#
|
22097
|
+
# @!attribute [rw] finding_identifier
|
22098
|
+
# The finding identifier of a processed finding.
|
22099
|
+
# @return [Types::OcsfFindingIdentifier]
|
22100
|
+
#
|
22101
|
+
# @!attribute [rw] metadata_uid
|
22102
|
+
# The metadata.uid of a processed finding.
|
22103
|
+
# @return [String]
|
22104
|
+
#
|
22105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchUpdateFindingsV2ProcessedFinding AWS API Documentation
|
22106
|
+
#
|
22107
|
+
class BatchUpdateFindingsV2ProcessedFinding < Struct.new(
|
22108
|
+
:finding_identifier,
|
22109
|
+
:metadata_uid)
|
22110
|
+
SENSITIVE = []
|
22111
|
+
include Aws::Structure
|
22112
|
+
end
|
22113
|
+
|
22114
|
+
# @!attribute [rw] metadata_uids
|
22115
|
+
# The list of finding `metadata.uid` to indicate findings to update.
|
22116
|
+
# Finding `metadata.uid` is a globally unique identifier associated
|
22117
|
+
# with the finding. Customers cannot use `MetadataUids` together with
|
22118
|
+
# `FindingIdentifiers`.
|
22119
|
+
# @return [Array<String>]
|
22120
|
+
#
|
22121
|
+
# @!attribute [rw] finding_identifiers
|
22122
|
+
# Provides information to identify a specific V2 finding.
|
22123
|
+
# @return [Array<Types::OcsfFindingIdentifier>]
|
22124
|
+
#
|
22125
|
+
# @!attribute [rw] comment
|
22126
|
+
# The updated value for a user provided comment about the finding.
|
22127
|
+
# Minimum character length 1. Maximum character length 512.
|
22128
|
+
# @return [String]
|
22129
|
+
#
|
22130
|
+
# @!attribute [rw] severity_id
|
22131
|
+
# The updated value for the normalized severity identifier. The
|
22132
|
+
# severity ID is an integer with the allowed enum values \[0, 1, 2, 3,
|
22133
|
+
# 4, 5, 99\]. When customer provides the updated severity ID, the
|
22134
|
+
# string sibling severity will automatically be updated in the
|
22135
|
+
# finding.
|
22136
|
+
# @return [Integer]
|
22137
|
+
#
|
22138
|
+
# @!attribute [rw] status_id
|
22139
|
+
# The updated value for the normalized status identifier. The status
|
22140
|
+
# ID is an integer with the allowed enum values \[0, 1, 2, 3, 4, 5, 6,
|
22141
|
+
# 99\]. When customer provides the updated status ID, the string
|
22142
|
+
# sibling status will automatically be updated in the finding.
|
22143
|
+
# @return [Integer]
|
22144
|
+
#
|
22145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchUpdateFindingsV2Request AWS API Documentation
|
22146
|
+
#
|
22147
|
+
class BatchUpdateFindingsV2Request < Struct.new(
|
22148
|
+
:metadata_uids,
|
22149
|
+
:finding_identifiers,
|
22150
|
+
:comment,
|
22151
|
+
:severity_id,
|
22152
|
+
:status_id)
|
22153
|
+
SENSITIVE = []
|
22154
|
+
include Aws::Structure
|
22155
|
+
end
|
22156
|
+
|
22157
|
+
# @!attribute [rw] processed_findings
|
22158
|
+
# The list of findings that were updated successfully.
|
22159
|
+
# @return [Array<Types::BatchUpdateFindingsV2ProcessedFinding>]
|
22160
|
+
#
|
22161
|
+
# @!attribute [rw] unprocessed_findings
|
22162
|
+
# The list of V2 findings that were not updated.
|
22163
|
+
# @return [Array<Types::BatchUpdateFindingsV2UnprocessedFinding>]
|
22164
|
+
#
|
22165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchUpdateFindingsV2Response AWS API Documentation
|
22166
|
+
#
|
22167
|
+
class BatchUpdateFindingsV2Response < Struct.new(
|
22168
|
+
:processed_findings,
|
22169
|
+
:unprocessed_findings)
|
22170
|
+
SENSITIVE = []
|
22171
|
+
include Aws::Structure
|
22172
|
+
end
|
22173
|
+
|
22174
|
+
# The list of findings that were not updated.
|
22175
|
+
#
|
22176
|
+
# @!attribute [rw] finding_identifier
|
22177
|
+
# The finding identifier of an unprocessed finding.
|
22178
|
+
# @return [Types::OcsfFindingIdentifier]
|
22179
|
+
#
|
22180
|
+
# @!attribute [rw] metadata_uid
|
22181
|
+
# The metadata.uid of an unprocessed finding.
|
22182
|
+
# @return [String]
|
22183
|
+
#
|
22184
|
+
# @!attribute [rw] error_code
|
22185
|
+
# Indicates the specific type of error preventing successful
|
22186
|
+
# processing of a finding during a batch update operation.
|
22187
|
+
# @return [String]
|
22188
|
+
#
|
22189
|
+
# @!attribute [rw] error_message
|
22190
|
+
# A detailed description of why a finding could not be processed
|
22191
|
+
# during a batch update operation.
|
22192
|
+
# @return [String]
|
22193
|
+
#
|
22194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchUpdateFindingsV2UnprocessedFinding AWS API Documentation
|
22195
|
+
#
|
22196
|
+
class BatchUpdateFindingsV2UnprocessedFinding < Struct.new(
|
22197
|
+
:finding_identifier,
|
22198
|
+
:metadata_uid,
|
22199
|
+
:error_code,
|
22200
|
+
:error_message)
|
22201
|
+
SENSITIVE = []
|
22202
|
+
include Aws::Structure
|
22203
|
+
end
|
22204
|
+
|
21956
22205
|
# @!attribute [rw] standards_control_association_updates
|
21957
22206
|
# Updates the enablement status of a security control in a specified
|
21958
22207
|
# standard.
|
@@ -22279,6 +22528,45 @@ module Aws::SecurityHub
|
|
22279
22528
|
include Aws::Structure
|
22280
22529
|
end
|
22281
22530
|
|
22531
|
+
# Enables the creation of filtering criteria for security findings.
|
22532
|
+
#
|
22533
|
+
# @!attribute [rw] string_filters
|
22534
|
+
# Enables filtering based on string field values.
|
22535
|
+
# @return [Array<Types::OcsfStringFilter>]
|
22536
|
+
#
|
22537
|
+
# @!attribute [rw] date_filters
|
22538
|
+
# Enables filtering based on date and timestamp fields.
|
22539
|
+
# @return [Array<Types::OcsfDateFilter>]
|
22540
|
+
#
|
22541
|
+
# @!attribute [rw] boolean_filters
|
22542
|
+
# Enables filtering based on boolean field values.
|
22543
|
+
# @return [Array<Types::OcsfBooleanFilter>]
|
22544
|
+
#
|
22545
|
+
# @!attribute [rw] number_filters
|
22546
|
+
# Enables filtering based on numerical field values.
|
22547
|
+
# @return [Array<Types::OcsfNumberFilter>]
|
22548
|
+
#
|
22549
|
+
# @!attribute [rw] map_filters
|
22550
|
+
# Enables filtering based on map field values.
|
22551
|
+
# @return [Array<Types::OcsfMapFilter>]
|
22552
|
+
#
|
22553
|
+
# @!attribute [rw] operator
|
22554
|
+
# The logical operator used to combine multiple filter conditions.
|
22555
|
+
# @return [String]
|
22556
|
+
#
|
22557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CompositeFilter AWS API Documentation
|
22558
|
+
#
|
22559
|
+
class CompositeFilter < Struct.new(
|
22560
|
+
:string_filters,
|
22561
|
+
:date_filters,
|
22562
|
+
:boolean_filters,
|
22563
|
+
:number_filters,
|
22564
|
+
:map_filters,
|
22565
|
+
:operator)
|
22566
|
+
SENSITIVE = []
|
22567
|
+
include Aws::Structure
|
22568
|
+
end
|
22569
|
+
|
22282
22570
|
# The options for customizing a security control parameter.
|
22283
22571
|
#
|
22284
22572
|
# @note ConfigurationOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigurationOptions corresponding to the set member.
|
@@ -22465,6 +22753,101 @@ module Aws::SecurityHub
|
|
22465
22753
|
include Aws::Structure
|
22466
22754
|
end
|
22467
22755
|
|
22756
|
+
# The request causes conflict with the current state of the service
|
22757
|
+
# resource.
|
22758
|
+
#
|
22759
|
+
# @!attribute [rw] message
|
22760
|
+
# @return [String]
|
22761
|
+
#
|
22762
|
+
# @!attribute [rw] code
|
22763
|
+
# @return [String]
|
22764
|
+
#
|
22765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ConflictException AWS API Documentation
|
22766
|
+
#
|
22767
|
+
class ConflictException < Struct.new(
|
22768
|
+
:message,
|
22769
|
+
:code)
|
22770
|
+
SENSITIVE = []
|
22771
|
+
include Aws::Structure
|
22772
|
+
end
|
22773
|
+
|
22774
|
+
# @!attribute [rw] auth_code
|
22775
|
+
# The authCode retrieved from authUrl to complete the OAuth 2.0
|
22776
|
+
# authorization code flow.
|
22777
|
+
# @return [String]
|
22778
|
+
#
|
22779
|
+
# @!attribute [rw] auth_state
|
22780
|
+
# The authState retrieved from authUrl to complete the OAuth 2.0
|
22781
|
+
# authorization code flow.
|
22782
|
+
# @return [String]
|
22783
|
+
#
|
22784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ConnectorRegistrationsV2Request AWS API Documentation
|
22785
|
+
#
|
22786
|
+
class ConnectorRegistrationsV2Request < Struct.new(
|
22787
|
+
:auth_code,
|
22788
|
+
:auth_state)
|
22789
|
+
SENSITIVE = []
|
22790
|
+
include Aws::Structure
|
22791
|
+
end
|
22792
|
+
|
22793
|
+
# @!attribute [rw] connector_arn
|
22794
|
+
# The Amazon Resource Name (ARN) of the connectorV2.
|
22795
|
+
# @return [String]
|
22796
|
+
#
|
22797
|
+
# @!attribute [rw] connector_id
|
22798
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
22799
|
+
# @return [String]
|
22800
|
+
#
|
22801
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ConnectorRegistrationsV2Response AWS API Documentation
|
22802
|
+
#
|
22803
|
+
class ConnectorRegistrationsV2Response < Struct.new(
|
22804
|
+
:connector_arn,
|
22805
|
+
:connector_id)
|
22806
|
+
SENSITIVE = []
|
22807
|
+
include Aws::Structure
|
22808
|
+
end
|
22809
|
+
|
22810
|
+
# A condensed overview of the connectorV2..
|
22811
|
+
#
|
22812
|
+
# @!attribute [rw] connector_arn
|
22813
|
+
# The Amazon Resource Name (ARN) of the connectorV2.
|
22814
|
+
# @return [String]
|
22815
|
+
#
|
22816
|
+
# @!attribute [rw] connector_id
|
22817
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
22818
|
+
# @return [String]
|
22819
|
+
#
|
22820
|
+
# @!attribute [rw] name
|
22821
|
+
# The Name field contains the user-defined name assigned to the
|
22822
|
+
# integration connector. This helps identify and manage multiple
|
22823
|
+
# connectors within Security Hub.
|
22824
|
+
# @return [String]
|
22825
|
+
#
|
22826
|
+
# @!attribute [rw] description
|
22827
|
+
# The description of the connectorV2.
|
22828
|
+
# @return [String]
|
22829
|
+
#
|
22830
|
+
# @!attribute [rw] provider_summary
|
22831
|
+
# The connectorV2 third party provider configuration summary.
|
22832
|
+
# @return [Types::ProviderSummary]
|
22833
|
+
#
|
22834
|
+
# @!attribute [rw] created_at
|
22835
|
+
# ISO 8601 UTC timestamp for the time create the connectorV2.
|
22836
|
+
# @return [Time]
|
22837
|
+
#
|
22838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ConnectorSummary AWS API Documentation
|
22839
|
+
#
|
22840
|
+
class ConnectorSummary < Struct.new(
|
22841
|
+
:connector_arn,
|
22842
|
+
:connector_id,
|
22843
|
+
:name,
|
22844
|
+
:description,
|
22845
|
+
:provider_summary,
|
22846
|
+
:created_at)
|
22847
|
+
SENSITIVE = []
|
22848
|
+
include Aws::Structure
|
22849
|
+
end
|
22850
|
+
|
22468
22851
|
# Container details related to a finding.
|
22469
22852
|
#
|
22470
22853
|
# @!attribute [rw] container_runtime
|
@@ -22573,6 +22956,63 @@ module Aws::SecurityHub
|
|
22573
22956
|
include Aws::Structure
|
22574
22957
|
end
|
22575
22958
|
|
22959
|
+
# @!attribute [rw] region_linking_mode
|
22960
|
+
# Determines how Regions are linked to an Aggregator V2.
|
22961
|
+
# @return [String]
|
22962
|
+
#
|
22963
|
+
# @!attribute [rw] linked_regions
|
22964
|
+
# The list of Regions that are linked to the aggregation Region.
|
22965
|
+
# @return [Array<String>]
|
22966
|
+
#
|
22967
|
+
# @!attribute [rw] tags
|
22968
|
+
# A list of key-value pairs to be applied to the AggregatorV2.
|
22969
|
+
# @return [Hash<String,String>]
|
22970
|
+
#
|
22971
|
+
# @!attribute [rw] client_token
|
22972
|
+
# A unique identifier used to ensure idempotency.
|
22973
|
+
#
|
22974
|
+
# **A suitable default value is auto-generated.** You should normally
|
22975
|
+
# not need to pass this option.
|
22976
|
+
# @return [String]
|
22977
|
+
#
|
22978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateAggregatorV2Request AWS API Documentation
|
22979
|
+
#
|
22980
|
+
class CreateAggregatorV2Request < Struct.new(
|
22981
|
+
:region_linking_mode,
|
22982
|
+
:linked_regions,
|
22983
|
+
:tags,
|
22984
|
+
:client_token)
|
22985
|
+
SENSITIVE = []
|
22986
|
+
include Aws::Structure
|
22987
|
+
end
|
22988
|
+
|
22989
|
+
# @!attribute [rw] aggregator_v2_arn
|
22990
|
+
# The ARN of the AggregatorV2.
|
22991
|
+
# @return [String]
|
22992
|
+
#
|
22993
|
+
# @!attribute [rw] aggregation_region
|
22994
|
+
# The Amazon Web Services Region where data is aggregated.
|
22995
|
+
# @return [String]
|
22996
|
+
#
|
22997
|
+
# @!attribute [rw] region_linking_mode
|
22998
|
+
# Determines how Regions are linked to an Aggregator V2.
|
22999
|
+
# @return [String]
|
23000
|
+
#
|
23001
|
+
# @!attribute [rw] linked_regions
|
23002
|
+
# The list of Regions that are linked to the aggregation Region.
|
23003
|
+
# @return [Array<String>]
|
23004
|
+
#
|
23005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateAggregatorV2Response AWS API Documentation
|
23006
|
+
#
|
23007
|
+
class CreateAggregatorV2Response < Struct.new(
|
23008
|
+
:aggregator_v2_arn,
|
23009
|
+
:aggregation_region,
|
23010
|
+
:region_linking_mode,
|
23011
|
+
:linked_regions)
|
23012
|
+
SENSITIVE = []
|
23013
|
+
include Aws::Structure
|
23014
|
+
end
|
23015
|
+
|
22576
23016
|
# @!attribute [rw] tags
|
22577
23017
|
# User-defined tags associated with an automation rule.
|
22578
23018
|
# @return [Hash<String,String>]
|
@@ -22653,13 +23093,80 @@ module Aws::SecurityHub
|
|
22653
23093
|
include Aws::Structure
|
22654
23094
|
end
|
22655
23095
|
|
22656
|
-
# @!attribute [rw]
|
22657
|
-
# The name of the
|
22658
|
-
# the following ASCII characters are permitted: `-, ., !, *, /`.
|
23096
|
+
# @!attribute [rw] rule_name
|
23097
|
+
# The name of the V2 automation rule.
|
22659
23098
|
# @return [String]
|
22660
23099
|
#
|
22661
|
-
# @!attribute [rw]
|
22662
|
-
# The
|
23100
|
+
# @!attribute [rw] rule_status
|
23101
|
+
# The status of the V2 automation rule.
|
23102
|
+
# @return [String]
|
23103
|
+
#
|
23104
|
+
# @!attribute [rw] description
|
23105
|
+
# A description of the V2 automation rule.
|
23106
|
+
# @return [String]
|
23107
|
+
#
|
23108
|
+
# @!attribute [rw] rule_order
|
23109
|
+
# The value for the rule priority.
|
23110
|
+
# @return [Float]
|
23111
|
+
#
|
23112
|
+
# @!attribute [rw] criteria
|
23113
|
+
# The filtering type and configuration of the automation rule.
|
23114
|
+
# @return [Types::Criteria]
|
23115
|
+
#
|
23116
|
+
# @!attribute [rw] actions
|
23117
|
+
# A list of actions to be performed when the rule criteria is met.
|
23118
|
+
# @return [Array<Types::AutomationRulesActionV2>]
|
23119
|
+
#
|
23120
|
+
# @!attribute [rw] tags
|
23121
|
+
# A list of key-value pairs associated with the V2 automation rule.
|
23122
|
+
# @return [Hash<String,String>]
|
23123
|
+
#
|
23124
|
+
# @!attribute [rw] client_token
|
23125
|
+
# A unique identifier used to ensure idempotency.
|
23126
|
+
#
|
23127
|
+
# **A suitable default value is auto-generated.** You should normally
|
23128
|
+
# not need to pass this option.
|
23129
|
+
# @return [String]
|
23130
|
+
#
|
23131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateAutomationRuleV2Request AWS API Documentation
|
23132
|
+
#
|
23133
|
+
class CreateAutomationRuleV2Request < Struct.new(
|
23134
|
+
:rule_name,
|
23135
|
+
:rule_status,
|
23136
|
+
:description,
|
23137
|
+
:rule_order,
|
23138
|
+
:criteria,
|
23139
|
+
:actions,
|
23140
|
+
:tags,
|
23141
|
+
:client_token)
|
23142
|
+
SENSITIVE = []
|
23143
|
+
include Aws::Structure
|
23144
|
+
end
|
23145
|
+
|
23146
|
+
# @!attribute [rw] rule_arn
|
23147
|
+
# The ARN of the V2 automation rule.
|
23148
|
+
# @return [String]
|
23149
|
+
#
|
23150
|
+
# @!attribute [rw] rule_id
|
23151
|
+
# The ID of the V2 automation rule.
|
23152
|
+
# @return [String]
|
23153
|
+
#
|
23154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateAutomationRuleV2Response AWS API Documentation
|
23155
|
+
#
|
23156
|
+
class CreateAutomationRuleV2Response < Struct.new(
|
23157
|
+
:rule_arn,
|
23158
|
+
:rule_id)
|
23159
|
+
SENSITIVE = []
|
23160
|
+
include Aws::Structure
|
23161
|
+
end
|
23162
|
+
|
23163
|
+
# @!attribute [rw] name
|
23164
|
+
# The name of the configuration policy. Alphanumeric characters and
|
23165
|
+
# the following ASCII characters are permitted: `-, ., !, *, /`.
|
23166
|
+
# @return [String]
|
23167
|
+
#
|
23168
|
+
# @!attribute [rw] description
|
23169
|
+
# The description of the configuration policy.
|
22663
23170
|
# @return [String]
|
22664
23171
|
#
|
22665
23172
|
# @!attribute [rw] configuration_policy
|
@@ -22750,6 +23257,69 @@ module Aws::SecurityHub
|
|
22750
23257
|
include Aws::Structure
|
22751
23258
|
end
|
22752
23259
|
|
23260
|
+
# @!attribute [rw] name
|
23261
|
+
# The unique name of the connectorV2.
|
23262
|
+
# @return [String]
|
23263
|
+
#
|
23264
|
+
# @!attribute [rw] description
|
23265
|
+
# The description of the connectorV2.
|
23266
|
+
# @return [String]
|
23267
|
+
#
|
23268
|
+
# @!attribute [rw] provider
|
23269
|
+
# The third-party provider’s service configuration.
|
23270
|
+
# @return [Types::ProviderConfiguration]
|
23271
|
+
#
|
23272
|
+
# @!attribute [rw] kms_key_arn
|
23273
|
+
# The Amazon Resource Name (ARN) of KMS key used to encrypt secrets
|
23274
|
+
# for the connectorV2.
|
23275
|
+
# @return [String]
|
23276
|
+
#
|
23277
|
+
# @!attribute [rw] tags
|
23278
|
+
# The tags to add to the connectorV2 when you create.
|
23279
|
+
# @return [Hash<String,String>]
|
23280
|
+
#
|
23281
|
+
# @!attribute [rw] client_token
|
23282
|
+
# A unique identifier used to ensure idempotency.
|
23283
|
+
#
|
23284
|
+
# **A suitable default value is auto-generated.** You should normally
|
23285
|
+
# not need to pass this option.
|
23286
|
+
# @return [String]
|
23287
|
+
#
|
23288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateConnectorV2Request AWS API Documentation
|
23289
|
+
#
|
23290
|
+
class CreateConnectorV2Request < Struct.new(
|
23291
|
+
:name,
|
23292
|
+
:description,
|
23293
|
+
:provider,
|
23294
|
+
:kms_key_arn,
|
23295
|
+
:tags,
|
23296
|
+
:client_token)
|
23297
|
+
SENSITIVE = []
|
23298
|
+
include Aws::Structure
|
23299
|
+
end
|
23300
|
+
|
23301
|
+
# @!attribute [rw] connector_arn
|
23302
|
+
# The Amazon Resource Name (ARN) of the connectorV2.
|
23303
|
+
# @return [String]
|
23304
|
+
#
|
23305
|
+
# @!attribute [rw] connector_id
|
23306
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
23307
|
+
# @return [String]
|
23308
|
+
#
|
23309
|
+
# @!attribute [rw] auth_url
|
23310
|
+
# The Url provide to customers for OAuth auth code flow.
|
23311
|
+
# @return [String]
|
23312
|
+
#
|
23313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateConnectorV2Response AWS API Documentation
|
23314
|
+
#
|
23315
|
+
class CreateConnectorV2Response < Struct.new(
|
23316
|
+
:connector_arn,
|
23317
|
+
:connector_id,
|
23318
|
+
:auth_url)
|
23319
|
+
SENSITIVE = []
|
23320
|
+
include Aws::Structure
|
23321
|
+
end
|
23322
|
+
|
22753
23323
|
# @!attribute [rw] region_linking_mode
|
22754
23324
|
# Indicates whether to aggregate findings from all of the available
|
22755
23325
|
# Regions in the current partition. Also determines whether to
|
@@ -22901,6 +23471,72 @@ module Aws::SecurityHub
|
|
22901
23471
|
include Aws::Structure
|
22902
23472
|
end
|
22903
23473
|
|
23474
|
+
# @!attribute [rw] connector_id
|
23475
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
23476
|
+
# @return [String]
|
23477
|
+
#
|
23478
|
+
# @!attribute [rw] finding_metadata_uid
|
23479
|
+
# The the unique ID for the finding.
|
23480
|
+
# @return [String]
|
23481
|
+
#
|
23482
|
+
# @!attribute [rw] client_token
|
23483
|
+
# The client idempotency token.
|
23484
|
+
#
|
23485
|
+
# **A suitable default value is auto-generated.** You should normally
|
23486
|
+
# not need to pass this option.
|
23487
|
+
# @return [String]
|
23488
|
+
#
|
23489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateTicketV2Request AWS API Documentation
|
23490
|
+
#
|
23491
|
+
class CreateTicketV2Request < Struct.new(
|
23492
|
+
:connector_id,
|
23493
|
+
:finding_metadata_uid,
|
23494
|
+
:client_token)
|
23495
|
+
SENSITIVE = []
|
23496
|
+
include Aws::Structure
|
23497
|
+
end
|
23498
|
+
|
23499
|
+
# @!attribute [rw] ticket_id
|
23500
|
+
# The ID for the ticketv2.
|
23501
|
+
# @return [String]
|
23502
|
+
#
|
23503
|
+
# @!attribute [rw] ticket_src_url
|
23504
|
+
# The url to the created ticket.
|
23505
|
+
# @return [String]
|
23506
|
+
#
|
23507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateTicketV2Response AWS API Documentation
|
23508
|
+
#
|
23509
|
+
class CreateTicketV2Response < Struct.new(
|
23510
|
+
:ticket_id,
|
23511
|
+
:ticket_src_url)
|
23512
|
+
SENSITIVE = []
|
23513
|
+
include Aws::Structure
|
23514
|
+
end
|
23515
|
+
|
23516
|
+
# Defines the parameters and conditions used to evaluate and filter
|
23517
|
+
# security findings.
|
23518
|
+
#
|
23519
|
+
# @note Criteria is a union - when making an API calls you must set exactly one of the members.
|
23520
|
+
#
|
23521
|
+
# @note Criteria is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Criteria corresponding to the set member.
|
23522
|
+
#
|
23523
|
+
# @!attribute [rw] ocsf_finding_criteria
|
23524
|
+
# The filtering conditions that align with OCSF standards.
|
23525
|
+
# @return [Types::OcsfFindingFilters]
|
23526
|
+
#
|
23527
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Criteria AWS API Documentation
|
23528
|
+
#
|
23529
|
+
class Criteria < Struct.new(
|
23530
|
+
:ocsf_finding_criteria,
|
23531
|
+
:unknown)
|
23532
|
+
SENSITIVE = []
|
23533
|
+
include Aws::Structure
|
23534
|
+
include Aws::Structure::Union
|
23535
|
+
|
23536
|
+
class OcsfFindingCriteria < Criteria; end
|
23537
|
+
class Unknown < Criteria; end
|
23538
|
+
end
|
23539
|
+
|
22904
23540
|
# The list of detected instances of sensitive data.
|
22905
23541
|
#
|
22906
23542
|
# @!attribute [rw] count
|
@@ -23115,6 +23751,38 @@ module Aws::SecurityHub
|
|
23115
23751
|
include Aws::Structure
|
23116
23752
|
end
|
23117
23753
|
|
23754
|
+
# @!attribute [rw] aggregator_v2_arn
|
23755
|
+
# The ARN of the Aggregator V2.
|
23756
|
+
# @return [String]
|
23757
|
+
#
|
23758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteAggregatorV2Request AWS API Documentation
|
23759
|
+
#
|
23760
|
+
class DeleteAggregatorV2Request < Struct.new(
|
23761
|
+
:aggregator_v2_arn)
|
23762
|
+
SENSITIVE = []
|
23763
|
+
include Aws::Structure
|
23764
|
+
end
|
23765
|
+
|
23766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteAggregatorV2Response AWS API Documentation
|
23767
|
+
#
|
23768
|
+
class DeleteAggregatorV2Response < Aws::EmptyStructure; end
|
23769
|
+
|
23770
|
+
# @!attribute [rw] identifier
|
23771
|
+
# The ARN of the V2 automation rule.
|
23772
|
+
# @return [String]
|
23773
|
+
#
|
23774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteAutomationRuleV2Request AWS API Documentation
|
23775
|
+
#
|
23776
|
+
class DeleteAutomationRuleV2Request < Struct.new(
|
23777
|
+
:identifier)
|
23778
|
+
SENSITIVE = []
|
23779
|
+
include Aws::Structure
|
23780
|
+
end
|
23781
|
+
|
23782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteAutomationRuleV2Response AWS API Documentation
|
23783
|
+
#
|
23784
|
+
class DeleteAutomationRuleV2Response < Aws::EmptyStructure; end
|
23785
|
+
|
23118
23786
|
# @!attribute [rw] identifier
|
23119
23787
|
# The Amazon Resource Name (ARN) or universally unique identifier
|
23120
23788
|
# (UUID) of the configuration policy.
|
@@ -23132,6 +23800,22 @@ module Aws::SecurityHub
|
|
23132
23800
|
#
|
23133
23801
|
class DeleteConfigurationPolicyResponse < Aws::EmptyStructure; end
|
23134
23802
|
|
23803
|
+
# @!attribute [rw] connector_id
|
23804
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
23805
|
+
# @return [String]
|
23806
|
+
#
|
23807
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteConnectorV2Request AWS API Documentation
|
23808
|
+
#
|
23809
|
+
class DeleteConnectorV2Request < Struct.new(
|
23810
|
+
:connector_id)
|
23811
|
+
SENSITIVE = []
|
23812
|
+
include Aws::Structure
|
23813
|
+
end
|
23814
|
+
|
23815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteConnectorV2Response AWS API Documentation
|
23816
|
+
#
|
23817
|
+
class DeleteConnectorV2Response < Aws::EmptyStructure; end
|
23818
|
+
|
23135
23819
|
# @!attribute [rw] finding_aggregator_arn
|
23136
23820
|
# The ARN of the finding aggregator to delete. To obtain the ARN, use
|
23137
23821
|
# `ListFindingAggregators`.
|
@@ -23450,6 +24134,67 @@ module Aws::SecurityHub
|
|
23450
24134
|
include Aws::Structure
|
23451
24135
|
end
|
23452
24136
|
|
24137
|
+
# @!attribute [rw] next_token
|
24138
|
+
# The token required for pagination. On your first call, set the value
|
24139
|
+
# of this parameter to `NULL`. For subsequent calls, to continue
|
24140
|
+
# listing data, set the value of this parameter to the value returned
|
24141
|
+
# in the previous response.
|
24142
|
+
# @return [String]
|
24143
|
+
#
|
24144
|
+
# @!attribute [rw] max_results
|
24145
|
+
# The maximum number of results to return.
|
24146
|
+
# @return [Integer]
|
24147
|
+
#
|
24148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeProductsV2Request AWS API Documentation
|
24149
|
+
#
|
24150
|
+
class DescribeProductsV2Request < Struct.new(
|
24151
|
+
:next_token,
|
24152
|
+
:max_results)
|
24153
|
+
SENSITIVE = []
|
24154
|
+
include Aws::Structure
|
24155
|
+
end
|
24156
|
+
|
24157
|
+
# @!attribute [rw] products_v2
|
24158
|
+
# Gets information about the product integration.
|
24159
|
+
# @return [Array<Types::ProductV2>]
|
24160
|
+
#
|
24161
|
+
# @!attribute [rw] next_token
|
24162
|
+
# The pagination token to use to request the next page of results.
|
24163
|
+
# Otherwise, this parameter is null.
|
24164
|
+
# @return [String]
|
24165
|
+
#
|
24166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeProductsV2Response AWS API Documentation
|
24167
|
+
#
|
24168
|
+
class DescribeProductsV2Response < Struct.new(
|
24169
|
+
:products_v2,
|
24170
|
+
:next_token)
|
24171
|
+
SENSITIVE = []
|
24172
|
+
include Aws::Structure
|
24173
|
+
end
|
24174
|
+
|
24175
|
+
# @api private
|
24176
|
+
#
|
24177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeSecurityHubV2Request AWS API Documentation
|
24178
|
+
#
|
24179
|
+
class DescribeSecurityHubV2Request < Aws::EmptyStructure; end
|
24180
|
+
|
24181
|
+
# @!attribute [rw] hub_v2_arn
|
24182
|
+
# The ARN of the service resource.
|
24183
|
+
# @return [String]
|
24184
|
+
#
|
24185
|
+
# @!attribute [rw] subscribed_at
|
24186
|
+
# The date and time when the service was enabled in the account.
|
24187
|
+
# @return [String]
|
24188
|
+
#
|
24189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeSecurityHubV2Response AWS API Documentation
|
24190
|
+
#
|
24191
|
+
class DescribeSecurityHubV2Response < Struct.new(
|
24192
|
+
:hub_v2_arn,
|
24193
|
+
:subscribed_at)
|
24194
|
+
SENSITIVE = []
|
24195
|
+
include Aws::Structure
|
24196
|
+
end
|
24197
|
+
|
23453
24198
|
# @!attribute [rw] standards_subscription_arn
|
23454
24199
|
# The ARN of a resource that represents your subscription to a
|
23455
24200
|
# supported standard. To get the subscription ARNs of the standards
|
@@ -23582,10 +24327,16 @@ module Aws::SecurityHub
|
|
23582
24327
|
# administrator account.
|
23583
24328
|
# @return [String]
|
23584
24329
|
#
|
24330
|
+
# @!attribute [rw] feature
|
24331
|
+
# The feature for which the delegated admin account is disabled.
|
24332
|
+
# Defaults to Security Hub if not specified.
|
24333
|
+
# @return [String]
|
24334
|
+
#
|
23585
24335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisableOrganizationAdminAccountRequest AWS API Documentation
|
23586
24336
|
#
|
23587
24337
|
class DisableOrganizationAdminAccountRequest < Struct.new(
|
23588
|
-
:admin_account_id
|
24338
|
+
:admin_account_id,
|
24339
|
+
:feature)
|
23589
24340
|
SENSITIVE = []
|
23590
24341
|
include Aws::Structure
|
23591
24342
|
end
|
@@ -23604,6 +24355,16 @@ module Aws::SecurityHub
|
|
23604
24355
|
#
|
23605
24356
|
class DisableSecurityHubResponse < Aws::EmptyStructure; end
|
23606
24357
|
|
24358
|
+
# @api private
|
24359
|
+
#
|
24360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisableSecurityHubV2Request AWS API Documentation
|
24361
|
+
#
|
24362
|
+
class DisableSecurityHubV2Request < Aws::EmptyStructure; end
|
24363
|
+
|
24364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisableSecurityHubV2Response AWS API Documentation
|
24365
|
+
#
|
24366
|
+
class DisableSecurityHubV2Response < Aws::EmptyStructure; end
|
24367
|
+
|
23607
24368
|
# @api private
|
23608
24369
|
#
|
23609
24370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisassociateFromAdministratorAccountRequest AWS API Documentation
|
@@ -23726,17 +24487,39 @@ module Aws::SecurityHub
|
|
23726
24487
|
# designate as the Security Hub administrator account.
|
23727
24488
|
# @return [String]
|
23728
24489
|
#
|
24490
|
+
# @!attribute [rw] feature
|
24491
|
+
# The feature for which the delegated admin account is enabled.
|
24492
|
+
# Defaults to Security Hub if not specified.
|
24493
|
+
# @return [String]
|
24494
|
+
#
|
23729
24495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableOrganizationAdminAccountRequest AWS API Documentation
|
23730
24496
|
#
|
23731
24497
|
class EnableOrganizationAdminAccountRequest < Struct.new(
|
23732
|
-
:admin_account_id
|
24498
|
+
:admin_account_id,
|
24499
|
+
:feature)
|
23733
24500
|
SENSITIVE = []
|
23734
24501
|
include Aws::Structure
|
23735
24502
|
end
|
23736
24503
|
|
24504
|
+
# @!attribute [rw] admin_account_id
|
24505
|
+
# The Amazon Web Services account identifier of the account to
|
24506
|
+
# designate as the Security Hub administrator account.
|
24507
|
+
# @return [String]
|
24508
|
+
#
|
24509
|
+
# @!attribute [rw] feature
|
24510
|
+
# The feature where the delegated administrator is enabled. The
|
24511
|
+
# default is Security Hub CSPM if no delegated administrator is
|
24512
|
+
# specified in the request.
|
24513
|
+
# @return [String]
|
24514
|
+
#
|
23737
24515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableOrganizationAdminAccountResponse AWS API Documentation
|
23738
24516
|
#
|
23739
|
-
class EnableOrganizationAdminAccountResponse <
|
24517
|
+
class EnableOrganizationAdminAccountResponse < Struct.new(
|
24518
|
+
:admin_account_id,
|
24519
|
+
:feature)
|
24520
|
+
SENSITIVE = []
|
24521
|
+
include Aws::Structure
|
24522
|
+
end
|
23740
24523
|
|
23741
24524
|
# @!attribute [rw] tags
|
23742
24525
|
# The tags to add to the hub resource when you enable Security Hub.
|
@@ -23781,6 +24564,30 @@ module Aws::SecurityHub
|
|
23781
24564
|
#
|
23782
24565
|
class EnableSecurityHubResponse < Aws::EmptyStructure; end
|
23783
24566
|
|
24567
|
+
# @!attribute [rw] tags
|
24568
|
+
# The tags to add to the hub V2 resource when you enable Security Hub.
|
24569
|
+
# @return [Hash<String,String>]
|
24570
|
+
#
|
24571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableSecurityHubV2Request AWS API Documentation
|
24572
|
+
#
|
24573
|
+
class EnableSecurityHubV2Request < Struct.new(
|
24574
|
+
:tags)
|
24575
|
+
SENSITIVE = []
|
24576
|
+
include Aws::Structure
|
24577
|
+
end
|
24578
|
+
|
24579
|
+
# @!attribute [rw] hub_v2_arn
|
24580
|
+
# The ARN of the V2 resource that was created.
|
24581
|
+
# @return [String]
|
24582
|
+
#
|
24583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableSecurityHubV2Response AWS API Documentation
|
24584
|
+
#
|
24585
|
+
class EnableSecurityHubV2Response < Struct.new(
|
24586
|
+
:hub_v2_arn)
|
24587
|
+
SENSITIVE = []
|
24588
|
+
include Aws::Structure
|
24589
|
+
end
|
24590
|
+
|
23784
24591
|
# The options for customizing a security control parameter that is an
|
23785
24592
|
# enum.
|
23786
24593
|
#
|
@@ -23829,6 +24636,21 @@ module Aws::SecurityHub
|
|
23829
24636
|
include Aws::Structure
|
23830
24637
|
end
|
23831
24638
|
|
24639
|
+
# Defines the settings and parameters required for integrating external
|
24640
|
+
# security tools and services.
|
24641
|
+
#
|
24642
|
+
# @!attribute [rw] connector_arn
|
24643
|
+
# The ARN of the connector that establishes the integration.
|
24644
|
+
# @return [String]
|
24645
|
+
#
|
24646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ExternalIntegrationConfiguration AWS API Documentation
|
24647
|
+
#
|
24648
|
+
class ExternalIntegrationConfiguration < Struct.new(
|
24649
|
+
:connector_arn)
|
24650
|
+
SENSITIVE = []
|
24651
|
+
include Aws::Structure
|
24652
|
+
end
|
24653
|
+
|
23832
24654
|
# Provides information about the file paths that were affected by the
|
23833
24655
|
# threat.
|
23834
24656
|
#
|
@@ -24327,38 +25149,146 @@ module Aws::SecurityHub
|
|
24327
25149
|
include Aws::Structure
|
24328
25150
|
end
|
24329
25151
|
|
24330
|
-
# @!attribute [rw]
|
24331
|
-
# The
|
24332
|
-
#
|
24333
|
-
# @return [Types::Target]
|
25152
|
+
# @!attribute [rw] aggregator_v2_arn
|
25153
|
+
# The ARN of the Aggregator V2.
|
25154
|
+
# @return [String]
|
24334
25155
|
#
|
24335
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/
|
25156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetAggregatorV2Request AWS API Documentation
|
24336
25157
|
#
|
24337
|
-
class
|
24338
|
-
:
|
25158
|
+
class GetAggregatorV2Request < Struct.new(
|
25159
|
+
:aggregator_v2_arn)
|
24339
25160
|
SENSITIVE = []
|
24340
25161
|
include Aws::Structure
|
24341
25162
|
end
|
24342
25163
|
|
24343
|
-
# @!attribute [rw]
|
24344
|
-
# The
|
24345
|
-
# For self-managed behavior, the value is `SELF_MANAGED_SECURITY_HUB`.
|
25164
|
+
# @!attribute [rw] aggregator_v2_arn
|
25165
|
+
# The ARN of the Aggregator V2.
|
24346
25166
|
# @return [String]
|
24347
25167
|
#
|
24348
|
-
# @!attribute [rw]
|
24349
|
-
# The
|
24350
|
-
# which the association is retrieved.
|
25168
|
+
# @!attribute [rw] aggregation_region
|
25169
|
+
# The Amazon Web Services Region where data is aggregated.
|
24351
25170
|
# @return [String]
|
24352
25171
|
#
|
24353
|
-
# @!attribute [rw]
|
24354
|
-
#
|
24355
|
-
# organizational unit, or the organization root.
|
25172
|
+
# @!attribute [rw] region_linking_mode
|
25173
|
+
# Determines how Regions are linked to an Aggregator V2.
|
24356
25174
|
# @return [String]
|
24357
25175
|
#
|
24358
|
-
# @!attribute [rw]
|
24359
|
-
#
|
24360
|
-
#
|
24361
|
-
#
|
25176
|
+
# @!attribute [rw] linked_regions
|
25177
|
+
# The list of Regions that are linked to the aggregation Region.
|
25178
|
+
# @return [Array<String>]
|
25179
|
+
#
|
25180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetAggregatorV2Response AWS API Documentation
|
25181
|
+
#
|
25182
|
+
class GetAggregatorV2Response < Struct.new(
|
25183
|
+
:aggregator_v2_arn,
|
25184
|
+
:aggregation_region,
|
25185
|
+
:region_linking_mode,
|
25186
|
+
:linked_regions)
|
25187
|
+
SENSITIVE = []
|
25188
|
+
include Aws::Structure
|
25189
|
+
end
|
25190
|
+
|
25191
|
+
# @!attribute [rw] identifier
|
25192
|
+
# The ARN of the V2 automation rule.
|
25193
|
+
# @return [String]
|
25194
|
+
#
|
25195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetAutomationRuleV2Request AWS API Documentation
|
25196
|
+
#
|
25197
|
+
class GetAutomationRuleV2Request < Struct.new(
|
25198
|
+
:identifier)
|
25199
|
+
SENSITIVE = []
|
25200
|
+
include Aws::Structure
|
25201
|
+
end
|
25202
|
+
|
25203
|
+
# @!attribute [rw] rule_arn
|
25204
|
+
# The ARN of the V2 automation rule.
|
25205
|
+
# @return [String]
|
25206
|
+
#
|
25207
|
+
# @!attribute [rw] rule_id
|
25208
|
+
# The ID of the V2 automation rule.
|
25209
|
+
# @return [String]
|
25210
|
+
#
|
25211
|
+
# @!attribute [rw] rule_order
|
25212
|
+
# The value for the rule priority.
|
25213
|
+
# @return [Float]
|
25214
|
+
#
|
25215
|
+
# @!attribute [rw] rule_name
|
25216
|
+
# The name of the V2 automation rule.
|
25217
|
+
# @return [String]
|
25218
|
+
#
|
25219
|
+
# @!attribute [rw] rule_status
|
25220
|
+
# The status of the V2 automation automation rule.
|
25221
|
+
# @return [String]
|
25222
|
+
#
|
25223
|
+
# @!attribute [rw] description
|
25224
|
+
# A description of the automation rule.
|
25225
|
+
# @return [String]
|
25226
|
+
#
|
25227
|
+
# @!attribute [rw] criteria
|
25228
|
+
# The filtering type and configuration of the V2 automation rule.
|
25229
|
+
# @return [Types::Criteria]
|
25230
|
+
#
|
25231
|
+
# @!attribute [rw] actions
|
25232
|
+
# A list of actions performed when the rule criteria is met.
|
25233
|
+
# @return [Array<Types::AutomationRulesActionV2>]
|
25234
|
+
#
|
25235
|
+
# @!attribute [rw] created_at
|
25236
|
+
# The timestamp when the V2 automation rule was created.
|
25237
|
+
# @return [Time]
|
25238
|
+
#
|
25239
|
+
# @!attribute [rw] updated_at
|
25240
|
+
# The timestamp when the V2 automation rule was updated.
|
25241
|
+
# @return [Time]
|
25242
|
+
#
|
25243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetAutomationRuleV2Response AWS API Documentation
|
25244
|
+
#
|
25245
|
+
class GetAutomationRuleV2Response < Struct.new(
|
25246
|
+
:rule_arn,
|
25247
|
+
:rule_id,
|
25248
|
+
:rule_order,
|
25249
|
+
:rule_name,
|
25250
|
+
:rule_status,
|
25251
|
+
:description,
|
25252
|
+
:criteria,
|
25253
|
+
:actions,
|
25254
|
+
:created_at,
|
25255
|
+
:updated_at)
|
25256
|
+
SENSITIVE = []
|
25257
|
+
include Aws::Structure
|
25258
|
+
end
|
25259
|
+
|
25260
|
+
# @!attribute [rw] target
|
25261
|
+
# The target account ID, organizational unit ID, or the root ID to
|
25262
|
+
# retrieve the association for.
|
25263
|
+
# @return [Types::Target]
|
25264
|
+
#
|
25265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetConfigurationPolicyAssociationRequest AWS API Documentation
|
25266
|
+
#
|
25267
|
+
class GetConfigurationPolicyAssociationRequest < Struct.new(
|
25268
|
+
:target)
|
25269
|
+
SENSITIVE = []
|
25270
|
+
include Aws::Structure
|
25271
|
+
end
|
25272
|
+
|
25273
|
+
# @!attribute [rw] configuration_policy_id
|
25274
|
+
# The universally unique identifier (UUID) of a configuration policy.
|
25275
|
+
# For self-managed behavior, the value is `SELF_MANAGED_SECURITY_HUB`.
|
25276
|
+
# @return [String]
|
25277
|
+
#
|
25278
|
+
# @!attribute [rw] target_id
|
25279
|
+
# The target account ID, organizational unit ID, or the root ID for
|
25280
|
+
# which the association is retrieved.
|
25281
|
+
# @return [String]
|
25282
|
+
#
|
25283
|
+
# @!attribute [rw] target_type
|
25284
|
+
# Specifies whether the target is an Amazon Web Services account,
|
25285
|
+
# organizational unit, or the organization root.
|
25286
|
+
# @return [String]
|
25287
|
+
#
|
25288
|
+
# @!attribute [rw] association_type
|
25289
|
+
# Indicates whether the association between the specified target and
|
25290
|
+
# the configuration was directly applied by the Security Hub delegated
|
25291
|
+
# administrator or inherited from a parent.
|
24362
25292
|
# @return [String]
|
24363
25293
|
#
|
24364
25294
|
# @!attribute [rw] updated_at
|
@@ -24454,6 +25384,71 @@ module Aws::SecurityHub
|
|
24454
25384
|
include Aws::Structure
|
24455
25385
|
end
|
24456
25386
|
|
25387
|
+
# @!attribute [rw] connector_id
|
25388
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
25389
|
+
# @return [String]
|
25390
|
+
#
|
25391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetConnectorV2Request AWS API Documentation
|
25392
|
+
#
|
25393
|
+
class GetConnectorV2Request < Struct.new(
|
25394
|
+
:connector_id)
|
25395
|
+
SENSITIVE = []
|
25396
|
+
include Aws::Structure
|
25397
|
+
end
|
25398
|
+
|
25399
|
+
# @!attribute [rw] connector_arn
|
25400
|
+
# The Amazon Resource Name (ARN) of the connectorV2.
|
25401
|
+
# @return [String]
|
25402
|
+
#
|
25403
|
+
# @!attribute [rw] connector_id
|
25404
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
25405
|
+
# @return [String]
|
25406
|
+
#
|
25407
|
+
# @!attribute [rw] name
|
25408
|
+
# The name of the connectorV2.
|
25409
|
+
# @return [String]
|
25410
|
+
#
|
25411
|
+
# @!attribute [rw] description
|
25412
|
+
# The description of the connectorV2.
|
25413
|
+
# @return [String]
|
25414
|
+
#
|
25415
|
+
# @!attribute [rw] kms_key_arn
|
25416
|
+
# The Amazon Resource Name (ARN) of KMS key used for the connectorV2.
|
25417
|
+
# @return [String]
|
25418
|
+
#
|
25419
|
+
# @!attribute [rw] created_at
|
25420
|
+
# ISO 8601 UTC timestamp for the time create the connectorV2.
|
25421
|
+
# @return [Time]
|
25422
|
+
#
|
25423
|
+
# @!attribute [rw] last_updated_at
|
25424
|
+
# ISO 8601 UTC timestamp for the time update the connectorV2
|
25425
|
+
# connectorStatus.
|
25426
|
+
# @return [Time]
|
25427
|
+
#
|
25428
|
+
# @!attribute [rw] health
|
25429
|
+
# The current health status for connectorV2
|
25430
|
+
# @return [Types::HealthCheck]
|
25431
|
+
#
|
25432
|
+
# @!attribute [rw] provider_detail
|
25433
|
+
# The third-party provider detail for a service configuration.
|
25434
|
+
# @return [Types::ProviderDetail]
|
25435
|
+
#
|
25436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetConnectorV2Response AWS API Documentation
|
25437
|
+
#
|
25438
|
+
class GetConnectorV2Response < Struct.new(
|
25439
|
+
:connector_arn,
|
25440
|
+
:connector_id,
|
25441
|
+
:name,
|
25442
|
+
:description,
|
25443
|
+
:kms_key_arn,
|
25444
|
+
:created_at,
|
25445
|
+
:last_updated_at,
|
25446
|
+
:health,
|
25447
|
+
:provider_detail)
|
25448
|
+
SENSITIVE = []
|
25449
|
+
include Aws::Structure
|
25450
|
+
end
|
25451
|
+
|
24457
25452
|
# @!attribute [rw] standards_subscription_arns
|
24458
25453
|
# The list of the standards subscription ARNs for the standards to
|
24459
25454
|
# retrieve.
|
@@ -24645,6 +25640,44 @@ module Aws::SecurityHub
|
|
24645
25640
|
include Aws::Structure
|
24646
25641
|
end
|
24647
25642
|
|
25643
|
+
# @!attribute [rw] group_by_rules
|
25644
|
+
# Specifies how security findings should be aggregated and organized
|
25645
|
+
# in the statistical analysis. It can accept up to 5 `groupBy` fields
|
25646
|
+
# in a single call.
|
25647
|
+
# @return [Array<Types::GroupByRule>]
|
25648
|
+
#
|
25649
|
+
# @!attribute [rw] sort_order
|
25650
|
+
# Orders the aggregation count in descending or ascending order.
|
25651
|
+
# Descending order is the default.
|
25652
|
+
# @return [String]
|
25653
|
+
#
|
25654
|
+
# @!attribute [rw] max_statistic_results
|
25655
|
+
# The maximum number of results to be returned.
|
25656
|
+
# @return [Integer]
|
25657
|
+
#
|
25658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingStatisticsV2Request AWS API Documentation
|
25659
|
+
#
|
25660
|
+
class GetFindingStatisticsV2Request < Struct.new(
|
25661
|
+
:group_by_rules,
|
25662
|
+
:sort_order,
|
25663
|
+
:max_statistic_results)
|
25664
|
+
SENSITIVE = []
|
25665
|
+
include Aws::Structure
|
25666
|
+
end
|
25667
|
+
|
25668
|
+
# @!attribute [rw] group_by_results
|
25669
|
+
# Aggregated statistics about security findings based on specified
|
25670
|
+
# grouping criteria.
|
25671
|
+
# @return [Array<Types::GroupByResult>]
|
25672
|
+
#
|
25673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingStatisticsV2Response AWS API Documentation
|
25674
|
+
#
|
25675
|
+
class GetFindingStatisticsV2Response < Struct.new(
|
25676
|
+
:group_by_results)
|
25677
|
+
SENSITIVE = []
|
25678
|
+
include Aws::Structure
|
25679
|
+
end
|
25680
|
+
|
24648
25681
|
# @!attribute [rw] filters
|
24649
25682
|
# The finding attributes used to define a condition to filter the
|
24650
25683
|
# returned findings.
|
@@ -24702,6 +25735,57 @@ module Aws::SecurityHub
|
|
24702
25735
|
include Aws::Structure
|
24703
25736
|
end
|
24704
25737
|
|
25738
|
+
# @!attribute [rw] filters
|
25739
|
+
# The finding attributes used to define a condition to filter the
|
25740
|
+
# returned OCSF findings. You can filter up to 10 composite filters.
|
25741
|
+
# For each filter type inside of a composite filter, you can provide
|
25742
|
+
# up to 20 filters.
|
25743
|
+
# @return [Types::OcsfFindingFilters]
|
25744
|
+
#
|
25745
|
+
# @!attribute [rw] sort_criteria
|
25746
|
+
# The finding attributes used to sort the list of returned findings.
|
25747
|
+
# @return [Array<Types::SortCriterion>]
|
25748
|
+
#
|
25749
|
+
# @!attribute [rw] next_token
|
25750
|
+
# The token required for pagination. On your first call, set the value
|
25751
|
+
# of this parameter to `NULL`. For subsequent calls, to continue
|
25752
|
+
# listing data, set the value of this parameter to the value returned
|
25753
|
+
# in the previous response.
|
25754
|
+
# @return [String]
|
25755
|
+
#
|
25756
|
+
# @!attribute [rw] max_results
|
25757
|
+
# The maximum number of results to return.
|
25758
|
+
# @return [Integer]
|
25759
|
+
#
|
25760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingsV2Request AWS API Documentation
|
25761
|
+
#
|
25762
|
+
class GetFindingsV2Request < Struct.new(
|
25763
|
+
:filters,
|
25764
|
+
:sort_criteria,
|
25765
|
+
:next_token,
|
25766
|
+
:max_results)
|
25767
|
+
SENSITIVE = []
|
25768
|
+
include Aws::Structure
|
25769
|
+
end
|
25770
|
+
|
25771
|
+
# @!attribute [rw] findings
|
25772
|
+
# An array of security findings returned by the operation.
|
25773
|
+
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
25774
|
+
#
|
25775
|
+
# @!attribute [rw] next_token
|
25776
|
+
# The pagination token to use to request the next page of results.
|
25777
|
+
# Otherwise, this parameter is null.
|
25778
|
+
# @return [String]
|
25779
|
+
#
|
25780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingsV2Response AWS API Documentation
|
25781
|
+
#
|
25782
|
+
class GetFindingsV2Response < Struct.new(
|
25783
|
+
:findings,
|
25784
|
+
:next_token)
|
25785
|
+
SENSITIVE = []
|
25786
|
+
include Aws::Structure
|
25787
|
+
end
|
25788
|
+
|
24705
25789
|
# @!attribute [rw] insight_arn
|
24706
25790
|
# The ARN of the insight for which to return results.
|
24707
25791
|
# @return [String]
|
@@ -24842,6 +25926,90 @@ module Aws::SecurityHub
|
|
24842
25926
|
include Aws::Structure
|
24843
25927
|
end
|
24844
25928
|
|
25929
|
+
# @!attribute [rw] group_by_rules
|
25930
|
+
# How resource statistics should be aggregated and organized in the
|
25931
|
+
# response.
|
25932
|
+
# @return [Array<Types::ResourceGroupByRule>]
|
25933
|
+
#
|
25934
|
+
# @!attribute [rw] sort_order
|
25935
|
+
# Sorts aggregated statistics.
|
25936
|
+
# @return [String]
|
25937
|
+
#
|
25938
|
+
# @!attribute [rw] max_statistic_results
|
25939
|
+
# The maximum number of results to be returned.
|
25940
|
+
# @return [Integer]
|
25941
|
+
#
|
25942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetResourcesStatisticsV2Request AWS API Documentation
|
25943
|
+
#
|
25944
|
+
class GetResourcesStatisticsV2Request < Struct.new(
|
25945
|
+
:group_by_rules,
|
25946
|
+
:sort_order,
|
25947
|
+
:max_statistic_results)
|
25948
|
+
SENSITIVE = []
|
25949
|
+
include Aws::Structure
|
25950
|
+
end
|
25951
|
+
|
25952
|
+
# @!attribute [rw] group_by_results
|
25953
|
+
# The aggregated statistics about resources based on the specified
|
25954
|
+
# grouping rule.
|
25955
|
+
# @return [Array<Types::GroupByResult>]
|
25956
|
+
#
|
25957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetResourcesStatisticsV2Response AWS API Documentation
|
25958
|
+
#
|
25959
|
+
class GetResourcesStatisticsV2Response < Struct.new(
|
25960
|
+
:group_by_results)
|
25961
|
+
SENSITIVE = []
|
25962
|
+
include Aws::Structure
|
25963
|
+
end
|
25964
|
+
|
25965
|
+
# @!attribute [rw] filters
|
25966
|
+
# Filters resources based on a set of criteria.
|
25967
|
+
# @return [Types::ResourcesFilters]
|
25968
|
+
#
|
25969
|
+
# @!attribute [rw] sort_criteria
|
25970
|
+
# The finding attributes used to sort the list of returned findings.
|
25971
|
+
# @return [Array<Types::SortCriterion>]
|
25972
|
+
#
|
25973
|
+
# @!attribute [rw] next_token
|
25974
|
+
# The token required for pagination. On your first call, set the value
|
25975
|
+
# of this parameter to `NULL`. For subsequent calls, to continue
|
25976
|
+
# listing data, set the value of this parameter to the value returned
|
25977
|
+
# in the previous response.
|
25978
|
+
# @return [String]
|
25979
|
+
#
|
25980
|
+
# @!attribute [rw] max_results
|
25981
|
+
# The maximum number of results to return.
|
25982
|
+
# @return [Integer]
|
25983
|
+
#
|
25984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetResourcesV2Request AWS API Documentation
|
25985
|
+
#
|
25986
|
+
class GetResourcesV2Request < Struct.new(
|
25987
|
+
:filters,
|
25988
|
+
:sort_criteria,
|
25989
|
+
:next_token,
|
25990
|
+
:max_results)
|
25991
|
+
SENSITIVE = []
|
25992
|
+
include Aws::Structure
|
25993
|
+
end
|
25994
|
+
|
25995
|
+
# @!attribute [rw] resources
|
25996
|
+
# Filters resources based on a set of criteria.
|
25997
|
+
# @return [Array<Types::ResourceResult>]
|
25998
|
+
#
|
25999
|
+
# @!attribute [rw] next_token
|
26000
|
+
# The pagination token to use to request the next page of results.
|
26001
|
+
# Otherwise, this parameter is null.
|
26002
|
+
# @return [String]
|
26003
|
+
#
|
26004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetResourcesV2Response AWS API Documentation
|
26005
|
+
#
|
26006
|
+
class GetResourcesV2Response < Struct.new(
|
26007
|
+
:resources,
|
26008
|
+
:next_token)
|
26009
|
+
SENSITIVE = []
|
26010
|
+
include Aws::Structure
|
26011
|
+
end
|
26012
|
+
|
24845
26013
|
# @!attribute [rw] security_control_id
|
24846
26014
|
# The ID of the security control to retrieve the definition for. This
|
24847
26015
|
# field doesn’t accept an Amazon Resource Name (ARN).
|
@@ -24870,6 +26038,92 @@ module Aws::SecurityHub
|
|
24870
26038
|
include Aws::Structure
|
24871
26039
|
end
|
24872
26040
|
|
26041
|
+
# Represents finding statistics grouped by `GroupedByField`.
|
26042
|
+
#
|
26043
|
+
# @!attribute [rw] group_by_field
|
26044
|
+
# The attribute by which filtered security findings should be grouped.
|
26045
|
+
# @return [String]
|
26046
|
+
#
|
26047
|
+
# @!attribute [rw] group_by_values
|
26048
|
+
# An array of grouped values and their respective counts for each
|
26049
|
+
# `GroupByField`.
|
26050
|
+
# @return [Array<Types::GroupByValue>]
|
26051
|
+
#
|
26052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GroupByResult AWS API Documentation
|
26053
|
+
#
|
26054
|
+
class GroupByResult < Struct.new(
|
26055
|
+
:group_by_field,
|
26056
|
+
:group_by_values)
|
26057
|
+
SENSITIVE = []
|
26058
|
+
include Aws::Structure
|
26059
|
+
end
|
26060
|
+
|
26061
|
+
# Defines the how the finding attribute should be grouped.
|
26062
|
+
#
|
26063
|
+
# @!attribute [rw] filters
|
26064
|
+
# The criteria used to select which security findings should be
|
26065
|
+
# included in the grouping operation.
|
26066
|
+
# @return [Types::OcsfFindingFilters]
|
26067
|
+
#
|
26068
|
+
# @!attribute [rw] group_by_field
|
26069
|
+
# The attribute by which filtered findings should be grouped.
|
26070
|
+
# @return [String]
|
26071
|
+
#
|
26072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GroupByRule AWS API Documentation
|
26073
|
+
#
|
26074
|
+
class GroupByRule < Struct.new(
|
26075
|
+
:filters,
|
26076
|
+
:group_by_field)
|
26077
|
+
SENSITIVE = []
|
26078
|
+
include Aws::Structure
|
26079
|
+
end
|
26080
|
+
|
26081
|
+
# Represents individual aggregated results when grouping security
|
26082
|
+
# findings for each `GroupByField`.
|
26083
|
+
#
|
26084
|
+
# @!attribute [rw] field_value
|
26085
|
+
# The value of the field by which findings are grouped.
|
26086
|
+
# @return [String]
|
26087
|
+
#
|
26088
|
+
# @!attribute [rw] count
|
26089
|
+
# The number of findings for a specific `FieldValue` and
|
26090
|
+
# `GroupByField`.
|
26091
|
+
# @return [Integer]
|
26092
|
+
#
|
26093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GroupByValue AWS API Documentation
|
26094
|
+
#
|
26095
|
+
class GroupByValue < Struct.new(
|
26096
|
+
:field_value,
|
26097
|
+
:count)
|
26098
|
+
SENSITIVE = []
|
26099
|
+
include Aws::Structure
|
26100
|
+
end
|
26101
|
+
|
26102
|
+
# Information about the operational status and health of a connectorV2.
|
26103
|
+
#
|
26104
|
+
# @!attribute [rw] connector_status
|
26105
|
+
# The status of the connectorV2.
|
26106
|
+
# @return [String]
|
26107
|
+
#
|
26108
|
+
# @!attribute [rw] message
|
26109
|
+
# The message for the reason of connectorStatus change.
|
26110
|
+
# @return [String]
|
26111
|
+
#
|
26112
|
+
# @!attribute [rw] last_checked_at
|
26113
|
+
# ISO 8601 UTC timestamp for the time check the health status of the
|
26114
|
+
# connectorV2.
|
26115
|
+
# @return [Time]
|
26116
|
+
#
|
26117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/HealthCheck AWS API Documentation
|
26118
|
+
#
|
26119
|
+
class HealthCheck < Struct.new(
|
26120
|
+
:connector_status,
|
26121
|
+
:message,
|
26122
|
+
:last_checked_at)
|
26123
|
+
SENSITIVE = []
|
26124
|
+
include Aws::Structure
|
26125
|
+
end
|
26126
|
+
|
24873
26127
|
# An Internet Control Message Protocol (ICMP) type and code.
|
24874
26128
|
#
|
24875
26129
|
# @!attribute [rw] code
|
@@ -25125,6 +26379,23 @@ module Aws::SecurityHub
|
|
25125
26379
|
include Aws::Structure
|
25126
26380
|
end
|
25127
26381
|
|
26382
|
+
# The request has failed due to an internal failure of the service.
|
26383
|
+
#
|
26384
|
+
# @!attribute [rw] message
|
26385
|
+
# @return [String]
|
26386
|
+
#
|
26387
|
+
# @!attribute [rw] code
|
26388
|
+
# @return [String]
|
26389
|
+
#
|
26390
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/InternalServerException AWS API Documentation
|
26391
|
+
#
|
26392
|
+
class InternalServerException < Struct.new(
|
26393
|
+
:message,
|
26394
|
+
:code)
|
26395
|
+
SENSITIVE = []
|
26396
|
+
include Aws::Structure
|
26397
|
+
end
|
26398
|
+
|
25128
26399
|
# The account doesn't have permission to perform this action.
|
25129
26400
|
#
|
25130
26401
|
# @!attribute [rw] message
|
@@ -25298,6 +26569,70 @@ module Aws::SecurityHub
|
|
25298
26569
|
include Aws::Structure
|
25299
26570
|
end
|
25300
26571
|
|
26572
|
+
# Information about the configuration and status of a Jira Cloud
|
26573
|
+
# integration.
|
26574
|
+
#
|
26575
|
+
# @!attribute [rw] cloud_id
|
26576
|
+
# The cloud id of the Jira Cloud.
|
26577
|
+
# @return [String]
|
26578
|
+
#
|
26579
|
+
# @!attribute [rw] project_key
|
26580
|
+
# The projectKey of Jira Cloud.
|
26581
|
+
# @return [String]
|
26582
|
+
#
|
26583
|
+
# @!attribute [rw] domain
|
26584
|
+
# The URL domain of your Jira Cloud instance.
|
26585
|
+
# @return [String]
|
26586
|
+
#
|
26587
|
+
# @!attribute [rw] auth_url
|
26588
|
+
# The URL to provide to customers for OAuth auth code flow.
|
26589
|
+
# @return [String]
|
26590
|
+
#
|
26591
|
+
# @!attribute [rw] auth_status
|
26592
|
+
# The status of the authorization between Jira Cloud and the service.
|
26593
|
+
# @return [String]
|
26594
|
+
#
|
26595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/JiraCloudDetail AWS API Documentation
|
26596
|
+
#
|
26597
|
+
class JiraCloudDetail < Struct.new(
|
26598
|
+
:cloud_id,
|
26599
|
+
:project_key,
|
26600
|
+
:domain,
|
26601
|
+
:auth_url,
|
26602
|
+
:auth_status)
|
26603
|
+
SENSITIVE = []
|
26604
|
+
include Aws::Structure
|
26605
|
+
end
|
26606
|
+
|
26607
|
+
# The initial configuration settings required to establish an
|
26608
|
+
# integration between Security Hub and Jira Cloud.
|
26609
|
+
#
|
26610
|
+
# @!attribute [rw] project_key
|
26611
|
+
# The project key for a JiraCloud instance.
|
26612
|
+
# @return [String]
|
26613
|
+
#
|
26614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/JiraCloudProviderConfiguration AWS API Documentation
|
26615
|
+
#
|
26616
|
+
class JiraCloudProviderConfiguration < Struct.new(
|
26617
|
+
:project_key)
|
26618
|
+
SENSITIVE = []
|
26619
|
+
include Aws::Structure
|
26620
|
+
end
|
26621
|
+
|
26622
|
+
# The parameters used to modify an existing Jira Cloud integration.
|
26623
|
+
#
|
26624
|
+
# @!attribute [rw] project_key
|
26625
|
+
# The project key for a JiraCloud instance.
|
26626
|
+
# @return [String]
|
26627
|
+
#
|
26628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/JiraCloudUpdateConfiguration AWS API Documentation
|
26629
|
+
#
|
26630
|
+
class JiraCloudUpdateConfiguration < Struct.new(
|
26631
|
+
:project_key)
|
26632
|
+
SENSITIVE = []
|
26633
|
+
include Aws::Structure
|
26634
|
+
end
|
26635
|
+
|
25301
26636
|
# A keyword filter for querying findings.
|
25302
26637
|
#
|
25303
26638
|
# @!attribute [rw] value
|
@@ -25331,6 +26666,44 @@ module Aws::SecurityHub
|
|
25331
26666
|
include Aws::Structure
|
25332
26667
|
end
|
25333
26668
|
|
26669
|
+
# @!attribute [rw] next_token
|
26670
|
+
# The token required for pagination. On your first call, set the value
|
26671
|
+
# of this parameter to `NULL`. For subsequent calls, to continue
|
26672
|
+
# listing data, set the value of this parameter to the value returned
|
26673
|
+
# in the previous response.
|
26674
|
+
# @return [String]
|
26675
|
+
#
|
26676
|
+
# @!attribute [rw] max_results
|
26677
|
+
# The maximum number of results to return.
|
26678
|
+
# @return [Integer]
|
26679
|
+
#
|
26680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListAggregatorsV2Request AWS API Documentation
|
26681
|
+
#
|
26682
|
+
class ListAggregatorsV2Request < Struct.new(
|
26683
|
+
:next_token,
|
26684
|
+
:max_results)
|
26685
|
+
SENSITIVE = []
|
26686
|
+
include Aws::Structure
|
26687
|
+
end
|
26688
|
+
|
26689
|
+
# @!attribute [rw] aggregators_v2
|
26690
|
+
# An array of aggregators.
|
26691
|
+
# @return [Array<Types::AggregatorV2>]
|
26692
|
+
#
|
26693
|
+
# @!attribute [rw] next_token
|
26694
|
+
# The pagination token to use to request the next page of results.
|
26695
|
+
# Otherwise, this parameter is null.
|
26696
|
+
# @return [String]
|
26697
|
+
#
|
26698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListAggregatorsV2Response AWS API Documentation
|
26699
|
+
#
|
26700
|
+
class ListAggregatorsV2Response < Struct.new(
|
26701
|
+
:aggregators_v2,
|
26702
|
+
:next_token)
|
26703
|
+
SENSITIVE = []
|
26704
|
+
include Aws::Structure
|
26705
|
+
end
|
26706
|
+
|
25334
26707
|
# @!attribute [rw] next_token
|
25335
26708
|
# A token to specify where to start paginating the response. This is
|
25336
26709
|
# the `NextToken` from a previously truncated response. On your first
|
@@ -25370,6 +26743,44 @@ module Aws::SecurityHub
|
|
25370
26743
|
include Aws::Structure
|
25371
26744
|
end
|
25372
26745
|
|
26746
|
+
# @!attribute [rw] next_token
|
26747
|
+
# The token required for pagination. On your first call, set the value
|
26748
|
+
# of this parameter to `NULL`. For subsequent calls, to continue
|
26749
|
+
# listing data, set the value of this parameter to the value returned
|
26750
|
+
# in the previous response.
|
26751
|
+
# @return [String]
|
26752
|
+
#
|
26753
|
+
# @!attribute [rw] max_results
|
26754
|
+
# The maximum number of results to return.
|
26755
|
+
# @return [Integer]
|
26756
|
+
#
|
26757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListAutomationRulesV2Request AWS API Documentation
|
26758
|
+
#
|
26759
|
+
class ListAutomationRulesV2Request < Struct.new(
|
26760
|
+
:next_token,
|
26761
|
+
:max_results)
|
26762
|
+
SENSITIVE = []
|
26763
|
+
include Aws::Structure
|
26764
|
+
end
|
26765
|
+
|
26766
|
+
# @!attribute [rw] rules
|
26767
|
+
# An array of automation rules.
|
26768
|
+
# @return [Array<Types::AutomationRulesMetadataV2>]
|
26769
|
+
#
|
26770
|
+
# @!attribute [rw] next_token
|
26771
|
+
# The pagination token to use to request the next page of results.
|
26772
|
+
# Otherwise, this parameter is null.
|
26773
|
+
# @return [String]
|
26774
|
+
#
|
26775
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListAutomationRulesV2Response AWS API Documentation
|
26776
|
+
#
|
26777
|
+
class ListAutomationRulesV2Response < Struct.new(
|
26778
|
+
:rules,
|
26779
|
+
:next_token)
|
26780
|
+
SENSITIVE = []
|
26781
|
+
include Aws::Structure
|
26782
|
+
end
|
26783
|
+
|
25373
26784
|
# @!attribute [rw] next_token
|
25374
26785
|
# The NextToken value that's returned from a previous paginated
|
25375
26786
|
# `ListConfigurationPolicies` request where `MaxResults` was used but
|
@@ -25465,18 +26876,63 @@ module Aws::SecurityHub
|
|
25465
26876
|
# @return [Array<Types::ConfigurationPolicyAssociationSummary>]
|
25466
26877
|
#
|
25467
26878
|
# @!attribute [rw] next_token
|
25468
|
-
# The `NextToken` value to include in the next
|
25469
|
-
# `ListConfigurationPolicyAssociations` request. When the results of a
|
25470
|
-
# `ListConfigurationPolicyAssociations` request exceed `MaxResults`,
|
25471
|
-
# this value can be used to retrieve the next page of results. This
|
25472
|
-
# value is `null` when there are no more results to return.
|
26879
|
+
# The `NextToken` value to include in the next
|
26880
|
+
# `ListConfigurationPolicyAssociations` request. When the results of a
|
26881
|
+
# `ListConfigurationPolicyAssociations` request exceed `MaxResults`,
|
26882
|
+
# this value can be used to retrieve the next page of results. This
|
26883
|
+
# value is `null` when there are no more results to return.
|
26884
|
+
# @return [String]
|
26885
|
+
#
|
26886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListConfigurationPolicyAssociationsResponse AWS API Documentation
|
26887
|
+
#
|
26888
|
+
class ListConfigurationPolicyAssociationsResponse < Struct.new(
|
26889
|
+
:configuration_policy_association_summaries,
|
26890
|
+
:next_token)
|
26891
|
+
SENSITIVE = []
|
26892
|
+
include Aws::Structure
|
26893
|
+
end
|
26894
|
+
|
26895
|
+
# @!attribute [rw] next_token
|
26896
|
+
# The pagination token per the Amazon Web Services Pagination standard
|
26897
|
+
# @return [String]
|
26898
|
+
#
|
26899
|
+
# @!attribute [rw] max_results
|
26900
|
+
# The maximum number of results to be returned.
|
26901
|
+
# @return [Integer]
|
26902
|
+
#
|
26903
|
+
# @!attribute [rw] provider_name
|
26904
|
+
# The name of the third-party provider.
|
26905
|
+
# @return [String]
|
26906
|
+
#
|
26907
|
+
# @!attribute [rw] connector_status
|
26908
|
+
# The status for the connectorV2.
|
26909
|
+
# @return [String]
|
26910
|
+
#
|
26911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListConnectorsV2Request AWS API Documentation
|
26912
|
+
#
|
26913
|
+
class ListConnectorsV2Request < Struct.new(
|
26914
|
+
:next_token,
|
26915
|
+
:max_results,
|
26916
|
+
:provider_name,
|
26917
|
+
:connector_status)
|
26918
|
+
SENSITIVE = []
|
26919
|
+
include Aws::Structure
|
26920
|
+
end
|
26921
|
+
|
26922
|
+
# @!attribute [rw] next_token
|
26923
|
+
# The pagination token to use to request the next page of results.
|
26924
|
+
# Otherwise, this parameter is null.
|
25473
26925
|
# @return [String]
|
25474
26926
|
#
|
25475
|
-
#
|
26927
|
+
# @!attribute [rw] connectors
|
26928
|
+
# An array of connectorV2 summaries.
|
26929
|
+
# @return [Array<Types::ConnectorSummary>]
|
25476
26930
|
#
|
25477
|
-
|
25478
|
-
|
25479
|
-
|
26931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListConnectorsV2Response AWS API Documentation
|
26932
|
+
#
|
26933
|
+
class ListConnectorsV2Response < Struct.new(
|
26934
|
+
:next_token,
|
26935
|
+
:connectors)
|
25480
26936
|
SENSITIVE = []
|
25481
26937
|
include Aws::Structure
|
25482
26938
|
end
|
@@ -25667,11 +27123,17 @@ module Aws::SecurityHub
|
|
25667
27123
|
# returned from the previous response.
|
25668
27124
|
# @return [String]
|
25669
27125
|
#
|
27126
|
+
# @!attribute [rw] feature
|
27127
|
+
# The feature where the delegated administrator account is listed.
|
27128
|
+
# Defaults to Security Hub if not specified.
|
27129
|
+
# @return [String]
|
27130
|
+
#
|
25670
27131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListOrganizationAdminAccountsRequest AWS API Documentation
|
25671
27132
|
#
|
25672
27133
|
class ListOrganizationAdminAccountsRequest < Struct.new(
|
25673
27134
|
:max_results,
|
25674
|
-
:next_token
|
27135
|
+
:next_token,
|
27136
|
+
:feature)
|
25675
27137
|
SENSITIVE = []
|
25676
27138
|
include Aws::Structure
|
25677
27139
|
end
|
@@ -25684,11 +27146,17 @@ module Aws::SecurityHub
|
|
25684
27146
|
# The pagination token to use to request the next page of results.
|
25685
27147
|
# @return [String]
|
25686
27148
|
#
|
27149
|
+
# @!attribute [rw] feature
|
27150
|
+
# The feature where the delegated administrator account is listed.
|
27151
|
+
# Defaults to Security Hub CSPM if not specified.
|
27152
|
+
# @return [String]
|
27153
|
+
#
|
25687
27154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListOrganizationAdminAccountsResponse AWS API Documentation
|
25688
27155
|
#
|
25689
27156
|
class ListOrganizationAdminAccountsResponse < Struct.new(
|
25690
27157
|
:admin_accounts,
|
25691
|
-
:next_token
|
27158
|
+
:next_token,
|
27159
|
+
:feature)
|
25692
27160
|
SENSITIVE = []
|
25693
27161
|
include Aws::Structure
|
25694
27162
|
end
|
@@ -26528,6 +27996,156 @@ module Aws::SecurityHub
|
|
26528
27996
|
include Aws::Structure
|
26529
27997
|
end
|
26530
27998
|
|
27999
|
+
# Enables filtering of security findings based on boolean field values
|
28000
|
+
# in OCSF.
|
28001
|
+
#
|
28002
|
+
# @!attribute [rw] field_name
|
28003
|
+
# The name of the field.
|
28004
|
+
# @return [String]
|
28005
|
+
#
|
28006
|
+
# @!attribute [rw] filter
|
28007
|
+
# Boolean filter for querying findings.
|
28008
|
+
# @return [Types::BooleanFilter]
|
28009
|
+
#
|
28010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfBooleanFilter AWS API Documentation
|
28011
|
+
#
|
28012
|
+
class OcsfBooleanFilter < Struct.new(
|
28013
|
+
:field_name,
|
28014
|
+
:filter)
|
28015
|
+
SENSITIVE = []
|
28016
|
+
include Aws::Structure
|
28017
|
+
end
|
28018
|
+
|
28019
|
+
# Enables filtering of security findings based on date and timestamp
|
28020
|
+
# fields in OCSF.
|
28021
|
+
#
|
28022
|
+
# @!attribute [rw] field_name
|
28023
|
+
# The name of the field.
|
28024
|
+
# @return [String]
|
28025
|
+
#
|
28026
|
+
# @!attribute [rw] filter
|
28027
|
+
# A date filter for querying findings.
|
28028
|
+
# @return [Types::DateFilter]
|
28029
|
+
#
|
28030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfDateFilter AWS API Documentation
|
28031
|
+
#
|
28032
|
+
class OcsfDateFilter < Struct.new(
|
28033
|
+
:field_name,
|
28034
|
+
:filter)
|
28035
|
+
SENSITIVE = []
|
28036
|
+
include Aws::Structure
|
28037
|
+
end
|
28038
|
+
|
28039
|
+
# Specifies the filtering criteria for security findings using OCSF.
|
28040
|
+
#
|
28041
|
+
# @!attribute [rw] composite_filters
|
28042
|
+
# Enables the creation of complex filtering conditions by combining
|
28043
|
+
# filter criteria.
|
28044
|
+
# @return [Array<Types::CompositeFilter>]
|
28045
|
+
#
|
28046
|
+
# @!attribute [rw] composite_operator
|
28047
|
+
# The logical operators used to combine the filtering on multiple
|
28048
|
+
# `CompositeFilters`.
|
28049
|
+
# @return [String]
|
28050
|
+
#
|
28051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfFindingFilters AWS API Documentation
|
28052
|
+
#
|
28053
|
+
class OcsfFindingFilters < Struct.new(
|
28054
|
+
:composite_filters,
|
28055
|
+
:composite_operator)
|
28056
|
+
SENSITIVE = []
|
28057
|
+
include Aws::Structure
|
28058
|
+
end
|
28059
|
+
|
28060
|
+
# Provides a standard to identify security findings using OCSF.
|
28061
|
+
#
|
28062
|
+
# @!attribute [rw] cloud_account_uid
|
28063
|
+
# Finding cloud.account.uid, which is a unique identifier in the
|
28064
|
+
# Amazon Web Services account..
|
28065
|
+
# @return [String]
|
28066
|
+
#
|
28067
|
+
# @!attribute [rw] finding_info_uid
|
28068
|
+
# Finding finding\_info.uid, which is a unique identifier for the
|
28069
|
+
# finding from the finding provider.
|
28070
|
+
# @return [String]
|
28071
|
+
#
|
28072
|
+
# @!attribute [rw] metadata_product_uid
|
28073
|
+
# Finding metadata.product.uid, which is a unique identifier for the
|
28074
|
+
# product.
|
28075
|
+
# @return [String]
|
28076
|
+
#
|
28077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfFindingIdentifier AWS API Documentation
|
28078
|
+
#
|
28079
|
+
class OcsfFindingIdentifier < Struct.new(
|
28080
|
+
:cloud_account_uid,
|
28081
|
+
:finding_info_uid,
|
28082
|
+
:metadata_product_uid)
|
28083
|
+
SENSITIVE = []
|
28084
|
+
include Aws::Structure
|
28085
|
+
end
|
28086
|
+
|
28087
|
+
# Enables filtering of security findings based on map field values in
|
28088
|
+
# OCSF.
|
28089
|
+
#
|
28090
|
+
# @!attribute [rw] field_name
|
28091
|
+
# The name of the field.
|
28092
|
+
# @return [String]
|
28093
|
+
#
|
28094
|
+
# @!attribute [rw] filter
|
28095
|
+
# A map filter for filtering Security Hub findings. Each map filter
|
28096
|
+
# provides the field to check for, the value to check for, and the
|
28097
|
+
# comparison operator.
|
28098
|
+
# @return [Types::MapFilter]
|
28099
|
+
#
|
28100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfMapFilter AWS API Documentation
|
28101
|
+
#
|
28102
|
+
class OcsfMapFilter < Struct.new(
|
28103
|
+
:field_name,
|
28104
|
+
:filter)
|
28105
|
+
SENSITIVE = []
|
28106
|
+
include Aws::Structure
|
28107
|
+
end
|
28108
|
+
|
28109
|
+
# Enables filtering of security findings based on numerical field values
|
28110
|
+
# in OCSF.
|
28111
|
+
#
|
28112
|
+
# @!attribute [rw] field_name
|
28113
|
+
# The name of the field.
|
28114
|
+
# @return [String]
|
28115
|
+
#
|
28116
|
+
# @!attribute [rw] filter
|
28117
|
+
# A number filter for querying findings.
|
28118
|
+
# @return [Types::NumberFilter]
|
28119
|
+
#
|
28120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfNumberFilter AWS API Documentation
|
28121
|
+
#
|
28122
|
+
class OcsfNumberFilter < Struct.new(
|
28123
|
+
:field_name,
|
28124
|
+
:filter)
|
28125
|
+
SENSITIVE = []
|
28126
|
+
include Aws::Structure
|
28127
|
+
end
|
28128
|
+
|
28129
|
+
# Enables filtering of security findings based on string field values in
|
28130
|
+
# OCSF.
|
28131
|
+
#
|
28132
|
+
# @!attribute [rw] field_name
|
28133
|
+
# The name of the field.
|
28134
|
+
# @return [String]
|
28135
|
+
#
|
28136
|
+
# @!attribute [rw] filter
|
28137
|
+
# A string filter for filtering Security Hub findings.
|
28138
|
+
# @return [Types::StringFilter]
|
28139
|
+
#
|
28140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/OcsfStringFilter AWS API Documentation
|
28141
|
+
#
|
28142
|
+
class OcsfStringFilter < Struct.new(
|
28143
|
+
:field_name,
|
28144
|
+
:filter)
|
28145
|
+
SENSITIVE = []
|
28146
|
+
include Aws::Structure
|
28147
|
+
end
|
28148
|
+
|
26531
28149
|
# Provides information about the way an organization is configured in
|
26532
28150
|
# Security Hub.
|
26533
28151
|
#
|
@@ -27073,6 +28691,51 @@ module Aws::SecurityHub
|
|
27073
28691
|
include Aws::Structure
|
27074
28692
|
end
|
27075
28693
|
|
28694
|
+
# Defines the structure for the productV2.
|
28695
|
+
#
|
28696
|
+
# @!attribute [rw] product_v2_name
|
28697
|
+
# The name of the productV2.
|
28698
|
+
# @return [String]
|
28699
|
+
#
|
28700
|
+
# @!attribute [rw] company_name
|
28701
|
+
# The name of the organization or vendor that provides the productV2.
|
28702
|
+
# @return [String]
|
28703
|
+
#
|
28704
|
+
# @!attribute [rw] description
|
28705
|
+
# Detailed information about the productV2.
|
28706
|
+
# @return [String]
|
28707
|
+
#
|
28708
|
+
# @!attribute [rw] categories
|
28709
|
+
# The domains or functional areas the productV2 addresses.
|
28710
|
+
# @return [Array<String>]
|
28711
|
+
#
|
28712
|
+
# @!attribute [rw] integration_v2_types
|
28713
|
+
# The type of integration.
|
28714
|
+
# @return [Array<String>]
|
28715
|
+
#
|
28716
|
+
# @!attribute [rw] marketplace_url
|
28717
|
+
# The console URL where you can purchase or subscribe to products.
|
28718
|
+
# @return [String]
|
28719
|
+
#
|
28720
|
+
# @!attribute [rw] activation_url
|
28721
|
+
# The URL to the serviceV@ or productV2 documentation about the
|
28722
|
+
# integration, which includes how to activate the integration.
|
28723
|
+
# @return [String]
|
28724
|
+
#
|
28725
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ProductV2 AWS API Documentation
|
28726
|
+
#
|
28727
|
+
class ProductV2 < Struct.new(
|
28728
|
+
:product_v2_name,
|
28729
|
+
:company_name,
|
28730
|
+
:description,
|
28731
|
+
:categories,
|
28732
|
+
:integration_v2_types,
|
28733
|
+
:marketplace_url,
|
28734
|
+
:activation_url)
|
28735
|
+
SENSITIVE = []
|
28736
|
+
include Aws::Structure
|
28737
|
+
end
|
28738
|
+
|
27076
28739
|
# Describes a virtual private gateway propagating route.
|
27077
28740
|
#
|
27078
28741
|
# @!attribute [rw] gateway_id
|
@@ -27087,6 +28750,105 @@ module Aws::SecurityHub
|
|
27087
28750
|
include Aws::Structure
|
27088
28751
|
end
|
27089
28752
|
|
28753
|
+
# The initial configuration settings required to establish an
|
28754
|
+
# integration between Security Hub and third-party provider.
|
28755
|
+
#
|
28756
|
+
# @note ProviderConfiguration is a union - when making an API calls you must set exactly one of the members.
|
28757
|
+
#
|
28758
|
+
# @!attribute [rw] jira_cloud
|
28759
|
+
# The configuration settings required to establish an integration with
|
28760
|
+
# Jira Cloud.
|
28761
|
+
# @return [Types::JiraCloudProviderConfiguration]
|
28762
|
+
#
|
28763
|
+
# @!attribute [rw] service_now
|
28764
|
+
# The configuration settings required to establish an integration with
|
28765
|
+
# ServiceNow ITSM.
|
28766
|
+
# @return [Types::ServiceNowProviderConfiguration]
|
28767
|
+
#
|
28768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ProviderConfiguration AWS API Documentation
|
28769
|
+
#
|
28770
|
+
class ProviderConfiguration < Struct.new(
|
28771
|
+
:jira_cloud,
|
28772
|
+
:service_now,
|
28773
|
+
:unknown)
|
28774
|
+
SENSITIVE = []
|
28775
|
+
include Aws::Structure
|
28776
|
+
include Aws::Structure::Union
|
28777
|
+
|
28778
|
+
class JiraCloud < ProviderConfiguration; end
|
28779
|
+
class ServiceNow < ProviderConfiguration; end
|
28780
|
+
class Unknown < ProviderConfiguration; end
|
28781
|
+
end
|
28782
|
+
|
28783
|
+
# The third-party provider detail for a service configuration.
|
28784
|
+
#
|
28785
|
+
# @note ProviderDetail is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProviderDetail corresponding to the set member.
|
28786
|
+
#
|
28787
|
+
# @!attribute [rw] jira_cloud
|
28788
|
+
# Details about a Jira Cloud integration.
|
28789
|
+
# @return [Types::JiraCloudDetail]
|
28790
|
+
#
|
28791
|
+
# @!attribute [rw] service_now
|
28792
|
+
# Details about a ServiceNow ITSM integration.
|
28793
|
+
# @return [Types::ServiceNowDetail]
|
28794
|
+
#
|
28795
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ProviderDetail AWS API Documentation
|
28796
|
+
#
|
28797
|
+
class ProviderDetail < Struct.new(
|
28798
|
+
:jira_cloud,
|
28799
|
+
:service_now,
|
28800
|
+
:unknown)
|
28801
|
+
SENSITIVE = []
|
28802
|
+
include Aws::Structure
|
28803
|
+
include Aws::Structure::Union
|
28804
|
+
|
28805
|
+
class JiraCloud < ProviderDetail; end
|
28806
|
+
class ServiceNow < ProviderDetail; end
|
28807
|
+
class Unknown < ProviderDetail; end
|
28808
|
+
end
|
28809
|
+
|
28810
|
+
# The connectorV2 third-party provider configuration summary.
|
28811
|
+
#
|
28812
|
+
# @!attribute [rw] provider_name
|
28813
|
+
# The name of the provider.
|
28814
|
+
# @return [String]
|
28815
|
+
#
|
28816
|
+
# @!attribute [rw] connector_status
|
28817
|
+
# The status for the connectorV2.
|
28818
|
+
# @return [String]
|
28819
|
+
#
|
28820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ProviderSummary AWS API Documentation
|
28821
|
+
#
|
28822
|
+
class ProviderSummary < Struct.new(
|
28823
|
+
:provider_name,
|
28824
|
+
:connector_status)
|
28825
|
+
SENSITIVE = []
|
28826
|
+
include Aws::Structure
|
28827
|
+
end
|
28828
|
+
|
28829
|
+
# The parameters required to update the configuration of an integration
|
28830
|
+
# provider.
|
28831
|
+
#
|
28832
|
+
# @note ProviderUpdateConfiguration is a union - when making an API calls you must set exactly one of the members.
|
28833
|
+
#
|
28834
|
+
# @!attribute [rw] jira_cloud
|
28835
|
+
# The parameters required to update the configuration for a Jira Cloud
|
28836
|
+
# integration.
|
28837
|
+
# @return [Types::JiraCloudUpdateConfiguration]
|
28838
|
+
#
|
28839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ProviderUpdateConfiguration AWS API Documentation
|
28840
|
+
#
|
28841
|
+
class ProviderUpdateConfiguration < Struct.new(
|
28842
|
+
:jira_cloud,
|
28843
|
+
:unknown)
|
28844
|
+
SENSITIVE = []
|
28845
|
+
include Aws::Structure
|
28846
|
+
include Aws::Structure::Union
|
28847
|
+
|
28848
|
+
class JiraCloud < ProviderUpdateConfiguration; end
|
28849
|
+
class Unknown < ProviderUpdateConfiguration; end
|
28850
|
+
end
|
28851
|
+
|
27090
28852
|
# Identifies where the sensitive data begins and ends.
|
27091
28853
|
#
|
27092
28854
|
# @!attribute [rw] start
|
@@ -27873,39 +29635,367 @@ module Aws::SecurityHub
|
|
27873
29635
|
include Aws::Structure
|
27874
29636
|
end
|
27875
29637
|
|
27876
|
-
#
|
27877
|
-
#
|
27878
|
-
#
|
29638
|
+
# A list of summaries for all finding types on a resource.
|
29639
|
+
#
|
29640
|
+
# @!attribute [rw] finding_type
|
29641
|
+
# The category or classification of the security finding.
|
29642
|
+
# @return [String]
|
29643
|
+
#
|
29644
|
+
# @!attribute [rw] product_name
|
29645
|
+
# The name of the product associated with the security finding.
|
29646
|
+
# @return [String]
|
29647
|
+
#
|
29648
|
+
# @!attribute [rw] total_findings
|
29649
|
+
# The total count of security findings.
|
29650
|
+
# @return [Integer]
|
29651
|
+
#
|
29652
|
+
# @!attribute [rw] severities
|
29653
|
+
# A breakdown of security findings by their severity levels.
|
29654
|
+
# @return [Types::ResourceSeverityBreakdown]
|
29655
|
+
#
|
29656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceFindingsSummary AWS API Documentation
|
29657
|
+
#
|
29658
|
+
class ResourceFindingsSummary < Struct.new(
|
29659
|
+
:finding_type,
|
29660
|
+
:product_name,
|
29661
|
+
:total_findings,
|
29662
|
+
:severities)
|
29663
|
+
SENSITIVE = []
|
29664
|
+
include Aws::Structure
|
29665
|
+
end
|
29666
|
+
|
29667
|
+
# Defines the configuration for organizing and categorizing Amazon Web
|
29668
|
+
# Services resources based on associated security findings.
|
29669
|
+
#
|
29670
|
+
# @!attribute [rw] group_by_field
|
29671
|
+
# Specifies the attribute that resources should be grouped by.
|
29672
|
+
# @return [String]
|
29673
|
+
#
|
29674
|
+
# @!attribute [rw] filters
|
29675
|
+
# The criteria used to select resources and associated security
|
29676
|
+
# findings.
|
29677
|
+
# @return [Types::ResourcesFilters]
|
29678
|
+
#
|
29679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceGroupByRule AWS API Documentation
|
29680
|
+
#
|
29681
|
+
class ResourceGroupByRule < Struct.new(
|
29682
|
+
:group_by_field,
|
29683
|
+
:filters)
|
29684
|
+
SENSITIVE = []
|
29685
|
+
include Aws::Structure
|
29686
|
+
end
|
29687
|
+
|
29688
|
+
# The request was rejected because it conflicts with the resource's
|
29689
|
+
# availability. For example, you tried to update a security control
|
29690
|
+
# that's currently in the `UPDATING` state.
|
29691
|
+
#
|
29692
|
+
# @!attribute [rw] message
|
29693
|
+
# @return [String]
|
29694
|
+
#
|
29695
|
+
# @!attribute [rw] code
|
29696
|
+
# @return [String]
|
29697
|
+
#
|
29698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceInUseException AWS API Documentation
|
29699
|
+
#
|
29700
|
+
class ResourceInUseException < Struct.new(
|
29701
|
+
:message,
|
29702
|
+
:code)
|
29703
|
+
SENSITIVE = []
|
29704
|
+
include Aws::Structure
|
29705
|
+
end
|
29706
|
+
|
29707
|
+
# The request was rejected because we can't find the specified
|
29708
|
+
# resource.
|
29709
|
+
#
|
29710
|
+
# @!attribute [rw] message
|
29711
|
+
# @return [String]
|
29712
|
+
#
|
29713
|
+
# @!attribute [rw] code
|
29714
|
+
# @return [String]
|
29715
|
+
#
|
29716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceNotFoundException AWS API Documentation
|
29717
|
+
#
|
29718
|
+
class ResourceNotFoundException < Struct.new(
|
29719
|
+
:message,
|
29720
|
+
:code)
|
29721
|
+
SENSITIVE = []
|
29722
|
+
include Aws::Structure
|
29723
|
+
end
|
29724
|
+
|
29725
|
+
# Provides comprehensive details about an Amazon Web Services resource
|
29726
|
+
# and its associated security findings.
|
29727
|
+
#
|
29728
|
+
# @!attribute [rw] resource_arn
|
29729
|
+
# Specifies the ARN that uniquely identifies a resource.
|
29730
|
+
# @return [String]
|
29731
|
+
#
|
29732
|
+
# @!attribute [rw] resource_id
|
29733
|
+
# The unique identifier for a resource.
|
29734
|
+
# @return [String]
|
29735
|
+
#
|
29736
|
+
# @!attribute [rw] account_id
|
29737
|
+
# The Amazon Web Services account that owns the resource.
|
29738
|
+
# @return [String]
|
29739
|
+
#
|
29740
|
+
# @!attribute [rw] region
|
29741
|
+
# The Amazon Web Services Region where the resource is located.
|
29742
|
+
# @return [String]
|
29743
|
+
#
|
29744
|
+
# @!attribute [rw] resource_category
|
29745
|
+
# The grouping where the resource belongs.
|
29746
|
+
# @return [String]
|
29747
|
+
#
|
29748
|
+
# @!attribute [rw] resource_type
|
29749
|
+
# The type of resource.
|
29750
|
+
# @return [String]
|
29751
|
+
#
|
29752
|
+
# @!attribute [rw] resource_name
|
29753
|
+
# The name of the resource.
|
29754
|
+
# @return [String]
|
29755
|
+
#
|
29756
|
+
# @!attribute [rw] resource_creation_time_dt
|
29757
|
+
# The time when the resource was created.
|
29758
|
+
# @return [String]
|
29759
|
+
#
|
29760
|
+
# @!attribute [rw] resource_detail_capture_time_dt
|
29761
|
+
# The timestamp when information about the resource was captured.
|
29762
|
+
# @return [String]
|
29763
|
+
#
|
29764
|
+
# @!attribute [rw] findings_summary
|
29765
|
+
# An aggregated view of security findings associated with a resource.
|
29766
|
+
# @return [Array<Types::ResourceFindingsSummary>]
|
29767
|
+
#
|
29768
|
+
# @!attribute [rw] resource_tags
|
29769
|
+
# The key-value pairs associated with a resource.
|
29770
|
+
# @return [Array<Types::ResourceTag>]
|
29771
|
+
#
|
29772
|
+
# @!attribute [rw] resource_config
|
29773
|
+
# The configuration details of a resource.
|
29774
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
29775
|
+
#
|
29776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceResult AWS API Documentation
|
29777
|
+
#
|
29778
|
+
class ResourceResult < Struct.new(
|
29779
|
+
:resource_arn,
|
29780
|
+
:resource_id,
|
29781
|
+
:account_id,
|
29782
|
+
:region,
|
29783
|
+
:resource_category,
|
29784
|
+
:resource_type,
|
29785
|
+
:resource_name,
|
29786
|
+
:resource_creation_time_dt,
|
29787
|
+
:resource_detail_capture_time_dt,
|
29788
|
+
:findings_summary,
|
29789
|
+
:resource_tags,
|
29790
|
+
:resource_config)
|
29791
|
+
SENSITIVE = []
|
29792
|
+
include Aws::Structure
|
29793
|
+
end
|
29794
|
+
|
29795
|
+
# A comprehensive distribution of security findings by severity level
|
29796
|
+
# for Amazon Web Services resources.
|
27879
29797
|
#
|
27880
|
-
# @!attribute [rw]
|
29798
|
+
# @!attribute [rw] other
|
29799
|
+
# The number of findings not in any of the severity categories.
|
29800
|
+
# @return [Integer]
|
29801
|
+
#
|
29802
|
+
# @!attribute [rw] fatal
|
29803
|
+
# The number of findings with a severity level of fatal.
|
29804
|
+
# @return [Integer]
|
29805
|
+
#
|
29806
|
+
# @!attribute [rw] critical
|
29807
|
+
# The number of findings with a severity level of critical.
|
29808
|
+
# @return [Integer]
|
29809
|
+
#
|
29810
|
+
# @!attribute [rw] high
|
29811
|
+
# The number of findings with a severity level of high.
|
29812
|
+
# @return [Integer]
|
29813
|
+
#
|
29814
|
+
# @!attribute [rw] medium
|
29815
|
+
# The number of findings with a severity level of medium.
|
29816
|
+
# @return [Integer]
|
29817
|
+
#
|
29818
|
+
# @!attribute [rw] low
|
29819
|
+
# The number of findings with a severity level of low.
|
29820
|
+
# @return [Integer]
|
29821
|
+
#
|
29822
|
+
# @!attribute [rw] informational
|
29823
|
+
# The number of findings that provide security-related information.
|
29824
|
+
# @return [Integer]
|
29825
|
+
#
|
29826
|
+
# @!attribute [rw] unknown
|
29827
|
+
# The number of findings with a severity level cannot be determined.
|
29828
|
+
# @return [Integer]
|
29829
|
+
#
|
29830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceSeverityBreakdown AWS API Documentation
|
29831
|
+
#
|
29832
|
+
class ResourceSeverityBreakdown < Struct.new(
|
29833
|
+
:other,
|
29834
|
+
:fatal,
|
29835
|
+
:critical,
|
29836
|
+
:high,
|
29837
|
+
:medium,
|
29838
|
+
:low,
|
29839
|
+
:informational,
|
29840
|
+
:unknown)
|
29841
|
+
SENSITIVE = []
|
29842
|
+
include Aws::Structure
|
29843
|
+
end
|
29844
|
+
|
29845
|
+
# Represents tag information associated with Amazon Web Services
|
29846
|
+
# resources.
|
29847
|
+
#
|
29848
|
+
# @!attribute [rw] key
|
29849
|
+
# The identifier or name of the tag.
|
27881
29850
|
# @return [String]
|
27882
29851
|
#
|
27883
|
-
# @!attribute [rw]
|
29852
|
+
# @!attribute [rw] value
|
29853
|
+
# The data associated with the tag key.
|
27884
29854
|
# @return [String]
|
27885
29855
|
#
|
27886
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/
|
29856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceTag AWS API Documentation
|
27887
29857
|
#
|
27888
|
-
class
|
27889
|
-
:
|
27890
|
-
:
|
29858
|
+
class ResourceTag < Struct.new(
|
29859
|
+
:key,
|
29860
|
+
:value)
|
27891
29861
|
SENSITIVE = []
|
27892
29862
|
include Aws::Structure
|
27893
29863
|
end
|
27894
29864
|
|
27895
|
-
#
|
27896
|
-
#
|
29865
|
+
# Enables the creation of criteria for Amazon Web Services resources in
|
29866
|
+
# Security Hub.
|
27897
29867
|
#
|
27898
|
-
# @!attribute [rw]
|
29868
|
+
# @!attribute [rw] string_filters
|
29869
|
+
# Enables filtering based on string field values.
|
29870
|
+
# @return [Array<Types::ResourcesStringFilter>]
|
29871
|
+
#
|
29872
|
+
# @!attribute [rw] date_filters
|
29873
|
+
# Enables filtering based on date and timestamp field values.
|
29874
|
+
# @return [Array<Types::ResourcesDateFilter>]
|
29875
|
+
#
|
29876
|
+
# @!attribute [rw] number_filters
|
29877
|
+
# Enables filtering based on numerical field values.
|
29878
|
+
# @return [Array<Types::ResourcesNumberFilter>]
|
29879
|
+
#
|
29880
|
+
# @!attribute [rw] map_filters
|
29881
|
+
# Enables filtering based on map-based field values.
|
29882
|
+
# @return [Array<Types::ResourcesMapFilter>]
|
29883
|
+
#
|
29884
|
+
# @!attribute [rw] operator
|
29885
|
+
# The logical operator used to combine multiple filter conditions.
|
27899
29886
|
# @return [String]
|
27900
29887
|
#
|
27901
|
-
#
|
29888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourcesCompositeFilter AWS API Documentation
|
29889
|
+
#
|
29890
|
+
class ResourcesCompositeFilter < Struct.new(
|
29891
|
+
:string_filters,
|
29892
|
+
:date_filters,
|
29893
|
+
:number_filters,
|
29894
|
+
:map_filters,
|
29895
|
+
:operator)
|
29896
|
+
SENSITIVE = []
|
29897
|
+
include Aws::Structure
|
29898
|
+
end
|
29899
|
+
|
29900
|
+
# Enables the filtering of Amazon Web Services resources based on date
|
29901
|
+
# and timestamp attributes.
|
29902
|
+
#
|
29903
|
+
# @!attribute [rw] field_name
|
29904
|
+
# The name of the field.
|
27902
29905
|
# @return [String]
|
27903
29906
|
#
|
27904
|
-
#
|
29907
|
+
# @!attribute [rw] filter
|
29908
|
+
# A date filter for querying findings.
|
29909
|
+
# @return [Types::DateFilter]
|
27905
29910
|
#
|
27906
|
-
|
27907
|
-
|
27908
|
-
|
29911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourcesDateFilter AWS API Documentation
|
29912
|
+
#
|
29913
|
+
class ResourcesDateFilter < Struct.new(
|
29914
|
+
:field_name,
|
29915
|
+
:filter)
|
29916
|
+
SENSITIVE = []
|
29917
|
+
include Aws::Structure
|
29918
|
+
end
|
29919
|
+
|
29920
|
+
# Enables filtering of Amazon Web Services resources based on data.
|
29921
|
+
#
|
29922
|
+
# @!attribute [rw] composite_filters
|
29923
|
+
# A collection of complex filtering conditions that can be applied to
|
29924
|
+
# Amazon Web Services resources.
|
29925
|
+
# @return [Array<Types::ResourcesCompositeFilter>]
|
29926
|
+
#
|
29927
|
+
# @!attribute [rw] composite_operator
|
29928
|
+
# The logical operator used to combine multiple filter conditions in
|
29929
|
+
# the structure.
|
29930
|
+
# @return [String]
|
29931
|
+
#
|
29932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourcesFilters AWS API Documentation
|
29933
|
+
#
|
29934
|
+
class ResourcesFilters < Struct.new(
|
29935
|
+
:composite_filters,
|
29936
|
+
:composite_operator)
|
29937
|
+
SENSITIVE = []
|
29938
|
+
include Aws::Structure
|
29939
|
+
end
|
29940
|
+
|
29941
|
+
# Enables filtering of Amazon Web Services resources based on key-value
|
29942
|
+
# map attributes.
|
29943
|
+
#
|
29944
|
+
# @!attribute [rw] field_name
|
29945
|
+
# The name of the field.
|
29946
|
+
# @return [String]
|
29947
|
+
#
|
29948
|
+
# @!attribute [rw] filter
|
29949
|
+
# A map filter for filtering Security Hub findings. Each map filter
|
29950
|
+
# provides the field to check for, the value to check for, and the
|
29951
|
+
# comparison operator.
|
29952
|
+
# @return [Types::MapFilter]
|
29953
|
+
#
|
29954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourcesMapFilter AWS API Documentation
|
29955
|
+
#
|
29956
|
+
class ResourcesMapFilter < Struct.new(
|
29957
|
+
:field_name,
|
29958
|
+
:filter)
|
29959
|
+
SENSITIVE = []
|
29960
|
+
include Aws::Structure
|
29961
|
+
end
|
29962
|
+
|
29963
|
+
# Enables filtering of Amazon Web Services resources based on numerical
|
29964
|
+
# values.
|
29965
|
+
#
|
29966
|
+
# @!attribute [rw] field_name
|
29967
|
+
# The name of the field.
|
29968
|
+
# @return [String]
|
29969
|
+
#
|
29970
|
+
# @!attribute [rw] filter
|
29971
|
+
# A number filter for querying findings.
|
29972
|
+
# @return [Types::NumberFilter]
|
29973
|
+
#
|
29974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourcesNumberFilter AWS API Documentation
|
29975
|
+
#
|
29976
|
+
class ResourcesNumberFilter < Struct.new(
|
29977
|
+
:field_name,
|
29978
|
+
:filter)
|
29979
|
+
SENSITIVE = []
|
29980
|
+
include Aws::Structure
|
29981
|
+
end
|
29982
|
+
|
29983
|
+
# Enables filtering of Amazon Web Services resources based on string
|
29984
|
+
# field values.
|
29985
|
+
#
|
29986
|
+
# @!attribute [rw] field_name
|
29987
|
+
# The name of the field.
|
29988
|
+
# @return [String]
|
29989
|
+
#
|
29990
|
+
# @!attribute [rw] filter
|
29991
|
+
# A string filter for filtering Security Hub findings.
|
29992
|
+
# @return [Types::StringFilter]
|
29993
|
+
#
|
29994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourcesStringFilter AWS API Documentation
|
29995
|
+
#
|
29996
|
+
class ResourcesStringFilter < Struct.new(
|
29997
|
+
:field_name,
|
29998
|
+
:filter)
|
27909
29999
|
SENSITIVE = []
|
27910
30000
|
include Aws::Structure
|
27911
30001
|
end
|
@@ -28836,6 +30926,55 @@ module Aws::SecurityHub
|
|
28836
30926
|
include Aws::Structure
|
28837
30927
|
end
|
28838
30928
|
|
30929
|
+
# Information about a ServiceNow ITSM integration.
|
30930
|
+
#
|
30931
|
+
# @!attribute [rw] instance_name
|
30932
|
+
# The instanceName of ServiceNow ITSM.
|
30933
|
+
# @return [String]
|
30934
|
+
#
|
30935
|
+
# @!attribute [rw] client_id
|
30936
|
+
# The clientId of ServiceNow ITSM.
|
30937
|
+
# @return [String]
|
30938
|
+
#
|
30939
|
+
# @!attribute [rw] auth_status
|
30940
|
+
# The status of the authorization between Jira Cloud and the service.
|
30941
|
+
# @return [String]
|
30942
|
+
#
|
30943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ServiceNowDetail AWS API Documentation
|
30944
|
+
#
|
30945
|
+
class ServiceNowDetail < Struct.new(
|
30946
|
+
:instance_name,
|
30947
|
+
:client_id,
|
30948
|
+
:auth_status)
|
30949
|
+
SENSITIVE = []
|
30950
|
+
include Aws::Structure
|
30951
|
+
end
|
30952
|
+
|
30953
|
+
# The initial configuration settings required to establish an
|
30954
|
+
# integration between Security Hub and ServiceNow ITSM.
|
30955
|
+
#
|
30956
|
+
# @!attribute [rw] instance_name
|
30957
|
+
# The instance name of ServiceNow ITSM.
|
30958
|
+
# @return [String]
|
30959
|
+
#
|
30960
|
+
# @!attribute [rw] client_id
|
30961
|
+
# The client ID of ServiceNow ITSM.
|
30962
|
+
# @return [String]
|
30963
|
+
#
|
30964
|
+
# @!attribute [rw] client_secret
|
30965
|
+
# The client secret of ServiceNow ITSM.
|
30966
|
+
# @return [String]
|
30967
|
+
#
|
30968
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ServiceNowProviderConfiguration AWS API Documentation
|
30969
|
+
#
|
30970
|
+
class ServiceNowProviderConfiguration < Struct.new(
|
30971
|
+
:instance_name,
|
30972
|
+
:client_id,
|
30973
|
+
:client_secret)
|
30974
|
+
SENSITIVE = [:client_secret]
|
30975
|
+
include Aws::Structure
|
30976
|
+
end
|
30977
|
+
|
28839
30978
|
# The severity of the finding.
|
28840
30979
|
#
|
28841
30980
|
# The finding provider can provide the initial severity. The finding
|
@@ -29910,8 +32049,10 @@ module Aws::SecurityHub
|
|
29910
32049
|
# * `ResourceType NOT_EQUALS AwsEc2NetworkInterface`
|
29911
32050
|
#
|
29912
32051
|
# `CONTAINS` and `NOT_CONTAINS` operators can be used only with
|
29913
|
-
# automation rules.
|
29914
|
-
#
|
32052
|
+
# automation rules V1. `CONTAINS_WORD` operator is only supported in
|
32053
|
+
# `GetFindingsV2`, `GetFindingStatisticsV2`, `GetResourcesV2`, and
|
32054
|
+
# `GetResourceStatisticsV2` APIs. For more information, see
|
32055
|
+
# [Automation rules][1] in the *Security Hub User Guide*.
|
29915
32056
|
#
|
29916
32057
|
#
|
29917
32058
|
#
|
@@ -30109,6 +32250,23 @@ module Aws::SecurityHub
|
|
30109
32250
|
include Aws::Structure
|
30110
32251
|
end
|
30111
32252
|
|
32253
|
+
# The limit on the number of requests per second was exceeded.
|
32254
|
+
#
|
32255
|
+
# @!attribute [rw] message
|
32256
|
+
# @return [String]
|
32257
|
+
#
|
32258
|
+
# @!attribute [rw] code
|
32259
|
+
# @return [String]
|
32260
|
+
#
|
32261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ThrottlingException AWS API Documentation
|
32262
|
+
#
|
32263
|
+
class ThrottlingException < Struct.new(
|
32264
|
+
:message,
|
32265
|
+
:code)
|
32266
|
+
SENSITIVE = []
|
32267
|
+
include Aws::Structure
|
32268
|
+
end
|
32269
|
+
|
30112
32270
|
# A list of objects containing `RuleArn`, `ErrorCode`, and
|
30113
32271
|
# `ErrorMessage`. This parameter tells you which automation rules the
|
30114
32272
|
# request didn't process and why.
|
@@ -30320,6 +32478,105 @@ module Aws::SecurityHub
|
|
30320
32478
|
#
|
30321
32479
|
class UpdateActionTargetResponse < Aws::EmptyStructure; end
|
30322
32480
|
|
32481
|
+
# @!attribute [rw] aggregator_v2_arn
|
32482
|
+
# The ARN of the Aggregator V2.
|
32483
|
+
# @return [String]
|
32484
|
+
#
|
32485
|
+
# @!attribute [rw] region_linking_mode
|
32486
|
+
# Determines how Amazon Web Services Regions should be linked to the
|
32487
|
+
# Aggregator V2.
|
32488
|
+
# @return [String]
|
32489
|
+
#
|
32490
|
+
# @!attribute [rw] linked_regions
|
32491
|
+
# A list of Amazon Web Services Regions linked to the aggegation
|
32492
|
+
# Region.
|
32493
|
+
# @return [Array<String>]
|
32494
|
+
#
|
32495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateAggregatorV2Request AWS API Documentation
|
32496
|
+
#
|
32497
|
+
class UpdateAggregatorV2Request < Struct.new(
|
32498
|
+
:aggregator_v2_arn,
|
32499
|
+
:region_linking_mode,
|
32500
|
+
:linked_regions)
|
32501
|
+
SENSITIVE = []
|
32502
|
+
include Aws::Structure
|
32503
|
+
end
|
32504
|
+
|
32505
|
+
# @!attribute [rw] aggregator_v2_arn
|
32506
|
+
# The ARN of the Aggregator V2.
|
32507
|
+
# @return [String]
|
32508
|
+
#
|
32509
|
+
# @!attribute [rw] aggregation_region
|
32510
|
+
# The Amazon Web Services Region where data is aggregated.
|
32511
|
+
# @return [String]
|
32512
|
+
#
|
32513
|
+
# @!attribute [rw] region_linking_mode
|
32514
|
+
# Determines how Amazon Web Services Regions should be linked to the
|
32515
|
+
# Aggregator V2.
|
32516
|
+
# @return [String]
|
32517
|
+
#
|
32518
|
+
# @!attribute [rw] linked_regions
|
32519
|
+
# A list of Amazon Web Services Regions linked to the aggegation
|
32520
|
+
# Region.
|
32521
|
+
# @return [Array<String>]
|
32522
|
+
#
|
32523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateAggregatorV2Response AWS API Documentation
|
32524
|
+
#
|
32525
|
+
class UpdateAggregatorV2Response < Struct.new(
|
32526
|
+
:aggregator_v2_arn,
|
32527
|
+
:aggregation_region,
|
32528
|
+
:region_linking_mode,
|
32529
|
+
:linked_regions)
|
32530
|
+
SENSITIVE = []
|
32531
|
+
include Aws::Structure
|
32532
|
+
end
|
32533
|
+
|
32534
|
+
# @!attribute [rw] identifier
|
32535
|
+
# The ARN of the automation rule.
|
32536
|
+
# @return [String]
|
32537
|
+
#
|
32538
|
+
# @!attribute [rw] rule_status
|
32539
|
+
# The status of the automation rule.
|
32540
|
+
# @return [String]
|
32541
|
+
#
|
32542
|
+
# @!attribute [rw] rule_order
|
32543
|
+
# Represents a value for the rule priority.
|
32544
|
+
# @return [Float]
|
32545
|
+
#
|
32546
|
+
# @!attribute [rw] description
|
32547
|
+
# A description of the automation rule.
|
32548
|
+
# @return [String]
|
32549
|
+
#
|
32550
|
+
# @!attribute [rw] rule_name
|
32551
|
+
# The name of the automation rule.
|
32552
|
+
# @return [String]
|
32553
|
+
#
|
32554
|
+
# @!attribute [rw] criteria
|
32555
|
+
# The filtering type and configuration of the automation rule.
|
32556
|
+
# @return [Types::Criteria]
|
32557
|
+
#
|
32558
|
+
# @!attribute [rw] actions
|
32559
|
+
# A list of actions to be performed when the rule criteria is met.
|
32560
|
+
# @return [Array<Types::AutomationRulesActionV2>]
|
32561
|
+
#
|
32562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateAutomationRuleV2Request AWS API Documentation
|
32563
|
+
#
|
32564
|
+
class UpdateAutomationRuleV2Request < Struct.new(
|
32565
|
+
:identifier,
|
32566
|
+
:rule_status,
|
32567
|
+
:rule_order,
|
32568
|
+
:description,
|
32569
|
+
:rule_name,
|
32570
|
+
:criteria,
|
32571
|
+
:actions)
|
32572
|
+
SENSITIVE = []
|
32573
|
+
include Aws::Structure
|
32574
|
+
end
|
32575
|
+
|
32576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateAutomationRuleV2Response AWS API Documentation
|
32577
|
+
#
|
32578
|
+
class UpdateAutomationRuleV2Response < Aws::EmptyStructure; end
|
32579
|
+
|
30323
32580
|
# Specifies the parameters to update in an existing automation rule.
|
30324
32581
|
#
|
30325
32582
|
# @!attribute [rw] rule_arn
|
@@ -30490,6 +32747,37 @@ module Aws::SecurityHub
|
|
30490
32747
|
include Aws::Structure
|
30491
32748
|
end
|
30492
32749
|
|
32750
|
+
# @!attribute [rw] connector_id
|
32751
|
+
# The UUID of the connectorV2 to identify connectorV2 resource.
|
32752
|
+
# @return [String]
|
32753
|
+
#
|
32754
|
+
# @!attribute [rw] client_secret
|
32755
|
+
# The clientSecret of ServiceNow.
|
32756
|
+
# @return [String]
|
32757
|
+
#
|
32758
|
+
# @!attribute [rw] description
|
32759
|
+
# The description of the connectorV2.
|
32760
|
+
# @return [String]
|
32761
|
+
#
|
32762
|
+
# @!attribute [rw] provider
|
32763
|
+
# The third-party provider’s service configuration.
|
32764
|
+
# @return [Types::ProviderUpdateConfiguration]
|
32765
|
+
#
|
32766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateConnectorV2Request AWS API Documentation
|
32767
|
+
#
|
32768
|
+
class UpdateConnectorV2Request < Struct.new(
|
32769
|
+
:connector_id,
|
32770
|
+
:client_secret,
|
32771
|
+
:description,
|
32772
|
+
:provider)
|
32773
|
+
SENSITIVE = [:client_secret]
|
32774
|
+
include Aws::Structure
|
32775
|
+
end
|
32776
|
+
|
32777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateConnectorV2Response AWS API Documentation
|
32778
|
+
#
|
32779
|
+
class UpdateConnectorV2Response < Aws::EmptyStructure; end
|
32780
|
+
|
30493
32781
|
# @!attribute [rw] finding_aggregator_arn
|
30494
32782
|
# The ARN of the finding aggregator. To obtain the ARN, use
|
30495
32783
|
# `ListFindingAggregators`.
|
@@ -30827,6 +33115,24 @@ module Aws::SecurityHub
|
|
30827
33115
|
include Aws::Structure
|
30828
33116
|
end
|
30829
33117
|
|
33118
|
+
# The request has failed validation because it's missing required
|
33119
|
+
# fields or has invalid inputs.
|
33120
|
+
#
|
33121
|
+
# @!attribute [rw] message
|
33122
|
+
# @return [String]
|
33123
|
+
#
|
33124
|
+
# @!attribute [rw] code
|
33125
|
+
# @return [String]
|
33126
|
+
#
|
33127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ValidationException AWS API Documentation
|
33128
|
+
#
|
33129
|
+
class ValidationException < Struct.new(
|
33130
|
+
:message,
|
33131
|
+
:code)
|
33132
|
+
SENSITIVE = []
|
33133
|
+
include Aws::Structure
|
33134
|
+
end
|
33135
|
+
|
30830
33136
|
# Describes the mounting of a volume in a container.
|
30831
33137
|
#
|
30832
33138
|
# @!attribute [rw] name
|