aws-sdk-securityhub 1.23.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-securityhub.rb +3 -1
- data/lib/aws-sdk-securityhub/client.rb +33 -11
- data/lib/aws-sdk-securityhub/client_api.rb +12 -0
- data/lib/aws-sdk-securityhub/errors.rb +2 -0
- data/lib/aws-sdk-securityhub/resource.rb +2 -0
- data/lib/aws-sdk-securityhub/types.rb +314 -64
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a603aa340ceda544e27258ac758211dbfe9146a6339c72d415db0ada8d5f149a
|
4
|
+
data.tar.gz: 75825c633442da73a736cfdbf2b11365ea90287ce999bf955a29647af81f7be5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12a8b31aef1c80b793eafa8723e58a0c8e16f81db4a72af3a23b71b0d03cfb3caabc98c849134f438f32212e79c114de52e6ffa686fe288563d6330da6c2660c
|
7
|
+
data.tar.gz: ef2d6cb6971fc42f33d0938a67d5ab759e1ffe95a13b729871881c5992b3fcfb0c257eba0ab2b9004efff65f2c77b11200fa11cedd4c310883290e567f7d9a99
|
data/lib/aws-sdk-securityhub.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-securityhub/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::SecurityHub
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.28.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::SecurityHub
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::SecurityHub
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::SecurityHub
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::SecurityHub
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -493,6 +497,7 @@ module Aws::SecurityHub
|
|
493
497
|
# product: 1.0,
|
494
498
|
# label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
|
495
499
|
# normalized: 1,
|
500
|
+
# original: "NonEmptyString",
|
496
501
|
# },
|
497
502
|
# confidence: 1,
|
498
503
|
# criticality: 1,
|
@@ -943,6 +948,12 @@ module Aws::SecurityHub
|
|
943
948
|
# compliance: {
|
944
949
|
# status: "PASSED", # accepts PASSED, WARNING, FAILED, NOT_AVAILABLE
|
945
950
|
# related_requirements: ["NonEmptyString"],
|
951
|
+
# status_reasons: [
|
952
|
+
# {
|
953
|
+
# reason_code: "NonEmptyString", # required
|
954
|
+
# description: "NonEmptyString",
|
955
|
+
# },
|
956
|
+
# ],
|
946
957
|
# },
|
947
958
|
# verification_state: "UNKNOWN", # accepts UNKNOWN, TRUE_POSITIVE, FALSE_POSITIVE, BENIGN_POSITIVE
|
948
959
|
# workflow_state: "NEW", # accepts NEW, ASSIGNED, IN_PROGRESS, DEFERRED, RESOLVED
|
@@ -1800,7 +1811,7 @@ module Aws::SecurityHub
|
|
1800
1811
|
# Security Hub.
|
1801
1812
|
#
|
1802
1813
|
# If the account owner accepts the invitation, the account becomes a
|
1803
|
-
# member account in Security Hub
|
1814
|
+
# member account in Security Hub. A permissions policy is added that
|
1804
1815
|
# permits the master account to view the findings generated in the
|
1805
1816
|
# member account. When Security Hub is enabled in the invited account,
|
1806
1817
|
# findings start to be sent to both the member and master accounts.
|
@@ -2335,8 +2346,8 @@ module Aws::SecurityHub
|
|
2335
2346
|
# Enables the integration of a partner product with Security Hub.
|
2336
2347
|
# Integrated products send findings to Security Hub.
|
2337
2348
|
#
|
2338
|
-
# When you enable a product integration, a
|
2339
|
-
# permission for the product to send findings to Security Hub is
|
2349
|
+
# When you enable a product integration, a permissions policy that
|
2350
|
+
# grants permission for the product to send findings to Security Hub is
|
2340
2351
|
# applied.
|
2341
2352
|
#
|
2342
2353
|
# @option params [required, String] :product_arn
|
@@ -2373,9 +2384,16 @@ module Aws::SecurityHub
|
|
2373
2384
|
# integrated with Security Hub.
|
2374
2385
|
#
|
2375
2386
|
# When you use the `EnableSecurityHub` operation to enable Security Hub,
|
2376
|
-
# you also automatically enable the
|
2377
|
-
#
|
2378
|
-
#
|
2387
|
+
# you also automatically enable the following standards.
|
2388
|
+
#
|
2389
|
+
# * CIS AWS Foundations
|
2390
|
+
#
|
2391
|
+
# * AWS Foundational Security Best Practices
|
2392
|
+
#
|
2393
|
+
# You do not enable the Payment Card Industry Data Security Standard
|
2394
|
+
# (PCI DSS) standard.
|
2395
|
+
#
|
2396
|
+
# To not enable the automatically enabled standards, set
|
2379
2397
|
# `EnableDefaultStandards` to `false`.
|
2380
2398
|
#
|
2381
2399
|
# After you enable Security Hub, to enable a standard, use the `
|
@@ -2390,7 +2408,7 @@ module Aws::SecurityHub
|
|
2390
2408
|
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-settingup.html
|
2391
2409
|
#
|
2392
2410
|
# @option params [Hash<String,String>] :tags
|
2393
|
-
# The tags to add to the
|
2411
|
+
# The tags to add to the hub resource when you enable Security Hub.
|
2394
2412
|
#
|
2395
2413
|
# @option params [Boolean] :enable_default_standards
|
2396
2414
|
# Whether to enable the security standards that Security Hub has
|
@@ -3083,6 +3101,7 @@ module Aws::SecurityHub
|
|
3083
3101
|
# resp.findings[0].severity.product #=> Float
|
3084
3102
|
# resp.findings[0].severity.label #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL"
|
3085
3103
|
# resp.findings[0].severity.normalized #=> Integer
|
3104
|
+
# resp.findings[0].severity.original #=> String
|
3086
3105
|
# resp.findings[0].confidence #=> Integer
|
3087
3106
|
# resp.findings[0].criticality #=> Integer
|
3088
3107
|
# resp.findings[0].title #=> String
|
@@ -3374,6 +3393,9 @@ module Aws::SecurityHub
|
|
3374
3393
|
# resp.findings[0].compliance.status #=> String, one of "PASSED", "WARNING", "FAILED", "NOT_AVAILABLE"
|
3375
3394
|
# resp.findings[0].compliance.related_requirements #=> Array
|
3376
3395
|
# resp.findings[0].compliance.related_requirements[0] #=> String
|
3396
|
+
# resp.findings[0].compliance.status_reasons #=> Array
|
3397
|
+
# resp.findings[0].compliance.status_reasons[0].reason_code #=> String
|
3398
|
+
# resp.findings[0].compliance.status_reasons[0].description #=> String
|
3377
3399
|
# resp.findings[0].verification_state #=> String, one of "UNKNOWN", "TRUE_POSITIVE", "FALSE_POSITIVE", "BENIGN_POSITIVE"
|
3378
3400
|
# resp.findings[0].workflow_state #=> String, one of "NEW", "ASSIGNED", "IN_PROGRESS", "DEFERRED", "RESOLVED"
|
3379
3401
|
# resp.findings[0].workflow.status #=> String, one of "NEW", "NOTIFIED", "RESOLVED", "SUPPRESSED"
|
@@ -5374,7 +5396,7 @@ module Aws::SecurityHub
|
|
5374
5396
|
params: params,
|
5375
5397
|
config: config)
|
5376
5398
|
context[:gem_name] = 'aws-sdk-securityhub'
|
5377
|
-
context[:gem_version] = '1.
|
5399
|
+
context[:gem_version] = '1.28.0'
|
5378
5400
|
Seahorse::Client::Request.new(handlers, context)
|
5379
5401
|
end
|
5380
5402
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -258,6 +260,8 @@ module Aws::SecurityHub
|
|
258
260
|
StandardsSubscriptionRequest = Shapes::StructureShape.new(name: 'StandardsSubscriptionRequest')
|
259
261
|
StandardsSubscriptionRequests = Shapes::ListShape.new(name: 'StandardsSubscriptionRequests')
|
260
262
|
StandardsSubscriptions = Shapes::ListShape.new(name: 'StandardsSubscriptions')
|
263
|
+
StatusReason = Shapes::StructureShape.new(name: 'StatusReason')
|
264
|
+
StatusReasonsList = Shapes::ListShape.new(name: 'StatusReasonsList')
|
261
265
|
StringFilter = Shapes::StructureShape.new(name: 'StringFilter')
|
262
266
|
StringFilterComparison = Shapes::StringShape.new(name: 'StringFilterComparison')
|
263
267
|
StringFilterList = Shapes::ListShape.new(name: 'StringFilterList')
|
@@ -851,6 +855,7 @@ module Aws::SecurityHub
|
|
851
855
|
|
852
856
|
Compliance.add_member(:status, Shapes::ShapeRef.new(shape: ComplianceStatus, location_name: "Status"))
|
853
857
|
Compliance.add_member(:related_requirements, Shapes::ShapeRef.new(shape: RelatedRequirementsList, location_name: "RelatedRequirements"))
|
858
|
+
Compliance.add_member(:status_reasons, Shapes::ShapeRef.new(shape: StatusReasonsList, location_name: "StatusReasons"))
|
854
859
|
Compliance.struct_class = Types::Compliance
|
855
860
|
|
856
861
|
ContainerDetails.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Name"))
|
@@ -1295,6 +1300,7 @@ module Aws::SecurityHub
|
|
1295
1300
|
Severity.add_member(:product, Shapes::ShapeRef.new(shape: Double, location_name: "Product"))
|
1296
1301
|
Severity.add_member(:label, Shapes::ShapeRef.new(shape: SeverityLabel, location_name: "Label"))
|
1297
1302
|
Severity.add_member(:normalized, Shapes::ShapeRef.new(shape: Integer, location_name: "Normalized"))
|
1303
|
+
Severity.add_member(:original, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Original"))
|
1298
1304
|
Severity.struct_class = Types::Severity
|
1299
1305
|
|
1300
1306
|
SeverityUpdate.add_member(:normalized, Shapes::ShapeRef.new(shape: RatioScale, location_name: "Normalized"))
|
@@ -1349,6 +1355,12 @@ module Aws::SecurityHub
|
|
1349
1355
|
|
1350
1356
|
StandardsSubscriptions.member = Shapes::ShapeRef.new(shape: StandardsSubscription)
|
1351
1357
|
|
1358
|
+
StatusReason.add_member(:reason_code, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "ReasonCode"))
|
1359
|
+
StatusReason.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Description"))
|
1360
|
+
StatusReason.struct_class = Types::StatusReason
|
1361
|
+
|
1362
|
+
StatusReasonsList.member = Shapes::ShapeRef.new(shape: StatusReason)
|
1363
|
+
|
1352
1364
|
StringFilter.add_member(:value, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Value"))
|
1353
1365
|
StringFilter.add_member(:comparison, Shapes::ShapeRef.new(shape: StringFilterComparison, location_name: "Comparison"))
|
1354
1366
|
StringFilter.struct_class = Types::StringFilter
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -30,6 +32,7 @@ module Aws::SecurityHub
|
|
30
32
|
class AcceptInvitationRequest < Struct.new(
|
31
33
|
:master_id,
|
32
34
|
:invitation_id)
|
35
|
+
SENSITIVE = []
|
33
36
|
include Aws::Structure
|
34
37
|
end
|
35
38
|
|
@@ -51,6 +54,7 @@ module Aws::SecurityHub
|
|
51
54
|
class AccessDeniedException < Struct.new(
|
52
55
|
:message,
|
53
56
|
:code)
|
57
|
+
SENSITIVE = []
|
54
58
|
include Aws::Structure
|
55
59
|
end
|
56
60
|
|
@@ -77,6 +81,7 @@ module Aws::SecurityHub
|
|
77
81
|
class AccountDetails < Struct.new(
|
78
82
|
:account_id,
|
79
83
|
:email)
|
84
|
+
SENSITIVE = []
|
80
85
|
include Aws::Structure
|
81
86
|
end
|
82
87
|
|
@@ -100,6 +105,7 @@ module Aws::SecurityHub
|
|
100
105
|
:action_target_arn,
|
101
106
|
:name,
|
102
107
|
:description)
|
108
|
+
SENSITIVE = []
|
103
109
|
include Aws::Structure
|
104
110
|
end
|
105
111
|
|
@@ -127,6 +133,7 @@ module Aws::SecurityHub
|
|
127
133
|
class AvailabilityZone < Struct.new(
|
128
134
|
:zone_name,
|
129
135
|
:subnet_id)
|
136
|
+
SENSITIVE = []
|
130
137
|
include Aws::Structure
|
131
138
|
end
|
132
139
|
|
@@ -199,6 +206,7 @@ module Aws::SecurityHub
|
|
199
206
|
:origins,
|
200
207
|
:status,
|
201
208
|
:web_acl_id)
|
209
|
+
SENSITIVE = []
|
202
210
|
include Aws::Structure
|
203
211
|
end
|
204
212
|
|
@@ -241,12 +249,13 @@ module Aws::SecurityHub
|
|
241
249
|
:enabled,
|
242
250
|
:include_cookies,
|
243
251
|
:prefix)
|
252
|
+
SENSITIVE = []
|
244
253
|
include Aws::Structure
|
245
254
|
end
|
246
255
|
|
247
256
|
# A complex type that describes the Amazon S3 bucket, HTTP server (for
|
248
|
-
# example, a web server), Amazon MediaStore, or other server
|
249
|
-
# CloudFront gets your files.
|
257
|
+
# example, a web server), Amazon Elemental MediaStore, or other server
|
258
|
+
# from which CloudFront gets your files.
|
250
259
|
#
|
251
260
|
# @note When making an API call, you may pass AwsCloudFrontDistributionOriginItem
|
252
261
|
# data as a hash:
|
@@ -277,6 +286,7 @@ module Aws::SecurityHub
|
|
277
286
|
:domain_name,
|
278
287
|
:id,
|
279
288
|
:origin_path)
|
289
|
+
SENSITIVE = []
|
280
290
|
include Aws::Structure
|
281
291
|
end
|
282
292
|
|
@@ -305,6 +315,7 @@ module Aws::SecurityHub
|
|
305
315
|
#
|
306
316
|
class AwsCloudFrontDistributionOrigins < Struct.new(
|
307
317
|
:items)
|
318
|
+
SENSITIVE = []
|
308
319
|
include Aws::Structure
|
309
320
|
end
|
310
321
|
|
@@ -378,6 +389,7 @@ module Aws::SecurityHub
|
|
378
389
|
:source,
|
379
390
|
:service_role,
|
380
391
|
:vpc_config)
|
392
|
+
SENSITIVE = []
|
381
393
|
include Aws::Structure
|
382
394
|
end
|
383
395
|
|
@@ -425,13 +437,13 @@ module Aws::SecurityHub
|
|
425
437
|
# @!attribute [rw] type
|
426
438
|
# The type of build environment to use for related builds.
|
427
439
|
#
|
428
|
-
# The environment type `ARM_CONTAINER` is available only in
|
440
|
+
# The environment type `ARM_CONTAINER` is available only in Regions US
|
429
441
|
# East (N. Virginia), US East (Ohio), US West (Oregon), Europe
|
430
442
|
# (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific
|
431
443
|
# (Sydney), and Europe (Frankfurt).
|
432
444
|
#
|
433
445
|
# The environment type `LINUX_CONTAINER` with compute type
|
434
|
-
# build.general1.2xlarge is available only in
|
446
|
+
# build.general1.2xlarge is available only in Regions US East (N.
|
435
447
|
# Virginia), US East (N. Virginia), US West (Oregon), Canada
|
436
448
|
# (Central), Europe (Ireland), Europe (London), Europe (Frankfurt),
|
437
449
|
# Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific
|
@@ -439,10 +451,10 @@ module Aws::SecurityHub
|
|
439
451
|
# (Ningxia).
|
440
452
|
#
|
441
453
|
# The environment type `LINUX_GPU_CONTAINER` is available only in
|
442
|
-
#
|
454
|
+
# Regions US East (N. Virginia), US East (N. Virginia), US West
|
443
455
|
# (Oregon), Canada (Central), Europe (Ireland), Europe (London),
|
444
456
|
# Europe (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia
|
445
|
-
# Pacific (Singapore), Asia Pacific (Sydney)
|
457
|
+
# Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and
|
446
458
|
# China (Ningxia).
|
447
459
|
#
|
448
460
|
# Valid values: `WINDOWS_CONTAINER` \| `LINUX_CONTAINER` \|
|
@@ -456,6 +468,7 @@ module Aws::SecurityHub
|
|
456
468
|
:image_pull_credentials_type,
|
457
469
|
:registry_credential,
|
458
470
|
:type)
|
471
|
+
SENSITIVE = []
|
459
472
|
include Aws::Structure
|
460
473
|
end
|
461
474
|
|
@@ -491,6 +504,7 @@ module Aws::SecurityHub
|
|
491
504
|
class AwsCodeBuildProjectEnvironmentRegistryCredential < Struct.new(
|
492
505
|
:credential,
|
493
506
|
:credential_provider)
|
507
|
+
SENSITIVE = []
|
494
508
|
include Aws::Structure
|
495
509
|
end
|
496
510
|
|
@@ -539,8 +553,8 @@ module Aws::SecurityHub
|
|
539
553
|
# source action instead of this value.
|
540
554
|
#
|
541
555
|
# * For source code in an AWS CodeCommit repository, the HTTPS clone
|
542
|
-
# URL to the repository that contains the source code and the
|
543
|
-
#
|
556
|
+
# URL to the repository that contains the source code and the build
|
557
|
+
# spec file (for example,
|
544
558
|
# `https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name`
|
545
559
|
# ).
|
546
560
|
#
|
@@ -553,10 +567,10 @@ module Aws::SecurityHub
|
|
553
567
|
# example, `bucket-name/path/to/source-code/folder/`).
|
554
568
|
#
|
555
569
|
# * For source code in a GitHub repository, the HTTPS clone URL to the
|
556
|
-
# repository that contains the source and the
|
570
|
+
# repository that contains the source and the build spec file.
|
557
571
|
#
|
558
572
|
# * For source code in a Bitbucket repository, the HTTPS clone URL to
|
559
|
-
# the repository that contains the source and the
|
573
|
+
# the repository that contains the source and the build spec file.
|
560
574
|
# @return [String]
|
561
575
|
#
|
562
576
|
# @!attribute [rw] git_clone_depth
|
@@ -575,6 +589,7 @@ module Aws::SecurityHub
|
|
575
589
|
:location,
|
576
590
|
:git_clone_depth,
|
577
591
|
:insecure_ssl)
|
592
|
+
SENSITIVE = []
|
578
593
|
include Aws::Structure
|
579
594
|
end
|
580
595
|
|
@@ -607,6 +622,7 @@ module Aws::SecurityHub
|
|
607
622
|
:vpc_id,
|
608
623
|
:subnets,
|
609
624
|
:security_group_ids)
|
625
|
+
SENSITIVE = []
|
610
626
|
include Aws::Structure
|
611
627
|
end
|
612
628
|
|
@@ -675,6 +691,7 @@ module Aws::SecurityHub
|
|
675
691
|
:vpc_id,
|
676
692
|
:subnet_id,
|
677
693
|
:launched_at)
|
694
|
+
SENSITIVE = []
|
678
695
|
include Aws::Structure
|
679
696
|
end
|
680
697
|
|
@@ -735,6 +752,7 @@ module Aws::SecurityHub
|
|
735
752
|
:instance_id,
|
736
753
|
:instance_owner_id,
|
737
754
|
:status)
|
755
|
+
SENSITIVE = []
|
738
756
|
include Aws::Structure
|
739
757
|
end
|
740
758
|
|
@@ -786,6 +804,7 @@ module Aws::SecurityHub
|
|
786
804
|
:network_interface_id,
|
787
805
|
:security_groups,
|
788
806
|
:source_dest_check)
|
807
|
+
SENSITIVE = []
|
789
808
|
include Aws::Structure
|
790
809
|
end
|
791
810
|
|
@@ -812,6 +831,7 @@ module Aws::SecurityHub
|
|
812
831
|
class AwsEc2NetworkInterfaceSecurityGroup < Struct.new(
|
813
832
|
:group_name,
|
814
833
|
:group_id)
|
834
|
+
SENSITIVE = []
|
815
835
|
include Aws::Structure
|
816
836
|
end
|
817
837
|
|
@@ -924,6 +944,7 @@ module Aws::SecurityHub
|
|
924
944
|
:vpc_id,
|
925
945
|
:ip_permissions,
|
926
946
|
:ip_permissions_egress)
|
947
|
+
SENSITIVE = []
|
927
948
|
include Aws::Structure
|
928
949
|
end
|
929
950
|
|
@@ -1022,6 +1043,7 @@ module Aws::SecurityHub
|
|
1022
1043
|
:ip_ranges,
|
1023
1044
|
:ipv_6_ranges,
|
1024
1045
|
:prefix_list_ids)
|
1046
|
+
SENSITIVE = []
|
1025
1047
|
include Aws::Structure
|
1026
1048
|
end
|
1027
1049
|
|
@@ -1035,15 +1057,16 @@ module Aws::SecurityHub
|
|
1035
1057
|
# }
|
1036
1058
|
#
|
1037
1059
|
# @!attribute [rw] cidr_ip
|
1038
|
-
# The IPv4 CIDR range. You can
|
1039
|
-
#
|
1040
|
-
#
|
1060
|
+
# The IPv4 CIDR range. You can specify either a CIDR range or a source
|
1061
|
+
# security group, but not both. To specify a single IPv4 address, use
|
1062
|
+
# the /32 prefix length.
|
1041
1063
|
# @return [String]
|
1042
1064
|
#
|
1043
1065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2SecurityGroupIpRange AWS API Documentation
|
1044
1066
|
#
|
1045
1067
|
class AwsEc2SecurityGroupIpRange < Struct.new(
|
1046
1068
|
:cidr_ip)
|
1069
|
+
SENSITIVE = []
|
1047
1070
|
include Aws::Structure
|
1048
1071
|
end
|
1049
1072
|
|
@@ -1057,15 +1080,16 @@ module Aws::SecurityHub
|
|
1057
1080
|
# }
|
1058
1081
|
#
|
1059
1082
|
# @!attribute [rw] cidr_ipv_6
|
1060
|
-
# The IPv6 CIDR range. You can
|
1061
|
-
#
|
1062
|
-
#
|
1083
|
+
# The IPv6 CIDR range. You can specify either a CIDR range or a source
|
1084
|
+
# security group, but not both. To specify a single IPv6 address, use
|
1085
|
+
# the /128 prefix length.
|
1063
1086
|
# @return [String]
|
1064
1087
|
#
|
1065
1088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2SecurityGroupIpv6Range AWS API Documentation
|
1066
1089
|
#
|
1067
1090
|
class AwsEc2SecurityGroupIpv6Range < Struct.new(
|
1068
1091
|
:cidr_ipv_6)
|
1092
|
+
SENSITIVE = []
|
1069
1093
|
include Aws::Structure
|
1070
1094
|
end
|
1071
1095
|
|
@@ -1086,6 +1110,7 @@ module Aws::SecurityHub
|
|
1086
1110
|
#
|
1087
1111
|
class AwsEc2SecurityGroupPrefixListId < Struct.new(
|
1088
1112
|
:prefix_list_id)
|
1113
|
+
SENSITIVE = []
|
1089
1114
|
include Aws::Structure
|
1090
1115
|
end
|
1091
1116
|
|
@@ -1143,6 +1168,7 @@ module Aws::SecurityHub
|
|
1143
1168
|
:user_id,
|
1144
1169
|
:vpc_id,
|
1145
1170
|
:vpc_peering_connection_id)
|
1171
|
+
SENSITIVE = []
|
1146
1172
|
include Aws::Structure
|
1147
1173
|
end
|
1148
1174
|
|
@@ -1246,6 +1272,7 @@ module Aws::SecurityHub
|
|
1246
1272
|
:encryption_at_rest_options,
|
1247
1273
|
:node_to_node_encryption_options,
|
1248
1274
|
:vpc_options)
|
1275
|
+
SENSITIVE = []
|
1249
1276
|
include Aws::Structure
|
1250
1277
|
end
|
1251
1278
|
|
@@ -1280,6 +1307,7 @@ module Aws::SecurityHub
|
|
1280
1307
|
class AwsElasticsearchDomainDomainEndpointOptions < Struct.new(
|
1281
1308
|
:enforce_https,
|
1282
1309
|
:tls_security_policy)
|
1310
|
+
SENSITIVE = []
|
1283
1311
|
include Aws::Structure
|
1284
1312
|
end
|
1285
1313
|
|
@@ -1306,6 +1334,7 @@ module Aws::SecurityHub
|
|
1306
1334
|
class AwsElasticsearchDomainEncryptionAtRestOptions < Struct.new(
|
1307
1335
|
:enabled,
|
1308
1336
|
:kms_key_id)
|
1337
|
+
SENSITIVE = []
|
1309
1338
|
include Aws::Structure
|
1310
1339
|
end
|
1311
1340
|
|
@@ -1326,6 +1355,7 @@ module Aws::SecurityHub
|
|
1326
1355
|
#
|
1327
1356
|
class AwsElasticsearchDomainNodeToNodeEncryptionOptions < Struct.new(
|
1328
1357
|
:enabled)
|
1358
|
+
SENSITIVE = []
|
1329
1359
|
include Aws::Structure
|
1330
1360
|
end
|
1331
1361
|
|
@@ -1367,6 +1397,7 @@ module Aws::SecurityHub
|
|
1367
1397
|
:security_group_ids,
|
1368
1398
|
:subnet_ids,
|
1369
1399
|
:vpc_id)
|
1400
|
+
SENSITIVE = []
|
1370
1401
|
include Aws::Structure
|
1371
1402
|
end
|
1372
1403
|
|
@@ -1453,6 +1484,7 @@ module Aws::SecurityHub
|
|
1453
1484
|
:state,
|
1454
1485
|
:type,
|
1455
1486
|
:vpc_id)
|
1487
|
+
SENSITIVE = []
|
1456
1488
|
include Aws::Structure
|
1457
1489
|
end
|
1458
1490
|
|
@@ -1507,6 +1539,7 @@ module Aws::SecurityHub
|
|
1507
1539
|
:principal_id,
|
1508
1540
|
:principal_type,
|
1509
1541
|
:principal_name)
|
1542
|
+
SENSITIVE = []
|
1510
1543
|
include Aws::Structure
|
1511
1544
|
end
|
1512
1545
|
|
@@ -1560,6 +1593,7 @@ module Aws::SecurityHub
|
|
1560
1593
|
:role_name,
|
1561
1594
|
:max_session_duration,
|
1562
1595
|
:path)
|
1596
|
+
SENSITIVE = []
|
1563
1597
|
include Aws::Structure
|
1564
1598
|
end
|
1565
1599
|
|
@@ -1620,6 +1654,7 @@ module Aws::SecurityHub
|
|
1620
1654
|
:key_manager,
|
1621
1655
|
:key_state,
|
1622
1656
|
:origin)
|
1657
|
+
SENSITIVE = []
|
1623
1658
|
include Aws::Structure
|
1624
1659
|
end
|
1625
1660
|
|
@@ -1662,6 +1697,7 @@ module Aws::SecurityHub
|
|
1662
1697
|
:s3_key,
|
1663
1698
|
:s3_object_version,
|
1664
1699
|
:zip_file)
|
1700
|
+
SENSITIVE = []
|
1665
1701
|
include Aws::Structure
|
1666
1702
|
end
|
1667
1703
|
|
@@ -1683,6 +1719,7 @@ module Aws::SecurityHub
|
|
1683
1719
|
#
|
1684
1720
|
class AwsLambdaFunctionDeadLetterConfig < Struct.new(
|
1685
1721
|
:target_arn)
|
1722
|
+
SENSITIVE = []
|
1686
1723
|
include Aws::Structure
|
1687
1724
|
end
|
1688
1725
|
|
@@ -1835,6 +1872,7 @@ module Aws::SecurityHub
|
|
1835
1872
|
:tracing_config,
|
1836
1873
|
:vpc_config,
|
1837
1874
|
:version)
|
1875
|
+
SENSITIVE = []
|
1838
1876
|
include Aws::Structure
|
1839
1877
|
end
|
1840
1878
|
|
@@ -1866,6 +1904,7 @@ module Aws::SecurityHub
|
|
1866
1904
|
class AwsLambdaFunctionEnvironment < Struct.new(
|
1867
1905
|
:variables,
|
1868
1906
|
:error)
|
1907
|
+
SENSITIVE = []
|
1869
1908
|
include Aws::Structure
|
1870
1909
|
end
|
1871
1910
|
|
@@ -1892,6 +1931,7 @@ module Aws::SecurityHub
|
|
1892
1931
|
class AwsLambdaFunctionEnvironmentError < Struct.new(
|
1893
1932
|
:error_code,
|
1894
1933
|
:message)
|
1934
|
+
SENSITIVE = []
|
1895
1935
|
include Aws::Structure
|
1896
1936
|
end
|
1897
1937
|
|
@@ -1918,6 +1958,7 @@ module Aws::SecurityHub
|
|
1918
1958
|
class AwsLambdaFunctionLayer < Struct.new(
|
1919
1959
|
:arn,
|
1920
1960
|
:code_size)
|
1961
|
+
SENSITIVE = []
|
1921
1962
|
include Aws::Structure
|
1922
1963
|
end
|
1923
1964
|
|
@@ -1938,6 +1979,7 @@ module Aws::SecurityHub
|
|
1938
1979
|
#
|
1939
1980
|
class AwsLambdaFunctionTracingConfig < Struct.new(
|
1940
1981
|
:mode)
|
1982
|
+
SENSITIVE = []
|
1941
1983
|
include Aws::Structure
|
1942
1984
|
end
|
1943
1985
|
|
@@ -1971,6 +2013,7 @@ module Aws::SecurityHub
|
|
1971
2013
|
:security_group_ids,
|
1972
2014
|
:subnet_ids,
|
1973
2015
|
:vpc_id)
|
2016
|
+
SENSITIVE = []
|
1974
2017
|
include Aws::Structure
|
1975
2018
|
end
|
1976
2019
|
|
@@ -1990,7 +2033,7 @@ module Aws::SecurityHub
|
|
1990
2033
|
# @return [Integer]
|
1991
2034
|
#
|
1992
2035
|
# @!attribute [rw] compatible_runtimes
|
1993
|
-
# The layer's compatible runtimes. Maximum number of
|
2036
|
+
# The layer's compatible runtimes. Maximum number of five items.
|
1994
2037
|
#
|
1995
2038
|
# Valid values: `nodejs10.x` \| `nodejs12.x` \| `java8` \| `java11` \|
|
1996
2039
|
# `python2.7` \| `python3.6` \| `python3.7` \| `python3.8` \|
|
@@ -2009,6 +2052,7 @@ module Aws::SecurityHub
|
|
2009
2052
|
:version,
|
2010
2053
|
:compatible_runtimes,
|
2011
2054
|
:created_date)
|
2055
|
+
SENSITIVE = []
|
2012
2056
|
include Aws::Structure
|
2013
2057
|
end
|
2014
2058
|
|
@@ -2038,14 +2082,14 @@ module Aws::SecurityHub
|
|
2038
2082
|
# DB instance. The `Status` property returns one of the following
|
2039
2083
|
# values:
|
2040
2084
|
#
|
2041
|
-
# * `ACTIVE` -
|
2085
|
+
# * `ACTIVE` - The IAM role ARN is associated with the DB instance and
|
2042
2086
|
# can be used to access other AWS services on your behalf.
|
2043
2087
|
#
|
2044
|
-
# * `PENDING` -
|
2088
|
+
# * `PENDING` - The IAM role ARN is being associated with the DB
|
2045
2089
|
# instance.
|
2046
2090
|
#
|
2047
|
-
# * `INVALID` -
|
2048
|
-
#
|
2091
|
+
# * `INVALID` - The IAM role ARN is associated with the DB instance.
|
2092
|
+
# But the DB instance is unable to assume the IAM role in order to
|
2049
2093
|
# access other AWS services on your behalf.
|
2050
2094
|
# @return [String]
|
2051
2095
|
#
|
@@ -2055,6 +2099,7 @@ module Aws::SecurityHub
|
|
2055
2099
|
:role_arn,
|
2056
2100
|
:feature_name,
|
2057
2101
|
:status)
|
2102
|
+
SENSITIVE = []
|
2058
2103
|
include Aws::Structure
|
2059
2104
|
end
|
2060
2105
|
|
@@ -2241,6 +2286,7 @@ module Aws::SecurityHub
|
|
2241
2286
|
:storage_encrypted,
|
2242
2287
|
:tde_credential_arn,
|
2243
2288
|
:vpc_security_groups)
|
2289
|
+
SENSITIVE = []
|
2244
2290
|
include Aws::Structure
|
2245
2291
|
end
|
2246
2292
|
|
@@ -2274,6 +2320,7 @@ module Aws::SecurityHub
|
|
2274
2320
|
:address,
|
2275
2321
|
:port,
|
2276
2322
|
:hosted_zone_id)
|
2323
|
+
SENSITIVE = []
|
2277
2324
|
include Aws::Structure
|
2278
2325
|
end
|
2279
2326
|
|
@@ -2300,6 +2347,7 @@ module Aws::SecurityHub
|
|
2300
2347
|
class AwsRdsDbInstanceVpcSecurityGroup < Struct.new(
|
2301
2348
|
:vpc_security_group_id,
|
2302
2349
|
:status)
|
2350
|
+
SENSITIVE = []
|
2303
2351
|
include Aws::Structure
|
2304
2352
|
end
|
2305
2353
|
|
@@ -2347,6 +2395,7 @@ module Aws::SecurityHub
|
|
2347
2395
|
:owner_name,
|
2348
2396
|
:created_at,
|
2349
2397
|
:server_side_encryption_configuration)
|
2398
|
+
SENSITIVE = []
|
2350
2399
|
include Aws::Structure
|
2351
2400
|
end
|
2352
2401
|
|
@@ -2375,6 +2424,7 @@ module Aws::SecurityHub
|
|
2375
2424
|
class AwsS3BucketServerSideEncryptionByDefault < Struct.new(
|
2376
2425
|
:sse_algorithm,
|
2377
2426
|
:kms_master_key_id)
|
2427
|
+
SENSITIVE = []
|
2378
2428
|
include Aws::Structure
|
2379
2429
|
end
|
2380
2430
|
|
@@ -2402,6 +2452,7 @@ module Aws::SecurityHub
|
|
2402
2452
|
#
|
2403
2453
|
class AwsS3BucketServerSideEncryptionConfiguration < Struct.new(
|
2404
2454
|
:rules)
|
2455
|
+
SENSITIVE = []
|
2405
2456
|
include Aws::Structure
|
2406
2457
|
end
|
2407
2458
|
|
@@ -2419,7 +2470,7 @@ module Aws::SecurityHub
|
|
2419
2470
|
#
|
2420
2471
|
# @!attribute [rw] apply_server_side_encryption_by_default
|
2421
2472
|
# Specifies the default server-side encryption to apply to new objects
|
2422
|
-
# in the bucket. If a `PUT`
|
2473
|
+
# in the bucket. If a `PUT` object request doesn't specify any
|
2423
2474
|
# server-side encryption, this default encryption is applied.
|
2424
2475
|
# @return [Types::AwsS3BucketServerSideEncryptionByDefault]
|
2425
2476
|
#
|
@@ -2427,10 +2478,11 @@ module Aws::SecurityHub
|
|
2427
2478
|
#
|
2428
2479
|
class AwsS3BucketServerSideEncryptionRule < Struct.new(
|
2429
2480
|
:apply_server_side_encryption_by_default)
|
2481
|
+
SENSITIVE = []
|
2430
2482
|
include Aws::Structure
|
2431
2483
|
end
|
2432
2484
|
|
2433
|
-
# Details about an
|
2485
|
+
# Details about an Amazon S3 object.
|
2434
2486
|
#
|
2435
2487
|
# @note When making an API call, you may pass AwsS3ObjectDetails
|
2436
2488
|
# data as a hash:
|
@@ -2482,6 +2534,7 @@ module Aws::SecurityHub
|
|
2482
2534
|
:content_type,
|
2483
2535
|
:server_side_encryption,
|
2484
2536
|
:ssekms_key_id)
|
2537
|
+
SENSITIVE = []
|
2485
2538
|
include Aws::Structure
|
2486
2539
|
end
|
2487
2540
|
|
@@ -2514,6 +2567,7 @@ module Aws::SecurityHub
|
|
2514
2567
|
# product: 1.0,
|
2515
2568
|
# label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
|
2516
2569
|
# normalized: 1,
|
2570
|
+
# original: "NonEmptyString",
|
2517
2571
|
# },
|
2518
2572
|
# confidence: 1,
|
2519
2573
|
# criticality: 1,
|
@@ -2964,6 +3018,12 @@ module Aws::SecurityHub
|
|
2964
3018
|
# compliance: {
|
2965
3019
|
# status: "PASSED", # accepts PASSED, WARNING, FAILED, NOT_AVAILABLE
|
2966
3020
|
# related_requirements: ["NonEmptyString"],
|
3021
|
+
# status_reasons: [
|
3022
|
+
# {
|
3023
|
+
# reason_code: "NonEmptyString", # required
|
3024
|
+
# description: "NonEmptyString",
|
3025
|
+
# },
|
3026
|
+
# ],
|
2967
3027
|
# },
|
2968
3028
|
# verification_state: "UNKNOWN", # accepts UNKNOWN, TRUE_POSITIVE, FALSE_POSITIVE, BENIGN_POSITIVE
|
2969
3029
|
# workflow_state: "NEW", # accepts NEW, ASSIGNED, IN_PROGRESS, DEFERRED, RESOLVED
|
@@ -3003,7 +3063,7 @@ module Aws::SecurityHub
|
|
3003
3063
|
# The identifier for the solution-specific component (a discrete unit
|
3004
3064
|
# of logic) that generated a finding. In various security-findings
|
3005
3065
|
# providers' solutions, this generator can be called a rule, a check,
|
3006
|
-
# a detector, a
|
3066
|
+
# a detector, a plugin, etc.
|
3007
3067
|
# @return [String]
|
3008
3068
|
#
|
3009
3069
|
# @!attribute [rw] aws_account_id
|
@@ -3187,6 +3247,7 @@ module Aws::SecurityHub
|
|
3187
3247
|
:record_state,
|
3188
3248
|
:related_findings,
|
3189
3249
|
:note)
|
3250
|
+
SENSITIVE = []
|
3190
3251
|
include Aws::Structure
|
3191
3252
|
end
|
3192
3253
|
|
@@ -3772,7 +3833,7 @@ module Aws::SecurityHub
|
|
3772
3833
|
# The identifier for the solution-specific component (a discrete unit
|
3773
3834
|
# of logic) that generated a finding. In various security-findings
|
3774
3835
|
# providers' solutions, this generator can be called a rule, a check,
|
3775
|
-
# a detector, a
|
3836
|
+
# a detector, a plugin, etc.
|
3776
3837
|
# @return [Array<Types::StringFilter>]
|
3777
3838
|
#
|
3778
3839
|
# @!attribute [rw] type
|
@@ -4234,6 +4295,7 @@ module Aws::SecurityHub
|
|
4234
4295
|
:note_updated_at,
|
4235
4296
|
:note_updated_by,
|
4236
4297
|
:keyword)
|
4298
|
+
SENSITIVE = []
|
4237
4299
|
include Aws::Structure
|
4238
4300
|
end
|
4239
4301
|
|
@@ -4264,6 +4326,7 @@ module Aws::SecurityHub
|
|
4264
4326
|
class AwsSecurityFindingIdentifier < Struct.new(
|
4265
4327
|
:id,
|
4266
4328
|
:product_arn)
|
4329
|
+
SENSITIVE = []
|
4267
4330
|
include Aws::Structure
|
4268
4331
|
end
|
4269
4332
|
|
@@ -4285,7 +4348,7 @@ module Aws::SecurityHub
|
|
4285
4348
|
# }
|
4286
4349
|
#
|
4287
4350
|
# @!attribute [rw] kms_master_key_id
|
4288
|
-
# The ID of an AWS
|
4351
|
+
# The ID of an AWS managed customer master key (CMK) for Amazon SNS or
|
4289
4352
|
# a custom CMK.
|
4290
4353
|
# @return [String]
|
4291
4354
|
#
|
@@ -4309,6 +4372,7 @@ module Aws::SecurityHub
|
|
4309
4372
|
:subscription,
|
4310
4373
|
:topic_name,
|
4311
4374
|
:owner)
|
4375
|
+
SENSITIVE = []
|
4312
4376
|
include Aws::Structure
|
4313
4377
|
end
|
4314
4378
|
|
@@ -4335,6 +4399,7 @@ module Aws::SecurityHub
|
|
4335
4399
|
class AwsSnsTopicSubscription < Struct.new(
|
4336
4400
|
:endpoint,
|
4337
4401
|
:protocol)
|
4402
|
+
SENSITIVE = []
|
4338
4403
|
include Aws::Structure
|
4339
4404
|
end
|
4340
4405
|
|
@@ -4357,7 +4422,7 @@ module Aws::SecurityHub
|
|
4357
4422
|
# @return [Integer]
|
4358
4423
|
#
|
4359
4424
|
# @!attribute [rw] kms_master_key_id
|
4360
|
-
# The ID of an AWS
|
4425
|
+
# The ID of an AWS managed customer master key (CMK) for Amazon SQS or
|
4361
4426
|
# a custom CMK.
|
4362
4427
|
# @return [String]
|
4363
4428
|
#
|
@@ -4378,6 +4443,7 @@ module Aws::SecurityHub
|
|
4378
4443
|
:kms_master_key_id,
|
4379
4444
|
:queue_name,
|
4380
4445
|
:dead_letter_target_arn)
|
4446
|
+
SENSITIVE = []
|
4381
4447
|
include Aws::Structure
|
4382
4448
|
end
|
4383
4449
|
|
@@ -4416,7 +4482,7 @@ module Aws::SecurityHub
|
|
4416
4482
|
# @return [String]
|
4417
4483
|
#
|
4418
4484
|
# @!attribute [rw] default_action
|
4419
|
-
# The action to perform if none of the
|
4485
|
+
# The action to perform if none of the rules contained in the WebACL
|
4420
4486
|
# match.
|
4421
4487
|
# @return [String]
|
4422
4488
|
#
|
@@ -4436,6 +4502,7 @@ module Aws::SecurityHub
|
|
4436
4502
|
:default_action,
|
4437
4503
|
:rules,
|
4438
4504
|
:web_acl_id)
|
4505
|
+
SENSITIVE = []
|
4439
4506
|
include Aws::Structure
|
4440
4507
|
end
|
4441
4508
|
|
@@ -4463,7 +4530,7 @@ module Aws::SecurityHub
|
|
4463
4530
|
#
|
4464
4531
|
# @!attribute [rw] action
|
4465
4532
|
# Specifies the action that CloudFront or AWS WAF takes when a web
|
4466
|
-
# request matches the conditions in the
|
4533
|
+
# request matches the conditions in the rule.
|
4467
4534
|
# @return [Types::WafAction]
|
4468
4535
|
#
|
4469
4536
|
# @!attribute [rw] excluded_rules
|
@@ -4491,15 +4558,15 @@ module Aws::SecurityHub
|
|
4491
4558
|
# @return [Types::WafOverrideAction]
|
4492
4559
|
#
|
4493
4560
|
# @!attribute [rw] priority
|
4494
|
-
# Specifies the order in which the
|
4495
|
-
# Rules with a lower value for Priority are evaluated before
|
4561
|
+
# Specifies the order in which the rules in a WebACL are evaluated.
|
4562
|
+
# Rules with a lower value for `Priority` are evaluated before rules
|
4496
4563
|
# with a higher value. The value must be a unique integer. If you add
|
4497
|
-
# multiple
|
4564
|
+
# multiple rules to a WebACL, the values do not need to be
|
4498
4565
|
# consecutive.
|
4499
4566
|
# @return [Integer]
|
4500
4567
|
#
|
4501
4568
|
# @!attribute [rw] rule_id
|
4502
|
-
# The identifier for a
|
4569
|
+
# The identifier for a rule.
|
4503
4570
|
# @return [String]
|
4504
4571
|
#
|
4505
4572
|
# @!attribute [rw] type
|
@@ -4519,6 +4586,7 @@ module Aws::SecurityHub
|
|
4519
4586
|
:priority,
|
4520
4587
|
:rule_id,
|
4521
4588
|
:type)
|
4589
|
+
SENSITIVE = []
|
4522
4590
|
include Aws::Structure
|
4523
4591
|
end
|
4524
4592
|
|
@@ -4537,6 +4605,7 @@ module Aws::SecurityHub
|
|
4537
4605
|
#
|
4538
4606
|
class BatchDisableStandardsRequest < Struct.new(
|
4539
4607
|
:standards_subscription_arns)
|
4608
|
+
SENSITIVE = []
|
4540
4609
|
include Aws::Structure
|
4541
4610
|
end
|
4542
4611
|
|
@@ -4548,6 +4617,7 @@ module Aws::SecurityHub
|
|
4548
4617
|
#
|
4549
4618
|
class BatchDisableStandardsResponse < Struct.new(
|
4550
4619
|
:standards_subscriptions)
|
4620
|
+
SENSITIVE = []
|
4551
4621
|
include Aws::Structure
|
4552
4622
|
end
|
4553
4623
|
|
@@ -4573,6 +4643,7 @@ module Aws::SecurityHub
|
|
4573
4643
|
#
|
4574
4644
|
class BatchEnableStandardsRequest < Struct.new(
|
4575
4645
|
:standards_subscription_requests)
|
4646
|
+
SENSITIVE = []
|
4576
4647
|
include Aws::Structure
|
4577
4648
|
end
|
4578
4649
|
|
@@ -4584,6 +4655,7 @@ module Aws::SecurityHub
|
|
4584
4655
|
#
|
4585
4656
|
class BatchEnableStandardsResponse < Struct.new(
|
4586
4657
|
:standards_subscriptions)
|
4658
|
+
SENSITIVE = []
|
4587
4659
|
include Aws::Structure
|
4588
4660
|
end
|
4589
4661
|
|
@@ -4607,6 +4679,7 @@ module Aws::SecurityHub
|
|
4607
4679
|
# product: 1.0,
|
4608
4680
|
# label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
|
4609
4681
|
# normalized: 1,
|
4682
|
+
# original: "NonEmptyString",
|
4610
4683
|
# },
|
4611
4684
|
# confidence: 1,
|
4612
4685
|
# criticality: 1,
|
@@ -5057,6 +5130,12 @@ module Aws::SecurityHub
|
|
5057
5130
|
# compliance: {
|
5058
5131
|
# status: "PASSED", # accepts PASSED, WARNING, FAILED, NOT_AVAILABLE
|
5059
5132
|
# related_requirements: ["NonEmptyString"],
|
5133
|
+
# status_reasons: [
|
5134
|
+
# {
|
5135
|
+
# reason_code: "NonEmptyString", # required
|
5136
|
+
# description: "NonEmptyString",
|
5137
|
+
# },
|
5138
|
+
# ],
|
5060
5139
|
# },
|
5061
5140
|
# verification_state: "UNKNOWN", # accepts UNKNOWN, TRUE_POSITIVE, FALSE_POSITIVE, BENIGN_POSITIVE
|
5062
5141
|
# workflow_state: "NEW", # accepts NEW, ASSIGNED, IN_PROGRESS, DEFERRED, RESOLVED
|
@@ -5093,6 +5172,7 @@ module Aws::SecurityHub
|
|
5093
5172
|
#
|
5094
5173
|
class BatchImportFindingsRequest < Struct.new(
|
5095
5174
|
:findings)
|
5175
|
+
SENSITIVE = []
|
5096
5176
|
include Aws::Structure
|
5097
5177
|
end
|
5098
5178
|
|
@@ -5114,6 +5194,7 @@ module Aws::SecurityHub
|
|
5114
5194
|
:failed_count,
|
5115
5195
|
:success_count,
|
5116
5196
|
:failed_findings)
|
5197
|
+
SENSITIVE = []
|
5117
5198
|
include Aws::Structure
|
5118
5199
|
end
|
5119
5200
|
|
@@ -5250,6 +5331,7 @@ module Aws::SecurityHub
|
|
5250
5331
|
:user_defined_fields,
|
5251
5332
|
:workflow,
|
5252
5333
|
:related_findings)
|
5334
|
+
SENSITIVE = []
|
5253
5335
|
include Aws::Structure
|
5254
5336
|
end
|
5255
5337
|
|
@@ -5266,6 +5348,7 @@ module Aws::SecurityHub
|
|
5266
5348
|
class BatchUpdateFindingsResponse < Struct.new(
|
5267
5349
|
:processed_findings,
|
5268
5350
|
:unprocessed_findings)
|
5351
|
+
SENSITIVE = []
|
5269
5352
|
include Aws::Structure
|
5270
5353
|
end
|
5271
5354
|
|
@@ -5290,30 +5373,12 @@ module Aws::SecurityHub
|
|
5290
5373
|
:finding_identifier,
|
5291
5374
|
:error_code,
|
5292
5375
|
:error_message)
|
5376
|
+
SENSITIVE = []
|
5293
5377
|
include Aws::Structure
|
5294
5378
|
end
|
5295
5379
|
|
5296
|
-
#
|
5297
|
-
#
|
5298
|
-
# AWS Foundations. Contains security standard-related finding details.
|
5299
|
-
#
|
5300
|
-
# Values include the following:
|
5301
|
-
#
|
5302
|
-
# * Allowed values are the following:
|
5303
|
-
#
|
5304
|
-
# * `PASSED` - Standards check passed for all evaluated resources.
|
5305
|
-
#
|
5306
|
-
# * `WARNING` - Some information is missing or this check is not
|
5307
|
-
# supported given your configuration.
|
5308
|
-
#
|
5309
|
-
# * `FAILED` - Standards check failed for at least one evaluated
|
5310
|
-
# resource.
|
5311
|
-
#
|
5312
|
-
# * `NOT_AVAILABLE` - Check could not be performed due to a service
|
5313
|
-
# outage, API error, or because the result of the AWS Config
|
5314
|
-
# evaluation was `NOT_APPLICABLE`. If the AWS Config evaluation
|
5315
|
-
# result was ` NOT_APPLICABLE`, then after 3 days, Security Hub
|
5316
|
-
# automatically archives the finding.
|
5380
|
+
# Contains finding details that are specific to control-based findings.
|
5381
|
+
# Only returned for findings generated from controls.
|
5317
5382
|
#
|
5318
5383
|
# @note When making an API call, you may pass Compliance
|
5319
5384
|
# data as a hash:
|
@@ -5321,21 +5386,58 @@ module Aws::SecurityHub
|
|
5321
5386
|
# {
|
5322
5387
|
# status: "PASSED", # accepts PASSED, WARNING, FAILED, NOT_AVAILABLE
|
5323
5388
|
# related_requirements: ["NonEmptyString"],
|
5389
|
+
# status_reasons: [
|
5390
|
+
# {
|
5391
|
+
# reason_code: "NonEmptyString", # required
|
5392
|
+
# description: "NonEmptyString",
|
5393
|
+
# },
|
5394
|
+
# ],
|
5324
5395
|
# }
|
5325
5396
|
#
|
5326
5397
|
# @!attribute [rw] status
|
5327
5398
|
# The result of a standards check.
|
5399
|
+
#
|
5400
|
+
# The valid values for `Status` are as follows.
|
5401
|
+
#
|
5402
|
+
# * * `PASSED` - Standards check passed for all evaluated resources.
|
5403
|
+
#
|
5404
|
+
# * `WARNING` - Some information is missing or this check is not
|
5405
|
+
# supported for your configuration.
|
5406
|
+
#
|
5407
|
+
# * `FAILED` - Standards check failed for at least one evaluated
|
5408
|
+
# resource.
|
5409
|
+
#
|
5410
|
+
# * `NOT_AVAILABLE` - Check could not be performed due to a service
|
5411
|
+
# outage, API error, or because the result of the AWS Config
|
5412
|
+
# evaluation was `NOT_APPLICABLE`. If the AWS Config evaluation
|
5413
|
+
# result was `NOT_APPLICABLE`, then after 3 days, Security Hub
|
5414
|
+
# automatically archives the finding.
|
5328
5415
|
# @return [String]
|
5329
5416
|
#
|
5330
5417
|
# @!attribute [rw] related_requirements
|
5331
|
-
#
|
5418
|
+
# For a control, the industry or regulatory framework requirements
|
5419
|
+
# that are related to the control. The check for that control is
|
5420
|
+
# aligned with these requirements.
|
5332
5421
|
# @return [Array<String>]
|
5333
5422
|
#
|
5423
|
+
# @!attribute [rw] status_reasons
|
5424
|
+
# For findings generated from controls, a list of reasons behind the
|
5425
|
+
# value of `Status`. For the list of status reason codes and their
|
5426
|
+
# meanings, see [Standards-related information in the ASFF][1] in the
|
5427
|
+
# *AWS Security Hub User Guide*.
|
5428
|
+
#
|
5429
|
+
#
|
5430
|
+
#
|
5431
|
+
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-results.html#securityhub-standards-results-asff
|
5432
|
+
# @return [Array<Types::StatusReason>]
|
5433
|
+
#
|
5334
5434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Compliance AWS API Documentation
|
5335
5435
|
#
|
5336
5436
|
class Compliance < Struct.new(
|
5337
5437
|
:status,
|
5338
|
-
:related_requirements
|
5438
|
+
:related_requirements,
|
5439
|
+
:status_reasons)
|
5440
|
+
SENSITIVE = []
|
5339
5441
|
include Aws::Structure
|
5340
5442
|
end
|
5341
5443
|
|
@@ -5374,6 +5476,7 @@ module Aws::SecurityHub
|
|
5374
5476
|
:image_id,
|
5375
5477
|
:image_name,
|
5376
5478
|
:launched_at)
|
5479
|
+
SENSITIVE = []
|
5377
5480
|
include Aws::Structure
|
5378
5481
|
end
|
5379
5482
|
|
@@ -5404,6 +5507,7 @@ module Aws::SecurityHub
|
|
5404
5507
|
:name,
|
5405
5508
|
:description,
|
5406
5509
|
:id)
|
5510
|
+
SENSITIVE = []
|
5407
5511
|
include Aws::Structure
|
5408
5512
|
end
|
5409
5513
|
|
@@ -5415,6 +5519,7 @@ module Aws::SecurityHub
|
|
5415
5519
|
#
|
5416
5520
|
class CreateActionTargetResponse < Struct.new(
|
5417
5521
|
:action_target_arn)
|
5522
|
+
SENSITIVE = []
|
5418
5523
|
include Aws::Structure
|
5419
5524
|
end
|
5420
5525
|
|
@@ -6005,6 +6110,7 @@ module Aws::SecurityHub
|
|
6005
6110
|
:name,
|
6006
6111
|
:filters,
|
6007
6112
|
:group_by_attribute)
|
6113
|
+
SENSITIVE = []
|
6008
6114
|
include Aws::Structure
|
6009
6115
|
end
|
6010
6116
|
|
@@ -6016,6 +6122,7 @@ module Aws::SecurityHub
|
|
6016
6122
|
#
|
6017
6123
|
class CreateInsightResponse < Struct.new(
|
6018
6124
|
:insight_arn)
|
6125
|
+
SENSITIVE = []
|
6019
6126
|
include Aws::Structure
|
6020
6127
|
end
|
6021
6128
|
|
@@ -6041,6 +6148,7 @@ module Aws::SecurityHub
|
|
6041
6148
|
#
|
6042
6149
|
class CreateMembersRequest < Struct.new(
|
6043
6150
|
:account_details)
|
6151
|
+
SENSITIVE = []
|
6044
6152
|
include Aws::Structure
|
6045
6153
|
end
|
6046
6154
|
|
@@ -6053,6 +6161,7 @@ module Aws::SecurityHub
|
|
6053
6161
|
#
|
6054
6162
|
class CreateMembersResponse < Struct.new(
|
6055
6163
|
:unprocessed_accounts)
|
6164
|
+
SENSITIVE = []
|
6056
6165
|
include Aws::Structure
|
6057
6166
|
end
|
6058
6167
|
|
@@ -6088,6 +6197,7 @@ module Aws::SecurityHub
|
|
6088
6197
|
:start,
|
6089
6198
|
:end,
|
6090
6199
|
:date_range)
|
6200
|
+
SENSITIVE = []
|
6091
6201
|
include Aws::Structure
|
6092
6202
|
end
|
6093
6203
|
|
@@ -6114,6 +6224,7 @@ module Aws::SecurityHub
|
|
6114
6224
|
class DateRange < Struct.new(
|
6115
6225
|
:value,
|
6116
6226
|
:unit)
|
6227
|
+
SENSITIVE = []
|
6117
6228
|
include Aws::Structure
|
6118
6229
|
end
|
6119
6230
|
|
@@ -6133,6 +6244,7 @@ module Aws::SecurityHub
|
|
6133
6244
|
#
|
6134
6245
|
class DeclineInvitationsRequest < Struct.new(
|
6135
6246
|
:account_ids)
|
6247
|
+
SENSITIVE = []
|
6136
6248
|
include Aws::Structure
|
6137
6249
|
end
|
6138
6250
|
|
@@ -6145,6 +6257,7 @@ module Aws::SecurityHub
|
|
6145
6257
|
#
|
6146
6258
|
class DeclineInvitationsResponse < Struct.new(
|
6147
6259
|
:unprocessed_accounts)
|
6260
|
+
SENSITIVE = []
|
6148
6261
|
include Aws::Structure
|
6149
6262
|
end
|
6150
6263
|
|
@@ -6163,6 +6276,7 @@ module Aws::SecurityHub
|
|
6163
6276
|
#
|
6164
6277
|
class DeleteActionTargetRequest < Struct.new(
|
6165
6278
|
:action_target_arn)
|
6279
|
+
SENSITIVE = []
|
6166
6280
|
include Aws::Structure
|
6167
6281
|
end
|
6168
6282
|
|
@@ -6174,6 +6288,7 @@ module Aws::SecurityHub
|
|
6174
6288
|
#
|
6175
6289
|
class DeleteActionTargetResponse < Struct.new(
|
6176
6290
|
:action_target_arn)
|
6291
|
+
SENSITIVE = []
|
6177
6292
|
include Aws::Structure
|
6178
6293
|
end
|
6179
6294
|
|
@@ -6192,6 +6307,7 @@ module Aws::SecurityHub
|
|
6192
6307
|
#
|
6193
6308
|
class DeleteInsightRequest < Struct.new(
|
6194
6309
|
:insight_arn)
|
6310
|
+
SENSITIVE = []
|
6195
6311
|
include Aws::Structure
|
6196
6312
|
end
|
6197
6313
|
|
@@ -6203,6 +6319,7 @@ module Aws::SecurityHub
|
|
6203
6319
|
#
|
6204
6320
|
class DeleteInsightResponse < Struct.new(
|
6205
6321
|
:insight_arn)
|
6322
|
+
SENSITIVE = []
|
6206
6323
|
include Aws::Structure
|
6207
6324
|
end
|
6208
6325
|
|
@@ -6221,6 +6338,7 @@ module Aws::SecurityHub
|
|
6221
6338
|
#
|
6222
6339
|
class DeleteInvitationsRequest < Struct.new(
|
6223
6340
|
:account_ids)
|
6341
|
+
SENSITIVE = []
|
6224
6342
|
include Aws::Structure
|
6225
6343
|
end
|
6226
6344
|
|
@@ -6234,6 +6352,7 @@ module Aws::SecurityHub
|
|
6234
6352
|
#
|
6235
6353
|
class DeleteInvitationsResponse < Struct.new(
|
6236
6354
|
:unprocessed_accounts)
|
6355
|
+
SENSITIVE = []
|
6237
6356
|
include Aws::Structure
|
6238
6357
|
end
|
6239
6358
|
|
@@ -6252,6 +6371,7 @@ module Aws::SecurityHub
|
|
6252
6371
|
#
|
6253
6372
|
class DeleteMembersRequest < Struct.new(
|
6254
6373
|
:account_ids)
|
6374
|
+
SENSITIVE = []
|
6255
6375
|
include Aws::Structure
|
6256
6376
|
end
|
6257
6377
|
|
@@ -6264,6 +6384,7 @@ module Aws::SecurityHub
|
|
6264
6384
|
#
|
6265
6385
|
class DeleteMembersResponse < Struct.new(
|
6266
6386
|
:unprocessed_accounts)
|
6387
|
+
SENSITIVE = []
|
6267
6388
|
include Aws::Structure
|
6268
6389
|
end
|
6269
6390
|
|
@@ -6301,6 +6422,7 @@ module Aws::SecurityHub
|
|
6301
6422
|
:action_target_arns,
|
6302
6423
|
:next_token,
|
6303
6424
|
:max_results)
|
6425
|
+
SENSITIVE = []
|
6304
6426
|
include Aws::Structure
|
6305
6427
|
end
|
6306
6428
|
|
@@ -6319,6 +6441,7 @@ module Aws::SecurityHub
|
|
6319
6441
|
class DescribeActionTargetsResponse < Struct.new(
|
6320
6442
|
:action_targets,
|
6321
6443
|
:next_token)
|
6444
|
+
SENSITIVE = []
|
6322
6445
|
include Aws::Structure
|
6323
6446
|
end
|
6324
6447
|
|
@@ -6337,6 +6460,7 @@ module Aws::SecurityHub
|
|
6337
6460
|
#
|
6338
6461
|
class DescribeHubRequest < Struct.new(
|
6339
6462
|
:hub_arn)
|
6463
|
+
SENSITIVE = []
|
6340
6464
|
include Aws::Structure
|
6341
6465
|
end
|
6342
6466
|
|
@@ -6353,6 +6477,7 @@ module Aws::SecurityHub
|
|
6353
6477
|
class DescribeHubResponse < Struct.new(
|
6354
6478
|
:hub_arn,
|
6355
6479
|
:subscribed_at)
|
6480
|
+
SENSITIVE = []
|
6356
6481
|
include Aws::Structure
|
6357
6482
|
end
|
6358
6483
|
|
@@ -6383,6 +6508,7 @@ module Aws::SecurityHub
|
|
6383
6508
|
class DescribeProductsRequest < Struct.new(
|
6384
6509
|
:next_token,
|
6385
6510
|
:max_results)
|
6511
|
+
SENSITIVE = []
|
6386
6512
|
include Aws::Structure
|
6387
6513
|
end
|
6388
6514
|
|
@@ -6399,6 +6525,7 @@ module Aws::SecurityHub
|
|
6399
6525
|
class DescribeProductsResponse < Struct.new(
|
6400
6526
|
:products,
|
6401
6527
|
:next_token)
|
6528
|
+
SENSITIVE = []
|
6402
6529
|
include Aws::Structure
|
6403
6530
|
end
|
6404
6531
|
|
@@ -6436,6 +6563,7 @@ module Aws::SecurityHub
|
|
6436
6563
|
:standards_subscription_arn,
|
6437
6564
|
:next_token,
|
6438
6565
|
:max_results)
|
6566
|
+
SENSITIVE = []
|
6439
6567
|
include Aws::Structure
|
6440
6568
|
end
|
6441
6569
|
|
@@ -6452,6 +6580,7 @@ module Aws::SecurityHub
|
|
6452
6580
|
class DescribeStandardsControlsResponse < Struct.new(
|
6453
6581
|
:controls,
|
6454
6582
|
:next_token)
|
6583
|
+
SENSITIVE = []
|
6455
6584
|
include Aws::Structure
|
6456
6585
|
end
|
6457
6586
|
|
@@ -6482,6 +6611,7 @@ module Aws::SecurityHub
|
|
6482
6611
|
class DescribeStandardsRequest < Struct.new(
|
6483
6612
|
:next_token,
|
6484
6613
|
:max_results)
|
6614
|
+
SENSITIVE = []
|
6485
6615
|
include Aws::Structure
|
6486
6616
|
end
|
6487
6617
|
|
@@ -6498,6 +6628,7 @@ module Aws::SecurityHub
|
|
6498
6628
|
class DescribeStandardsResponse < Struct.new(
|
6499
6629
|
:standards,
|
6500
6630
|
:next_token)
|
6631
|
+
SENSITIVE = []
|
6501
6632
|
include Aws::Structure
|
6502
6633
|
end
|
6503
6634
|
|
@@ -6516,6 +6647,7 @@ module Aws::SecurityHub
|
|
6516
6647
|
#
|
6517
6648
|
class DisableImportFindingsForProductRequest < Struct.new(
|
6518
6649
|
:product_subscription_arn)
|
6650
|
+
SENSITIVE = []
|
6519
6651
|
include Aws::Structure
|
6520
6652
|
end
|
6521
6653
|
|
@@ -6559,6 +6691,7 @@ module Aws::SecurityHub
|
|
6559
6691
|
#
|
6560
6692
|
class DisassociateMembersRequest < Struct.new(
|
6561
6693
|
:account_ids)
|
6694
|
+
SENSITIVE = []
|
6562
6695
|
include Aws::Structure
|
6563
6696
|
end
|
6564
6697
|
|
@@ -6581,6 +6714,7 @@ module Aws::SecurityHub
|
|
6581
6714
|
#
|
6582
6715
|
class EnableImportFindingsForProductRequest < Struct.new(
|
6583
6716
|
:product_arn)
|
6717
|
+
SENSITIVE = []
|
6584
6718
|
include Aws::Structure
|
6585
6719
|
end
|
6586
6720
|
|
@@ -6593,6 +6727,7 @@ module Aws::SecurityHub
|
|
6593
6727
|
#
|
6594
6728
|
class EnableImportFindingsForProductResponse < Struct.new(
|
6595
6729
|
:product_subscription_arn)
|
6730
|
+
SENSITIVE = []
|
6596
6731
|
include Aws::Structure
|
6597
6732
|
end
|
6598
6733
|
|
@@ -6607,7 +6742,7 @@ module Aws::SecurityHub
|
|
6607
6742
|
# }
|
6608
6743
|
#
|
6609
6744
|
# @!attribute [rw] tags
|
6610
|
-
# The tags to add to the
|
6745
|
+
# The tags to add to the hub resource when you enable Security Hub.
|
6611
6746
|
# @return [Hash<String,String>]
|
6612
6747
|
#
|
6613
6748
|
# @!attribute [rw] enable_default_standards
|
@@ -6623,6 +6758,7 @@ module Aws::SecurityHub
|
|
6623
6758
|
class EnableSecurityHubRequest < Struct.new(
|
6624
6759
|
:tags,
|
6625
6760
|
:enable_default_standards)
|
6761
|
+
SENSITIVE = []
|
6626
6762
|
include Aws::Structure
|
6627
6763
|
end
|
6628
6764
|
|
@@ -6664,6 +6800,7 @@ module Aws::SecurityHub
|
|
6664
6800
|
:standards_subscription_arns,
|
6665
6801
|
:next_token,
|
6666
6802
|
:max_results)
|
6803
|
+
SENSITIVE = []
|
6667
6804
|
include Aws::Structure
|
6668
6805
|
end
|
6669
6806
|
|
@@ -6681,6 +6818,7 @@ module Aws::SecurityHub
|
|
6681
6818
|
class GetEnabledStandardsResponse < Struct.new(
|
6682
6819
|
:standards_subscriptions,
|
6683
6820
|
:next_token)
|
6821
|
+
SENSITIVE = []
|
6684
6822
|
include Aws::Structure
|
6685
6823
|
end
|
6686
6824
|
|
@@ -7282,6 +7420,7 @@ module Aws::SecurityHub
|
|
7282
7420
|
:sort_criteria,
|
7283
7421
|
:next_token,
|
7284
7422
|
:max_results)
|
7423
|
+
SENSITIVE = []
|
7285
7424
|
include Aws::Structure
|
7286
7425
|
end
|
7287
7426
|
|
@@ -7298,6 +7437,7 @@ module Aws::SecurityHub
|
|
7298
7437
|
class GetFindingsResponse < Struct.new(
|
7299
7438
|
:findings,
|
7300
7439
|
:next_token)
|
7440
|
+
SENSITIVE = []
|
7301
7441
|
include Aws::Structure
|
7302
7442
|
end
|
7303
7443
|
|
@@ -7316,6 +7456,7 @@ module Aws::SecurityHub
|
|
7316
7456
|
#
|
7317
7457
|
class GetInsightResultsRequest < Struct.new(
|
7318
7458
|
:insight_arn)
|
7459
|
+
SENSITIVE = []
|
7319
7460
|
include Aws::Structure
|
7320
7461
|
end
|
7321
7462
|
|
@@ -7327,6 +7468,7 @@ module Aws::SecurityHub
|
|
7327
7468
|
#
|
7328
7469
|
class GetInsightResultsResponse < Struct.new(
|
7329
7470
|
:insight_results)
|
7471
|
+
SENSITIVE = []
|
7330
7472
|
include Aws::Structure
|
7331
7473
|
end
|
7332
7474
|
|
@@ -7364,6 +7506,7 @@ module Aws::SecurityHub
|
|
7364
7506
|
:insight_arns,
|
7365
7507
|
:next_token,
|
7366
7508
|
:max_results)
|
7509
|
+
SENSITIVE = []
|
7367
7510
|
include Aws::Structure
|
7368
7511
|
end
|
7369
7512
|
|
@@ -7380,6 +7523,7 @@ module Aws::SecurityHub
|
|
7380
7523
|
class GetInsightsResponse < Struct.new(
|
7381
7524
|
:insights,
|
7382
7525
|
:next_token)
|
7526
|
+
SENSITIVE = []
|
7383
7527
|
include Aws::Structure
|
7384
7528
|
end
|
7385
7529
|
|
@@ -7398,6 +7542,7 @@ module Aws::SecurityHub
|
|
7398
7542
|
#
|
7399
7543
|
class GetInvitationsCountResponse < Struct.new(
|
7400
7544
|
:invitations_count)
|
7545
|
+
SENSITIVE = []
|
7401
7546
|
include Aws::Structure
|
7402
7547
|
end
|
7403
7548
|
|
@@ -7416,6 +7561,7 @@ module Aws::SecurityHub
|
|
7416
7561
|
#
|
7417
7562
|
class GetMasterAccountResponse < Struct.new(
|
7418
7563
|
:master)
|
7564
|
+
SENSITIVE = []
|
7419
7565
|
include Aws::Structure
|
7420
7566
|
end
|
7421
7567
|
|
@@ -7435,6 +7581,7 @@ module Aws::SecurityHub
|
|
7435
7581
|
#
|
7436
7582
|
class GetMembersRequest < Struct.new(
|
7437
7583
|
:account_ids)
|
7584
|
+
SENSITIVE = []
|
7438
7585
|
include Aws::Structure
|
7439
7586
|
end
|
7440
7587
|
|
@@ -7452,6 +7599,7 @@ module Aws::SecurityHub
|
|
7452
7599
|
class GetMembersResponse < Struct.new(
|
7453
7600
|
:members,
|
7454
7601
|
:unprocessed_accounts)
|
7602
|
+
SENSITIVE = []
|
7455
7603
|
include Aws::Structure
|
7456
7604
|
end
|
7457
7605
|
|
@@ -7478,6 +7626,7 @@ module Aws::SecurityHub
|
|
7478
7626
|
:id,
|
7479
7627
|
:error_code,
|
7480
7628
|
:error_message)
|
7629
|
+
SENSITIVE = []
|
7481
7630
|
include Aws::Structure
|
7482
7631
|
end
|
7483
7632
|
|
@@ -7512,6 +7661,7 @@ module Aws::SecurityHub
|
|
7512
7661
|
:name,
|
7513
7662
|
:filters,
|
7514
7663
|
:group_by_attribute)
|
7664
|
+
SENSITIVE = []
|
7515
7665
|
include Aws::Structure
|
7516
7666
|
end
|
7517
7667
|
|
@@ -7533,6 +7683,7 @@ module Aws::SecurityHub
|
|
7533
7683
|
class InsightResultValue < Struct.new(
|
7534
7684
|
:group_by_attribute_value,
|
7535
7685
|
:count)
|
7686
|
+
SENSITIVE = []
|
7536
7687
|
include Aws::Structure
|
7537
7688
|
end
|
7538
7689
|
|
@@ -7559,6 +7710,7 @@ module Aws::SecurityHub
|
|
7559
7710
|
:insight_arn,
|
7560
7711
|
:group_by_attribute,
|
7561
7712
|
:result_values)
|
7713
|
+
SENSITIVE = []
|
7562
7714
|
include Aws::Structure
|
7563
7715
|
end
|
7564
7716
|
|
@@ -7575,6 +7727,7 @@ module Aws::SecurityHub
|
|
7575
7727
|
class InternalException < Struct.new(
|
7576
7728
|
:message,
|
7577
7729
|
:code)
|
7730
|
+
SENSITIVE = []
|
7578
7731
|
include Aws::Structure
|
7579
7732
|
end
|
7580
7733
|
|
@@ -7592,6 +7745,7 @@ module Aws::SecurityHub
|
|
7592
7745
|
class InvalidAccessException < Struct.new(
|
7593
7746
|
:message,
|
7594
7747
|
:code)
|
7748
|
+
SENSITIVE = []
|
7595
7749
|
include Aws::Structure
|
7596
7750
|
end
|
7597
7751
|
|
@@ -7609,6 +7763,7 @@ module Aws::SecurityHub
|
|
7609
7763
|
class InvalidInputException < Struct.new(
|
7610
7764
|
:message,
|
7611
7765
|
:code)
|
7766
|
+
SENSITIVE = []
|
7612
7767
|
include Aws::Structure
|
7613
7768
|
end
|
7614
7769
|
|
@@ -7639,6 +7794,7 @@ module Aws::SecurityHub
|
|
7639
7794
|
:invitation_id,
|
7640
7795
|
:invited_at,
|
7641
7796
|
:member_status)
|
7797
|
+
SENSITIVE = []
|
7642
7798
|
include Aws::Structure
|
7643
7799
|
end
|
7644
7800
|
|
@@ -7658,6 +7814,7 @@ module Aws::SecurityHub
|
|
7658
7814
|
#
|
7659
7815
|
class InviteMembersRequest < Struct.new(
|
7660
7816
|
:account_ids)
|
7817
|
+
SENSITIVE = []
|
7661
7818
|
include Aws::Structure
|
7662
7819
|
end
|
7663
7820
|
|
@@ -7670,6 +7827,7 @@ module Aws::SecurityHub
|
|
7670
7827
|
#
|
7671
7828
|
class InviteMembersResponse < Struct.new(
|
7672
7829
|
:unprocessed_accounts)
|
7830
|
+
SENSITIVE = []
|
7673
7831
|
include Aws::Structure
|
7674
7832
|
end
|
7675
7833
|
|
@@ -7690,6 +7848,7 @@ module Aws::SecurityHub
|
|
7690
7848
|
#
|
7691
7849
|
class IpFilter < Struct.new(
|
7692
7850
|
:cidr)
|
7851
|
+
SENSITIVE = []
|
7693
7852
|
include Aws::Structure
|
7694
7853
|
end
|
7695
7854
|
|
@@ -7710,6 +7869,7 @@ module Aws::SecurityHub
|
|
7710
7869
|
#
|
7711
7870
|
class KeywordFilter < Struct.new(
|
7712
7871
|
:value)
|
7872
|
+
SENSITIVE = []
|
7713
7873
|
include Aws::Structure
|
7714
7874
|
end
|
7715
7875
|
|
@@ -7728,6 +7888,7 @@ module Aws::SecurityHub
|
|
7728
7888
|
class LimitExceededException < Struct.new(
|
7729
7889
|
:message,
|
7730
7890
|
:code)
|
7891
|
+
SENSITIVE = []
|
7731
7892
|
include Aws::Structure
|
7732
7893
|
end
|
7733
7894
|
|
@@ -7758,6 +7919,7 @@ module Aws::SecurityHub
|
|
7758
7919
|
class ListEnabledProductsForImportRequest < Struct.new(
|
7759
7920
|
:next_token,
|
7760
7921
|
:max_results)
|
7922
|
+
SENSITIVE = []
|
7761
7923
|
include Aws::Structure
|
7762
7924
|
end
|
7763
7925
|
|
@@ -7775,6 +7937,7 @@ module Aws::SecurityHub
|
|
7775
7937
|
class ListEnabledProductsForImportResponse < Struct.new(
|
7776
7938
|
:product_subscriptions,
|
7777
7939
|
:next_token)
|
7940
|
+
SENSITIVE = []
|
7778
7941
|
include Aws::Structure
|
7779
7942
|
end
|
7780
7943
|
|
@@ -7805,6 +7968,7 @@ module Aws::SecurityHub
|
|
7805
7968
|
class ListInvitationsRequest < Struct.new(
|
7806
7969
|
:max_results,
|
7807
7970
|
:next_token)
|
7971
|
+
SENSITIVE = []
|
7808
7972
|
include Aws::Structure
|
7809
7973
|
end
|
7810
7974
|
|
@@ -7821,6 +7985,7 @@ module Aws::SecurityHub
|
|
7821
7985
|
class ListInvitationsResponse < Struct.new(
|
7822
7986
|
:invitations,
|
7823
7987
|
:next_token)
|
7988
|
+
SENSITIVE = []
|
7824
7989
|
include Aws::Structure
|
7825
7990
|
end
|
7826
7991
|
|
@@ -7865,6 +8030,7 @@ module Aws::SecurityHub
|
|
7865
8030
|
:only_associated,
|
7866
8031
|
:max_results,
|
7867
8032
|
:next_token)
|
8033
|
+
SENSITIVE = []
|
7868
8034
|
include Aws::Structure
|
7869
8035
|
end
|
7870
8036
|
|
@@ -7881,6 +8047,7 @@ module Aws::SecurityHub
|
|
7881
8047
|
class ListMembersResponse < Struct.new(
|
7882
8048
|
:members,
|
7883
8049
|
:next_token)
|
8050
|
+
SENSITIVE = []
|
7884
8051
|
include Aws::Structure
|
7885
8052
|
end
|
7886
8053
|
|
@@ -7899,6 +8066,7 @@ module Aws::SecurityHub
|
|
7899
8066
|
#
|
7900
8067
|
class ListTagsForResourceRequest < Struct.new(
|
7901
8068
|
:resource_arn)
|
8069
|
+
SENSITIVE = []
|
7902
8070
|
include Aws::Structure
|
7903
8071
|
end
|
7904
8072
|
|
@@ -7910,6 +8078,7 @@ module Aws::SecurityHub
|
|
7910
8078
|
#
|
7911
8079
|
class ListTagsForResourceResponse < Struct.new(
|
7912
8080
|
:tags)
|
8081
|
+
SENSITIVE = []
|
7913
8082
|
include Aws::Structure
|
7914
8083
|
end
|
7915
8084
|
|
@@ -7942,6 +8111,7 @@ module Aws::SecurityHub
|
|
7942
8111
|
class LoadBalancerState < Struct.new(
|
7943
8112
|
:code,
|
7944
8113
|
:reason)
|
8114
|
+
SENSITIVE = []
|
7945
8115
|
include Aws::Structure
|
7946
8116
|
end
|
7947
8117
|
|
@@ -7980,6 +8150,7 @@ module Aws::SecurityHub
|
|
7980
8150
|
:type,
|
7981
8151
|
:path,
|
7982
8152
|
:state)
|
8153
|
+
SENSITIVE = []
|
7983
8154
|
include Aws::Structure
|
7984
8155
|
end
|
7985
8156
|
|
@@ -8013,6 +8184,7 @@ module Aws::SecurityHub
|
|
8013
8184
|
:key,
|
8014
8185
|
:value,
|
8015
8186
|
:comparison)
|
8187
|
+
SENSITIVE = []
|
8016
8188
|
include Aws::Structure
|
8017
8189
|
end
|
8018
8190
|
|
@@ -8055,6 +8227,7 @@ module Aws::SecurityHub
|
|
8055
8227
|
:member_status,
|
8056
8228
|
:invited_at,
|
8057
8229
|
:updated_at)
|
8230
|
+
SENSITIVE = []
|
8058
8231
|
include Aws::Structure
|
8059
8232
|
end
|
8060
8233
|
|
@@ -8141,6 +8314,7 @@ module Aws::SecurityHub
|
|
8141
8314
|
:destination_ip_v6,
|
8142
8315
|
:destination_port,
|
8143
8316
|
:destination_domain)
|
8317
|
+
SENSITIVE = []
|
8144
8318
|
include Aws::Structure
|
8145
8319
|
end
|
8146
8320
|
|
@@ -8173,6 +8347,7 @@ module Aws::SecurityHub
|
|
8173
8347
|
:text,
|
8174
8348
|
:updated_by,
|
8175
8349
|
:updated_at)
|
8350
|
+
SENSITIVE = []
|
8176
8351
|
include Aws::Structure
|
8177
8352
|
end
|
8178
8353
|
|
@@ -8199,6 +8374,7 @@ module Aws::SecurityHub
|
|
8199
8374
|
class NoteUpdate < Struct.new(
|
8200
8375
|
:text,
|
8201
8376
|
:updated_by)
|
8377
|
+
SENSITIVE = []
|
8202
8378
|
include Aws::Structure
|
8203
8379
|
end
|
8204
8380
|
|
@@ -8234,6 +8410,7 @@ module Aws::SecurityHub
|
|
8234
8410
|
:gte,
|
8235
8411
|
:lte,
|
8236
8412
|
:eq)
|
8413
|
+
SENSITIVE = []
|
8237
8414
|
include Aws::Structure
|
8238
8415
|
end
|
8239
8416
|
|
@@ -8284,6 +8461,7 @@ module Aws::SecurityHub
|
|
8284
8461
|
:parent_pid,
|
8285
8462
|
:launched_at,
|
8286
8463
|
:terminated_at)
|
8464
|
+
SENSITIVE = []
|
8287
8465
|
include Aws::Structure
|
8288
8466
|
end
|
8289
8467
|
|
@@ -8345,6 +8523,7 @@ module Aws::SecurityHub
|
|
8345
8523
|
:marketplace_url,
|
8346
8524
|
:activation_url,
|
8347
8525
|
:product_subscription_resource_policy)
|
8526
|
+
SENSITIVE = []
|
8348
8527
|
include Aws::Structure
|
8349
8528
|
end
|
8350
8529
|
|
@@ -8374,6 +8553,7 @@ module Aws::SecurityHub
|
|
8374
8553
|
class Recommendation < Struct.new(
|
8375
8554
|
:text,
|
8376
8555
|
:url)
|
8556
|
+
SENSITIVE = []
|
8377
8557
|
include Aws::Structure
|
8378
8558
|
end
|
8379
8559
|
|
@@ -8400,6 +8580,7 @@ module Aws::SecurityHub
|
|
8400
8580
|
class RelatedFinding < Struct.new(
|
8401
8581
|
:product_arn,
|
8402
8582
|
:id)
|
8583
|
+
SENSITIVE = []
|
8403
8584
|
include Aws::Structure
|
8404
8585
|
end
|
8405
8586
|
|
@@ -8424,6 +8605,7 @@ module Aws::SecurityHub
|
|
8424
8605
|
#
|
8425
8606
|
class Remediation < Struct.new(
|
8426
8607
|
:recommendation)
|
8608
|
+
SENSITIVE = []
|
8427
8609
|
include Aws::Structure
|
8428
8610
|
end
|
8429
8611
|
|
@@ -8862,6 +9044,7 @@ module Aws::SecurityHub
|
|
8862
9044
|
:region,
|
8863
9045
|
:tags,
|
8864
9046
|
:details)
|
9047
|
+
SENSITIVE = []
|
8865
9048
|
include Aws::Structure
|
8866
9049
|
end
|
8867
9050
|
|
@@ -8879,6 +9062,7 @@ module Aws::SecurityHub
|
|
8879
9062
|
class ResourceConflictException < Struct.new(
|
8880
9063
|
:message,
|
8881
9064
|
:code)
|
9065
|
+
SENSITIVE = []
|
8882
9066
|
include Aws::Structure
|
8883
9067
|
end
|
8884
9068
|
|
@@ -9291,7 +9475,7 @@ module Aws::SecurityHub
|
|
9291
9475
|
# @return [Types::AwsEc2InstanceDetails]
|
9292
9476
|
#
|
9293
9477
|
# @!attribute [rw] aws_ec2_network_interface
|
9294
|
-
# Details for an
|
9478
|
+
# Details for an Amazon EC2 network interface.
|
9295
9479
|
# @return [Types::AwsEc2NetworkInterfaceDetails]
|
9296
9480
|
#
|
9297
9481
|
# @!attribute [rw] aws_ec2_security_group
|
@@ -9307,7 +9491,7 @@ module Aws::SecurityHub
|
|
9307
9491
|
# @return [Types::AwsElasticsearchDomainDetails]
|
9308
9492
|
#
|
9309
9493
|
# @!attribute [rw] aws_s3_bucket
|
9310
|
-
# Details about an Amazon S3
|
9494
|
+
# Details about an Amazon S3 bucket related to a finding.
|
9311
9495
|
# @return [Types::AwsS3BucketDetails]
|
9312
9496
|
#
|
9313
9497
|
# @!attribute [rw] aws_s3_object
|
@@ -9335,7 +9519,7 @@ module Aws::SecurityHub
|
|
9335
9519
|
# @return [Types::AwsLambdaLayerVersionDetails]
|
9336
9520
|
#
|
9337
9521
|
# @!attribute [rw] aws_rds_db_instance
|
9338
|
-
# Details for an RDS database instance.
|
9522
|
+
# Details for an Amazon RDS database instance.
|
9339
9523
|
# @return [Types::AwsRdsDbInstanceDetails]
|
9340
9524
|
#
|
9341
9525
|
# @!attribute [rw] aws_sns_topic
|
@@ -9391,6 +9575,7 @@ module Aws::SecurityHub
|
|
9391
9575
|
:aws_waf_web_acl,
|
9392
9576
|
:container,
|
9393
9577
|
:other)
|
9578
|
+
SENSITIVE = []
|
9394
9579
|
include Aws::Structure
|
9395
9580
|
end
|
9396
9581
|
|
@@ -9408,6 +9593,7 @@ module Aws::SecurityHub
|
|
9408
9593
|
class ResourceNotFoundException < Struct.new(
|
9409
9594
|
:message,
|
9410
9595
|
:code)
|
9596
|
+
SENSITIVE = []
|
9411
9597
|
include Aws::Structure
|
9412
9598
|
end
|
9413
9599
|
|
@@ -9426,6 +9612,7 @@ module Aws::SecurityHub
|
|
9426
9612
|
class Result < Struct.new(
|
9427
9613
|
:account_id,
|
9428
9614
|
:processing_result)
|
9615
|
+
SENSITIVE = []
|
9429
9616
|
include Aws::Structure
|
9430
9617
|
end
|
9431
9618
|
|
@@ -9438,9 +9625,13 @@ module Aws::SecurityHub
|
|
9438
9625
|
# product: 1.0,
|
9439
9626
|
# label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
|
9440
9627
|
# normalized: 1,
|
9628
|
+
# original: "NonEmptyString",
|
9441
9629
|
# }
|
9442
9630
|
#
|
9443
9631
|
# @!attribute [rw] product
|
9632
|
+
# Deprecated. This attribute is being deprecated. Instead of providing
|
9633
|
+
# `Product`, provide `Original`.
|
9634
|
+
#
|
9444
9635
|
# The native severity as defined by the AWS service or integrated
|
9445
9636
|
# partner product that generated the finding.
|
9446
9637
|
# @return [Float]
|
@@ -9479,12 +9670,19 @@ module Aws::SecurityHub
|
|
9479
9670
|
# * 90–100 - `CRITICAL`
|
9480
9671
|
# @return [Integer]
|
9481
9672
|
#
|
9673
|
+
# @!attribute [rw] original
|
9674
|
+
# The native severity from the finding product that generated the
|
9675
|
+
# finding.
|
9676
|
+
# @return [String]
|
9677
|
+
#
|
9482
9678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Severity AWS API Documentation
|
9483
9679
|
#
|
9484
9680
|
class Severity < Struct.new(
|
9485
9681
|
:product,
|
9486
9682
|
:label,
|
9487
|
-
:normalized
|
9683
|
+
:normalized,
|
9684
|
+
:original)
|
9685
|
+
SENSITIVE = []
|
9488
9686
|
include Aws::Structure
|
9489
9687
|
end
|
9490
9688
|
|
@@ -9544,6 +9742,7 @@ module Aws::SecurityHub
|
|
9544
9742
|
:normalized,
|
9545
9743
|
:product,
|
9546
9744
|
:label)
|
9745
|
+
SENSITIVE = []
|
9547
9746
|
include Aws::Structure
|
9548
9747
|
end
|
9549
9748
|
|
@@ -9570,6 +9769,7 @@ module Aws::SecurityHub
|
|
9570
9769
|
class SortCriterion < Struct.new(
|
9571
9770
|
:field,
|
9572
9771
|
:sort_order)
|
9772
|
+
SENSITIVE = []
|
9573
9773
|
include Aws::Structure
|
9574
9774
|
end
|
9575
9775
|
|
@@ -9604,6 +9804,7 @@ module Aws::SecurityHub
|
|
9604
9804
|
:name,
|
9605
9805
|
:description,
|
9606
9806
|
:enabled_by_default)
|
9807
|
+
SENSITIVE = []
|
9607
9808
|
include Aws::Structure
|
9608
9809
|
end
|
9609
9810
|
|
@@ -9672,6 +9873,7 @@ module Aws::SecurityHub
|
|
9672
9873
|
:remediation_url,
|
9673
9874
|
:severity_rating,
|
9674
9875
|
:related_requirements)
|
9876
|
+
SENSITIVE = []
|
9675
9877
|
include Aws::Structure
|
9676
9878
|
end
|
9677
9879
|
|
@@ -9701,6 +9903,7 @@ module Aws::SecurityHub
|
|
9701
9903
|
:standards_arn,
|
9702
9904
|
:standards_input,
|
9703
9905
|
:standards_status)
|
9906
|
+
SENSITIVE = []
|
9704
9907
|
include Aws::Structure
|
9705
9908
|
end
|
9706
9909
|
|
@@ -9731,6 +9934,40 @@ module Aws::SecurityHub
|
|
9731
9934
|
class StandardsSubscriptionRequest < Struct.new(
|
9732
9935
|
:standards_arn,
|
9733
9936
|
:standards_input)
|
9937
|
+
SENSITIVE = []
|
9938
|
+
include Aws::Structure
|
9939
|
+
end
|
9940
|
+
|
9941
|
+
# Provides additional context for the value of `Compliance.Status`.
|
9942
|
+
#
|
9943
|
+
# @note When making an API call, you may pass StatusReason
|
9944
|
+
# data as a hash:
|
9945
|
+
#
|
9946
|
+
# {
|
9947
|
+
# reason_code: "NonEmptyString", # required
|
9948
|
+
# description: "NonEmptyString",
|
9949
|
+
# }
|
9950
|
+
#
|
9951
|
+
# @!attribute [rw] reason_code
|
9952
|
+
# A code that represents a reason for the control status. For the list
|
9953
|
+
# of status reason codes and their meanings, see [Standards-related
|
9954
|
+
# information in the ASFF][1] in the *AWS Security Hub User Guide*.
|
9955
|
+
#
|
9956
|
+
#
|
9957
|
+
#
|
9958
|
+
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-results.html#securityhub-standards-results-asff
|
9959
|
+
# @return [String]
|
9960
|
+
#
|
9961
|
+
# @!attribute [rw] description
|
9962
|
+
# The corresponding description for the status reason code.
|
9963
|
+
# @return [String]
|
9964
|
+
#
|
9965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/StatusReason AWS API Documentation
|
9966
|
+
#
|
9967
|
+
class StatusReason < Struct.new(
|
9968
|
+
:reason_code,
|
9969
|
+
:description)
|
9970
|
+
SENSITIVE = []
|
9734
9971
|
include Aws::Structure
|
9735
9972
|
end
|
9736
9973
|
|
@@ -9758,6 +9995,7 @@ module Aws::SecurityHub
|
|
9758
9995
|
class StringFilter < Struct.new(
|
9759
9996
|
:value,
|
9760
9997
|
:comparison)
|
9998
|
+
SENSITIVE = []
|
9761
9999
|
include Aws::Structure
|
9762
10000
|
end
|
9763
10001
|
|
@@ -9784,6 +10022,7 @@ module Aws::SecurityHub
|
|
9784
10022
|
class TagResourceRequest < Struct.new(
|
9785
10023
|
:resource_arn,
|
9786
10024
|
:tags)
|
10025
|
+
SENSITIVE = []
|
9787
10026
|
include Aws::Structure
|
9788
10027
|
end
|
9789
10028
|
|
@@ -9840,6 +10079,7 @@ module Aws::SecurityHub
|
|
9840
10079
|
:last_observed_at,
|
9841
10080
|
:source,
|
9842
10081
|
:source_url)
|
10082
|
+
SENSITIVE = []
|
9843
10083
|
include Aws::Structure
|
9844
10084
|
end
|
9845
10085
|
|
@@ -9864,6 +10104,7 @@ module Aws::SecurityHub
|
|
9864
10104
|
class UntagResourceRequest < Struct.new(
|
9865
10105
|
:resource_arn,
|
9866
10106
|
:tag_keys)
|
10107
|
+
SENSITIVE = []
|
9867
10108
|
include Aws::Structure
|
9868
10109
|
end
|
9869
10110
|
|
@@ -9898,6 +10139,7 @@ module Aws::SecurityHub
|
|
9898
10139
|
:action_target_arn,
|
9899
10140
|
:name,
|
9900
10141
|
:description)
|
10142
|
+
SENSITIVE = []
|
9901
10143
|
include Aws::Structure
|
9902
10144
|
end
|
9903
10145
|
|
@@ -10490,6 +10732,7 @@ module Aws::SecurityHub
|
|
10490
10732
|
:filters,
|
10491
10733
|
:note,
|
10492
10734
|
:record_state)
|
10735
|
+
SENSITIVE = []
|
10493
10736
|
include Aws::Structure
|
10494
10737
|
end
|
10495
10738
|
|
@@ -11084,6 +11327,7 @@ module Aws::SecurityHub
|
|
11084
11327
|
:name,
|
11085
11328
|
:filters,
|
11086
11329
|
:group_by_attribute)
|
11330
|
+
SENSITIVE = []
|
11087
11331
|
include Aws::Structure
|
11088
11332
|
end
|
11089
11333
|
|
@@ -11119,6 +11363,7 @@ module Aws::SecurityHub
|
|
11119
11363
|
:standards_control_arn,
|
11120
11364
|
:control_status,
|
11121
11365
|
:disabled_reason)
|
11366
|
+
SENSITIVE = []
|
11122
11367
|
include Aws::Structure
|
11123
11368
|
end
|
11124
11369
|
|
@@ -11127,7 +11372,7 @@ module Aws::SecurityHub
|
|
11127
11372
|
class UpdateStandardsControlResponse < Aws::EmptyStructure; end
|
11128
11373
|
|
11129
11374
|
# Details about the action that CloudFront or AWS WAF takes when a web
|
11130
|
-
# request matches the conditions in the
|
11375
|
+
# request matches the conditions in the rule.
|
11131
11376
|
#
|
11132
11377
|
# @note When making an API call, you may pass WafAction
|
11133
11378
|
# data as a hash:
|
@@ -11138,7 +11383,7 @@ module Aws::SecurityHub
|
|
11138
11383
|
#
|
11139
11384
|
# @!attribute [rw] type
|
11140
11385
|
# Specifies how you want AWS WAF to respond to requests that match the
|
11141
|
-
# settings in a
|
11386
|
+
# settings in a rule.
|
11142
11387
|
#
|
11143
11388
|
# Valid settings include the following:
|
11144
11389
|
#
|
@@ -11157,6 +11402,7 @@ module Aws::SecurityHub
|
|
11157
11402
|
#
|
11158
11403
|
class WafAction < Struct.new(
|
11159
11404
|
:type)
|
11405
|
+
SENSITIVE = []
|
11160
11406
|
include Aws::Structure
|
11161
11407
|
end
|
11162
11408
|
|
@@ -11177,6 +11423,7 @@ module Aws::SecurityHub
|
|
11177
11423
|
#
|
11178
11424
|
class WafExcludedRule < Struct.new(
|
11179
11425
|
:rule_id)
|
11426
|
+
SENSITIVE = []
|
11180
11427
|
include Aws::Structure
|
11181
11428
|
end
|
11182
11429
|
|
@@ -11191,7 +11438,7 @@ module Aws::SecurityHub
|
|
11191
11438
|
#
|
11192
11439
|
# @!attribute [rw] type
|
11193
11440
|
# `COUNT` overrides the action specified by the individual rule within
|
11194
|
-
# a RuleGroup .
|
11441
|
+
# a `RuleGroup` .
|
11195
11442
|
#
|
11196
11443
|
# If set to `NONE`, the rule's action takes place.
|
11197
11444
|
# @return [String]
|
@@ -11200,6 +11447,7 @@ module Aws::SecurityHub
|
|
11200
11447
|
#
|
11201
11448
|
class WafOverrideAction < Struct.new(
|
11202
11449
|
:type)
|
11450
|
+
SENSITIVE = []
|
11203
11451
|
include Aws::Structure
|
11204
11452
|
end
|
11205
11453
|
|
@@ -11234,6 +11482,7 @@ module Aws::SecurityHub
|
|
11234
11482
|
#
|
11235
11483
|
class Workflow < Struct.new(
|
11236
11484
|
:status)
|
11485
|
+
SENSITIVE = []
|
11237
11486
|
include Aws::Structure
|
11238
11487
|
end
|
11239
11488
|
|
@@ -11267,6 +11516,7 @@ module Aws::SecurityHub
|
|
11267
11516
|
#
|
11268
11517
|
class WorkflowUpdate < Struct.new(
|
11269
11518
|
:status)
|
11519
|
+
SENSITIVE = []
|
11270
11520
|
include Aws::Structure
|
11271
11521
|
end
|
11272
11522
|
|