aws-sdk-securityhub 1.75.0 → 1.77.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +60 -6
- data/lib/aws-sdk-securityhub/client_api.rb +11 -0
- data/lib/aws-sdk-securityhub/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-securityhub/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-securityhub/types.rb +387 -163
- data/lib/aws-sdk-securityhub.rb +1 -1
- metadata +2 -2
@@ -307,6 +307,28 @@ module Aws::SecurityHub
|
|
307
307
|
include Aws::Structure
|
308
308
|
end
|
309
309
|
|
310
|
+
# Information about an enabled security standard in which a security
|
311
|
+
# control is enabled.
|
312
|
+
#
|
313
|
+
# @!attribute [rw] standards_id
|
314
|
+
# The unique identifier of a standard in which a control is enabled.
|
315
|
+
# This field consists of the resource portion of the Amazon Resource
|
316
|
+
# Name (ARN) returned for a standard in the [DescribeStandards][1] API
|
317
|
+
# response.
|
318
|
+
#
|
319
|
+
#
|
320
|
+
#
|
321
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_DescribeStandards.html
|
322
|
+
# @return [String]
|
323
|
+
#
|
324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AssociatedStandard AWS API Documentation
|
325
|
+
#
|
326
|
+
class AssociatedStandard < Struct.new(
|
327
|
+
:standards_id)
|
328
|
+
SENSITIVE = []
|
329
|
+
include Aws::Structure
|
330
|
+
end
|
331
|
+
|
310
332
|
# Information about an Availability Zone.
|
311
333
|
#
|
312
334
|
# @!attribute [rw] zone_name
|
@@ -361,11 +383,29 @@ module Aws::SecurityHub
|
|
361
383
|
# @!attribute [rw] first_seen
|
362
384
|
# An ISO8601-formatted timestamp that indicates when the API call was
|
363
385
|
# first observed.
|
386
|
+
#
|
387
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
388
|
+
# value cannot contain spaces, and date and time should be separated
|
389
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
390
|
+
# Date/Time Format][1].
|
391
|
+
#
|
392
|
+
#
|
393
|
+
#
|
394
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
364
395
|
# @return [String]
|
365
396
|
#
|
366
397
|
# @!attribute [rw] last_seen
|
367
398
|
# An ISO8601-formatted timestamp that indicates when the API call was
|
368
399
|
# most recently observed.
|
400
|
+
#
|
401
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
402
|
+
# value cannot contain spaces, and date and time should be separated
|
403
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
404
|
+
# Date/Time Format][1].
|
405
|
+
#
|
406
|
+
#
|
407
|
+
#
|
408
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
369
409
|
# @return [String]
|
370
410
|
#
|
371
411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsApiCallAction AWS API Documentation
|
@@ -589,8 +629,9 @@ module Aws::SecurityHub
|
|
589
629
|
# Indicates when the API was created.
|
590
630
|
#
|
591
631
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
592
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
593
|
-
#
|
632
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
633
|
+
# date and time should be separated by `T`. For example,
|
634
|
+
# `2020-03-22T13:22:13.933Z`.
|
594
635
|
#
|
595
636
|
#
|
596
637
|
#
|
@@ -715,8 +756,9 @@ module Aws::SecurityHub
|
|
715
756
|
# Indicates when the stage was created.
|
716
757
|
#
|
717
758
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
718
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
719
|
-
#
|
759
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
760
|
+
# date and time should be separated by `T`. For example,
|
761
|
+
# `2020-03-22T13:22:13.933Z`.
|
720
762
|
#
|
721
763
|
#
|
722
764
|
#
|
@@ -727,8 +769,9 @@ module Aws::SecurityHub
|
|
727
769
|
# Indicates when the stage was most recently updated.
|
728
770
|
#
|
729
771
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
730
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
731
|
-
#
|
772
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
773
|
+
# date and time should be separated by `T`. For example,
|
774
|
+
# `2020-03-22T13:22:13.933Z`.
|
732
775
|
#
|
733
776
|
#
|
734
777
|
#
|
@@ -785,8 +828,9 @@ module Aws::SecurityHub
|
|
785
828
|
# Indicates when the API was created.
|
786
829
|
#
|
787
830
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
788
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
789
|
-
#
|
831
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
832
|
+
# date and time should be separated by `T`. For example,
|
833
|
+
# `2020-03-22T13:22:13.933Z`.
|
790
834
|
#
|
791
835
|
#
|
792
836
|
#
|
@@ -898,8 +942,9 @@ module Aws::SecurityHub
|
|
898
942
|
# Indicates when the stage was created.
|
899
943
|
#
|
900
944
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
901
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
902
|
-
#
|
945
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
946
|
+
# date and time should be separated by `T`. For example,
|
947
|
+
# `2020-03-22T13:22:13.933Z`.
|
903
948
|
#
|
904
949
|
#
|
905
950
|
#
|
@@ -922,8 +967,9 @@ module Aws::SecurityHub
|
|
922
967
|
# Indicates when the stage was most recently updated.
|
923
968
|
#
|
924
969
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
925
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
926
|
-
#
|
970
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
971
|
+
# date and time should be separated by `T`. For example,
|
972
|
+
# `2020-03-22T13:22:13.933Z`.
|
927
973
|
#
|
928
974
|
#
|
929
975
|
#
|
@@ -1029,8 +1075,9 @@ module Aws::SecurityHub
|
|
1029
1075
|
# Indicates when the auto scaling group was created.
|
1030
1076
|
#
|
1031
1077
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
1032
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
1033
|
-
#
|
1078
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
1079
|
+
# date and time should be separated by `T`. For example,
|
1080
|
+
# `2020-03-22T13:22:13.933Z`.
|
1034
1081
|
#
|
1035
1082
|
#
|
1036
1083
|
#
|
@@ -1371,8 +1418,9 @@ module Aws::SecurityHub
|
|
1371
1418
|
# The creation date and time for the launch configuration.
|
1372
1419
|
#
|
1373
1420
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
1374
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
1375
|
-
#
|
1421
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
1422
|
+
# date and time should be separated by `T`. For example,
|
1423
|
+
# `2020-03-22T13:22:13.933Z`.
|
1376
1424
|
#
|
1377
1425
|
#
|
1378
1426
|
#
|
@@ -2043,8 +2091,9 @@ module Aws::SecurityHub
|
|
2043
2091
|
# Indicates when the certificate was requested.
|
2044
2092
|
#
|
2045
2093
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2046
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2047
|
-
#
|
2094
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2095
|
+
# date and time should be separated by `T`. For example,
|
2096
|
+
# `2020-03-22T13:22:13.933Z`.
|
2048
2097
|
#
|
2049
2098
|
#
|
2050
2099
|
#
|
@@ -2087,8 +2136,9 @@ module Aws::SecurityHub
|
|
2087
2136
|
# certificate type is `IMPORTED`.
|
2088
2137
|
#
|
2089
2138
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2090
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2091
|
-
#
|
2139
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2140
|
+
# date and time should be separated by `T`. For example,
|
2141
|
+
# `2020-03-22T13:22:13.933Z`.
|
2092
2142
|
#
|
2093
2143
|
#
|
2094
2144
|
#
|
@@ -2105,8 +2155,9 @@ module Aws::SecurityHub
|
|
2105
2155
|
# certificate type is `AMAZON_ISSUED`.
|
2106
2156
|
#
|
2107
2157
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2108
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2109
|
-
#
|
2158
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2159
|
+
# date and time should be separated by `T`. For example,
|
2160
|
+
# `2020-03-22T13:22:13.933Z`.
|
2110
2161
|
#
|
2111
2162
|
#
|
2112
2163
|
#
|
@@ -2133,8 +2184,9 @@ module Aws::SecurityHub
|
|
2133
2184
|
# The time after which the certificate becomes invalid.
|
2134
2185
|
#
|
2135
2186
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2136
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2137
|
-
#
|
2187
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2188
|
+
# date and time should be separated by `T`. For example,
|
2189
|
+
# `2020-03-22T13:22:13.933Z`.
|
2138
2190
|
#
|
2139
2191
|
#
|
2140
2192
|
#
|
@@ -2145,8 +2197,9 @@ module Aws::SecurityHub
|
|
2145
2197
|
# The time before which the certificate is not valid.
|
2146
2198
|
#
|
2147
2199
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2148
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2149
|
-
#
|
2200
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2201
|
+
# date and time should be separated by `T`. For example,
|
2202
|
+
# `2020-03-22T13:22:13.933Z`.
|
2150
2203
|
#
|
2151
2204
|
#
|
2152
2205
|
#
|
@@ -2374,8 +2427,9 @@ module Aws::SecurityHub
|
|
2374
2427
|
# Indicates when the renewal summary was last updated.
|
2375
2428
|
#
|
2376
2429
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2377
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2378
|
-
#
|
2430
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2431
|
+
# date and time should be separated by `T`. For example,
|
2432
|
+
# `2020-03-22T13:22:13.933Z`.
|
2379
2433
|
#
|
2380
2434
|
#
|
2381
2435
|
#
|
@@ -2642,8 +2696,9 @@ module Aws::SecurityHub
|
|
2642
2696
|
# Indicates when that the distribution was last modified.
|
2643
2697
|
#
|
2644
2698
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2645
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2646
|
-
#
|
2699
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
2700
|
+
# date and time should be separated by `T`. For example,
|
2701
|
+
# `2020-03-22T13:22:13.933Z`.
|
2647
2702
|
#
|
2648
2703
|
#
|
2649
2704
|
#
|
@@ -3748,8 +3803,9 @@ module Aws::SecurityHub
|
|
3748
3803
|
# mode was set to that value.
|
3749
3804
|
#
|
3750
3805
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
3751
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
3752
|
-
#
|
3806
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
3807
|
+
# date and time should be separated by `T`. For example,
|
3808
|
+
# `2020-03-22T13:22:13.933Z`.
|
3753
3809
|
#
|
3754
3810
|
#
|
3755
3811
|
#
|
@@ -3779,8 +3835,9 @@ module Aws::SecurityHub
|
|
3779
3835
|
# Indicates when the table was created.
|
3780
3836
|
#
|
3781
3837
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
3782
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
3783
|
-
#
|
3838
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
3839
|
+
# date and time should be separated by `T`. For example,
|
3840
|
+
# `2020-03-22T13:22:13.933Z`.
|
3784
3841
|
#
|
3785
3842
|
#
|
3786
3843
|
#
|
@@ -4042,8 +4099,9 @@ module Aws::SecurityHub
|
|
4042
4099
|
# Indicates when the provisioned throughput was last decreased.
|
4043
4100
|
#
|
4044
4101
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4045
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4046
|
-
#
|
4102
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
4103
|
+
# date and time should be separated by `T`. For example,
|
4104
|
+
# `2020-03-22T13:22:13.933Z`.
|
4047
4105
|
#
|
4048
4106
|
#
|
4049
4107
|
#
|
@@ -4054,8 +4112,9 @@ module Aws::SecurityHub
|
|
4054
4112
|
# Indicates when the provisioned throughput was last increased.
|
4055
4113
|
#
|
4056
4114
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4057
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4058
|
-
#
|
4115
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
4116
|
+
# date and time should be separated by `T`. For example,
|
4117
|
+
# `2020-03-22T13:22:13.933Z`.
|
4059
4118
|
#
|
4060
4119
|
#
|
4061
4120
|
#
|
@@ -4188,8 +4247,9 @@ module Aws::SecurityHub
|
|
4188
4247
|
# Indicates the point in time that the table was restored to.
|
4189
4248
|
#
|
4190
4249
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4191
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4192
|
-
#
|
4250
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
4251
|
+
# date and time should be separated by `T`. For example,
|
4252
|
+
# `2020-03-22T13:22:13.933Z`.
|
4193
4253
|
#
|
4194
4254
|
#
|
4195
4255
|
#
|
@@ -4218,8 +4278,9 @@ module Aws::SecurityHub
|
|
4218
4278
|
# that the key was inaccessible.
|
4219
4279
|
#
|
4220
4280
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4221
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4222
|
-
#
|
4281
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
4282
|
+
# date and time should be separated by `T`. For example,
|
4283
|
+
# `2020-03-22T13:22:13.933Z`.
|
4223
4284
|
#
|
4224
4285
|
#
|
4225
4286
|
#
|
@@ -4374,8 +4435,9 @@ module Aws::SecurityHub
|
|
4374
4435
|
# Indicates when the instance was launched.
|
4375
4436
|
#
|
4376
4437
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4377
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4378
|
-
#
|
4438
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
4439
|
+
# date and time should be separated by `T`. For example,
|
4440
|
+
# `2020-03-22T13:22:13.933Z`.
|
4379
4441
|
#
|
4380
4442
|
#
|
4381
4443
|
#
|
@@ -5858,8 +5920,9 @@ module Aws::SecurityHub
|
|
5858
5920
|
# Indicates when the attachment initiated.
|
5859
5921
|
#
|
5860
5922
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
5861
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
5862
|
-
#
|
5923
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
5924
|
+
# date and time should be separated by `T`. For example,
|
5925
|
+
# `2020-03-22T13:22:13.933Z`.
|
5863
5926
|
#
|
5864
5927
|
#
|
5865
5928
|
#
|
@@ -6408,8 +6471,9 @@ module Aws::SecurityHub
|
|
6408
6471
|
# Indicates when the volume was created.
|
6409
6472
|
#
|
6410
6473
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
6411
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
6412
|
-
#
|
6474
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
6475
|
+
# date and time should be separated by `T`. For example,
|
6476
|
+
# `2020-03-22T13:22:13.933Z`.
|
6413
6477
|
#
|
6414
6478
|
#
|
6415
6479
|
#
|
@@ -6944,8 +7008,9 @@ module Aws::SecurityHub
|
|
6944
7008
|
# The date and time of the last change in status.
|
6945
7009
|
#
|
6946
7010
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
6947
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
6948
|
-
#
|
7011
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
7012
|
+
# date and time should be separated by `T`. For example,
|
7013
|
+
# `2020-03-22T13:22:13.933Z`.
|
6949
7014
|
#
|
6950
7015
|
#
|
6951
7016
|
#
|
@@ -7011,8 +7076,9 @@ module Aws::SecurityHub
|
|
7011
7076
|
# The date and time when the image was pushed to the repository.
|
7012
7077
|
#
|
7013
7078
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
7014
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
7015
|
-
#
|
7079
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
7080
|
+
# date and time should be separated by `T`. For example,
|
7081
|
+
# `2020-03-22T13:22:13.933Z`.
|
7016
7082
|
#
|
7017
7083
|
#
|
7018
7084
|
#
|
@@ -10174,8 +10240,9 @@ module Aws::SecurityHub
|
|
10174
10240
|
# Indicates when the load balancer was created.
|
10175
10241
|
#
|
10176
10242
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10177
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10178
|
-
#
|
10243
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10244
|
+
# date and time should be separated by `T`. For example,
|
10245
|
+
# `2020-03-22T13:22:13.933Z`.
|
10179
10246
|
#
|
10180
10247
|
#
|
10181
10248
|
#
|
@@ -10470,8 +10537,9 @@ module Aws::SecurityHub
|
|
10470
10537
|
# Indicates when the load balancer was created.
|
10471
10538
|
#
|
10472
10539
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10473
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10474
|
-
#
|
10540
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10541
|
+
# date and time should be separated by `T`. For example,
|
10542
|
+
# `2020-03-22T13:22:13.933Z`.
|
10475
10543
|
#
|
10476
10544
|
#
|
10477
10545
|
#
|
@@ -10549,8 +10617,9 @@ module Aws::SecurityHub
|
|
10549
10617
|
# Indicates when the IAM access key was created.
|
10550
10618
|
#
|
10551
10619
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10552
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10553
|
-
#
|
10620
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10621
|
+
# date and time should be separated by `T`. For example,
|
10622
|
+
# `2020-03-22T13:22:13.933Z`.
|
10554
10623
|
#
|
10555
10624
|
#
|
10556
10625
|
#
|
@@ -10627,8 +10696,9 @@ module Aws::SecurityHub
|
|
10627
10696
|
# Indicates when the session was created.
|
10628
10697
|
#
|
10629
10698
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10630
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10631
|
-
#
|
10699
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10700
|
+
# date and time should be separated by `T`. For example,
|
10701
|
+
# `2020-03-22T13:22:13.933Z`.
|
10632
10702
|
#
|
10633
10703
|
#
|
10634
10704
|
#
|
@@ -10710,8 +10780,9 @@ module Aws::SecurityHub
|
|
10710
10780
|
# Indicates when the IAM group was created.
|
10711
10781
|
#
|
10712
10782
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10713
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10714
|
-
#
|
10783
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10784
|
+
# date and time should be separated by `T`. For example,
|
10785
|
+
# `2020-03-22T13:22:13.933Z`.
|
10715
10786
|
#
|
10716
10787
|
#
|
10717
10788
|
#
|
@@ -10771,8 +10842,9 @@ module Aws::SecurityHub
|
|
10771
10842
|
# Indicates when the instance profile was created.
|
10772
10843
|
#
|
10773
10844
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10774
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10775
|
-
#
|
10845
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10846
|
+
# date and time should be separated by `T`. For example,
|
10847
|
+
# `2020-03-22T13:22:13.933Z`.
|
10776
10848
|
#
|
10777
10849
|
#
|
10778
10850
|
#
|
@@ -10822,8 +10894,9 @@ module Aws::SecurityHub
|
|
10822
10894
|
# Indicates when the role was created.
|
10823
10895
|
#
|
10824
10896
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10825
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10826
|
-
#
|
10897
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10898
|
+
# date and time should be separated by `T`. For example,
|
10899
|
+
# `2020-03-22T13:22:13.933Z`.
|
10827
10900
|
#
|
10828
10901
|
#
|
10829
10902
|
#
|
@@ -10886,8 +10959,9 @@ module Aws::SecurityHub
|
|
10886
10959
|
# When the policy was created.
|
10887
10960
|
#
|
10888
10961
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10889
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10890
|
-
#
|
10962
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
10963
|
+
# date and time should be separated by `T`. For example,
|
10964
|
+
# `2020-03-22T13:22:13.933Z`.
|
10891
10965
|
#
|
10892
10966
|
#
|
10893
10967
|
#
|
@@ -10931,8 +11005,9 @@ module Aws::SecurityHub
|
|
10931
11005
|
# When the policy was most recently updated.
|
10932
11006
|
#
|
10933
11007
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10934
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10935
|
-
#
|
11008
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11009
|
+
# date and time should be separated by `T`. For example,
|
11010
|
+
# `2020-03-22T13:22:13.933Z`.
|
10936
11011
|
#
|
10937
11012
|
#
|
10938
11013
|
#
|
@@ -10971,8 +11046,9 @@ module Aws::SecurityHub
|
|
10971
11046
|
# Indicates when the version was created.
|
10972
11047
|
#
|
10973
11048
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10974
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10975
|
-
#
|
11049
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11050
|
+
# date and time should be separated by `T`. For example,
|
11051
|
+
# `2020-03-22T13:22:13.933Z`.
|
10976
11052
|
#
|
10977
11053
|
#
|
10978
11054
|
#
|
@@ -11004,8 +11080,9 @@ module Aws::SecurityHub
|
|
11004
11080
|
# Indicates when the role was created.
|
11005
11081
|
#
|
11006
11082
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11007
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11008
|
-
#
|
11083
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11084
|
+
# date and time should be separated by `T`. For example,
|
11085
|
+
# `2020-03-22T13:22:13.933Z`.
|
11009
11086
|
#
|
11010
11087
|
#
|
11011
11088
|
#
|
@@ -11083,8 +11160,9 @@ module Aws::SecurityHub
|
|
11083
11160
|
# Indicates when the user was created.
|
11084
11161
|
#
|
11085
11162
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11086
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11087
|
-
#
|
11163
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11164
|
+
# date and time should be separated by `T`. For example,
|
11165
|
+
# `2020-03-22T13:22:13.933Z`.
|
11088
11166
|
#
|
11089
11167
|
#
|
11090
11168
|
#
|
@@ -11214,8 +11292,9 @@ module Aws::SecurityHub
|
|
11214
11292
|
# Indicates when the KMS key was created.
|
11215
11293
|
#
|
11216
11294
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11217
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11218
|
-
#
|
11295
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11296
|
+
# date and time should be separated by `T`. For example,
|
11297
|
+
# `2020-03-22T13:22:13.933Z`.
|
11219
11298
|
#
|
11220
11299
|
#
|
11221
11300
|
#
|
@@ -11366,8 +11445,9 @@ module Aws::SecurityHub
|
|
11366
11445
|
# Indicates when the function was last updated.
|
11367
11446
|
#
|
11368
11447
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11369
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11370
|
-
#
|
11448
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11449
|
+
# date and time should be separated by `T`. For example,
|
11450
|
+
# `2020-03-22T13:22:13.933Z`.
|
11371
11451
|
#
|
11372
11452
|
#
|
11373
11453
|
#
|
@@ -11568,8 +11648,9 @@ module Aws::SecurityHub
|
|
11568
11648
|
# Indicates when the version was created.
|
11569
11649
|
#
|
11570
11650
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11571
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11572
|
-
#
|
11651
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
11652
|
+
# date and time should be separated by `T`. For example,
|
11653
|
+
# `2020-03-22T13:22:13.933Z`.
|
11573
11654
|
#
|
11574
11655
|
#
|
11575
11656
|
#
|
@@ -12350,8 +12431,9 @@ module Aws::SecurityHub
|
|
12350
12431
|
# Time (UTC).
|
12351
12432
|
#
|
12352
12433
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12353
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12354
|
-
#
|
12434
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
12435
|
+
# date and time should be separated by `T`. For example,
|
12436
|
+
# `2020-03-22T13:22:13.933Z`.
|
12355
12437
|
#
|
12356
12438
|
#
|
12357
12439
|
#
|
@@ -12547,8 +12629,9 @@ module Aws::SecurityHub
|
|
12547
12629
|
# Indicates when the snapshot was taken.
|
12548
12630
|
#
|
12549
12631
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12550
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12551
|
-
#
|
12632
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
12633
|
+
# date and time should be separated by `T`. For example,
|
12634
|
+
# `2020-03-22T13:22:13.933Z`.
|
12552
12635
|
#
|
12553
12636
|
#
|
12554
12637
|
#
|
@@ -12582,8 +12665,9 @@ module Aws::SecurityHub
|
|
12582
12665
|
# Time (UTC).
|
12583
12666
|
#
|
12584
12667
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12585
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12586
|
-
#
|
12668
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
12669
|
+
# date and time should be separated by `T`. For example,
|
12670
|
+
# `2020-03-22T13:22:13.933Z`.
|
12587
12671
|
#
|
12588
12672
|
#
|
12589
12673
|
#
|
@@ -12818,8 +12902,9 @@ module Aws::SecurityHub
|
|
12818
12902
|
# Indicates when the DB instance was created.
|
12819
12903
|
#
|
12820
12904
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12821
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12822
|
-
#
|
12905
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
12906
|
+
# date and time should be separated by `T`. For example,
|
12907
|
+
# `2020-03-22T13:22:13.933Z`.
|
12823
12908
|
#
|
12824
12909
|
#
|
12825
12910
|
#
|
@@ -12925,8 +13010,9 @@ module Aws::SecurityHub
|
|
12925
13010
|
# point-in-time restore.
|
12926
13011
|
#
|
12927
13012
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12928
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12929
|
-
#
|
13013
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
13014
|
+
# date and time should be separated by `T`. For example,
|
13015
|
+
# `2020-03-22T13:22:13.933Z`.
|
12930
13016
|
#
|
12931
13017
|
#
|
12932
13018
|
#
|
@@ -13738,8 +13824,9 @@ module Aws::SecurityHub
|
|
13738
13824
|
# The datetime when the event notification subscription was created.
|
13739
13825
|
#
|
13740
13826
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
13741
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
13742
|
-
#
|
13827
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
13828
|
+
# date and time should be separated by `T`. For example,
|
13829
|
+
# `2020-03-22T13:22:13.933Z`.
|
13743
13830
|
#
|
13744
13831
|
#
|
13745
13832
|
#
|
@@ -13927,8 +14014,9 @@ module Aws::SecurityHub
|
|
13927
14014
|
# The end of the time window for which maintenance was deferred.
|
13928
14015
|
#
|
13929
14016
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
13930
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
13931
|
-
#
|
14017
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14018
|
+
# date and time should be separated by `T`. For example,
|
14019
|
+
# `2020-03-22T13:22:13.933Z`.
|
13932
14020
|
#
|
13933
14021
|
#
|
13934
14022
|
#
|
@@ -13943,8 +14031,9 @@ module Aws::SecurityHub
|
|
13943
14031
|
# The start of the time window for which maintenance was deferred.
|
13944
14032
|
#
|
13945
14033
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
13946
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
13947
|
-
#
|
14034
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14035
|
+
# date and time should be separated by `T`. For example,
|
14036
|
+
# `2020-03-22T13:22:13.933Z`.
|
13948
14037
|
#
|
13949
14038
|
#
|
13950
14039
|
#
|
@@ -13997,8 +14086,9 @@ module Aws::SecurityHub
|
|
13997
14086
|
# Indicates when the cluster was created.
|
13998
14087
|
#
|
13999
14088
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14000
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14001
|
-
#
|
14089
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14090
|
+
# date and time should be separated by `T`. For example,
|
14091
|
+
# `2020-03-22T13:22:13.933Z`.
|
14002
14092
|
#
|
14003
14093
|
#
|
14004
14094
|
#
|
@@ -14100,8 +14190,9 @@ module Aws::SecurityHub
|
|
14100
14190
|
# enabled.
|
14101
14191
|
#
|
14102
14192
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14103
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14104
|
-
#
|
14193
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14194
|
+
# date and time should be separated by `T`. For example,
|
14195
|
+
# `2020-03-22T13:22:13.933Z`.
|
14105
14196
|
#
|
14106
14197
|
#
|
14107
14198
|
#
|
@@ -14154,8 +14245,9 @@ module Aws::SecurityHub
|
|
14154
14245
|
# Indicates the start of the next maintenance window.
|
14155
14246
|
#
|
14156
14247
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14157
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14158
|
-
#
|
14248
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14249
|
+
# date and time should be separated by `T`. For example,
|
14250
|
+
# `2020-03-22T13:22:13.933Z`.
|
14159
14251
|
#
|
14160
14252
|
#
|
14161
14253
|
#
|
@@ -14388,8 +14480,9 @@ module Aws::SecurityHub
|
|
14388
14480
|
# The last time when logs failed to be delivered.
|
14389
14481
|
#
|
14390
14482
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14391
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14392
|
-
#
|
14483
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14484
|
+
# date and time should be separated by `T`. For example,
|
14485
|
+
# `2020-03-22T13:22:13.933Z`.
|
14393
14486
|
#
|
14394
14487
|
#
|
14395
14488
|
#
|
@@ -14400,8 +14493,9 @@ module Aws::SecurityHub
|
|
14400
14493
|
# The last time that logs were delivered successfully.
|
14401
14494
|
#
|
14402
14495
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14403
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14404
|
-
#
|
14496
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14497
|
+
# date and time should be separated by `T`. For example,
|
14498
|
+
# `2020-03-22T13:22:13.933Z`.
|
14405
14499
|
#
|
14406
14500
|
#
|
14407
14501
|
#
|
@@ -14679,8 +14773,9 @@ module Aws::SecurityHub
|
|
14679
14773
|
# The date when objects are moved or deleted.
|
14680
14774
|
#
|
14681
14775
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14682
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14683
|
-
#
|
14776
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14777
|
+
# date and time should be separated by `T`. For example,
|
14778
|
+
# `2020-03-22T13:22:13.933Z`.
|
14684
14779
|
#
|
14685
14780
|
#
|
14686
14781
|
#
|
@@ -14888,8 +14983,9 @@ module Aws::SecurityHub
|
|
14888
14983
|
# class. If you provide `Date`, you cannot provide `Days`.
|
14889
14984
|
#
|
14890
14985
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14891
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14892
|
-
#
|
14986
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
14987
|
+
# date and time should be separated by `T`. For example,
|
14988
|
+
# `2020-03-22T13:22:13.933Z`.
|
14893
14989
|
#
|
14894
14990
|
#
|
14895
14991
|
#
|
@@ -14968,8 +15064,9 @@ module Aws::SecurityHub
|
|
14968
15064
|
# Indicates when the S3 bucket was created.
|
14969
15065
|
#
|
14970
15066
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14971
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14972
|
-
#
|
15067
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
15068
|
+
# date and time should be separated by `T`. For example,
|
15069
|
+
# `2020-03-22T13:22:13.933Z`.
|
14973
15070
|
#
|
14974
15071
|
#
|
14975
15072
|
#
|
@@ -15338,8 +15435,9 @@ module Aws::SecurityHub
|
|
15338
15435
|
# Indicates when the object was last modified.
|
15339
15436
|
#
|
15340
15437
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15341
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15342
|
-
#
|
15438
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
15439
|
+
# date and time should be separated by `T`. For example,
|
15440
|
+
# `2020-03-22T13:22:13.933Z`.
|
15343
15441
|
#
|
15344
15442
|
#
|
15345
15443
|
#
|
@@ -15395,7 +15493,7 @@ module Aws::SecurityHub
|
|
15395
15493
|
# An array of up to three Git repositories associated with the
|
15396
15494
|
# notebook instance. These can be either the names of Git repositories
|
15397
15495
|
# stored as resources in your account, or the URL of Git repositories
|
15398
|
-
# in [
|
15496
|
+
# in [CodeCommit][1] or in any other Git repository. These
|
15399
15497
|
# repositories are cloned at the same level as the default repository
|
15400
15498
|
# of your notebook instance. For more information, see [Associating
|
15401
15499
|
# Git repositories with SageMaker notebook instances][2] in the
|
@@ -15411,8 +15509,8 @@ module Aws::SecurityHub
|
|
15411
15509
|
# The Git repository associated with the notebook instance as its
|
15412
15510
|
# default code repository. This can be either the name of a Git
|
15413
15511
|
# repository stored as a resource in your account, or the URL of a Git
|
15414
|
-
# repository in [
|
15415
|
-
#
|
15512
|
+
# repository in [CodeCommit][1] or in any other Git repository. When
|
15513
|
+
# you open a notebook instance, it opens in the directory that
|
15416
15514
|
# contains this repository. For more information, see [Associating Git
|
15417
15515
|
# repositories with SageMaker notebook instances][2] in the *Amazon
|
15418
15516
|
# SageMaker Developer Guide*.
|
@@ -15701,8 +15799,9 @@ module Aws::SecurityHub
|
|
15701
15799
|
# potential security issue that a finding captured.
|
15702
15800
|
#
|
15703
15801
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15704
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15705
|
-
#
|
15802
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
15803
|
+
# date and time should be separated by `T`. For example,
|
15804
|
+
# `2020-03-22T13:22:13.933Z`.
|
15706
15805
|
#
|
15707
15806
|
#
|
15708
15807
|
#
|
@@ -15714,8 +15813,9 @@ module Aws::SecurityHub
|
|
15714
15813
|
# the potential security issue that a finding captured.
|
15715
15814
|
#
|
15716
15815
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15717
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15718
|
-
#
|
15816
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
15817
|
+
# date and time should be separated by `T`. For example,
|
15818
|
+
# `2020-03-22T13:22:13.933Z`.
|
15719
15819
|
#
|
15720
15820
|
#
|
15721
15821
|
#
|
@@ -15727,8 +15827,9 @@ module Aws::SecurityHub
|
|
15727
15827
|
# security issue that a finding captured.
|
15728
15828
|
#
|
15729
15829
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15730
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15731
|
-
#
|
15830
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
15831
|
+
# date and time should be separated by `T`. For example,
|
15832
|
+
# `2020-03-22T13:22:13.933Z`.
|
15732
15833
|
#
|
15733
15834
|
#
|
15734
15835
|
#
|
@@ -15740,8 +15841,9 @@ module Aws::SecurityHub
|
|
15740
15841
|
# finding record.
|
15741
15842
|
#
|
15742
15843
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15743
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15744
|
-
#
|
15844
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
15845
|
+
# date and time should be separated by `T`. For example,
|
15846
|
+
# `2020-03-22T13:22:13.933Z`.
|
15745
15847
|
#
|
15746
15848
|
#
|
15747
15849
|
#
|
@@ -15988,23 +16090,59 @@ module Aws::SecurityHub
|
|
15988
16090
|
# An ISO8601-formatted timestamp that indicates when the
|
15989
16091
|
# security-findings provider first observed the potential security
|
15990
16092
|
# issue that a finding captured.
|
16093
|
+
#
|
16094
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16095
|
+
# value cannot contain spaces, and date and time should be separated
|
16096
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16097
|
+
# Date/Time Format][1].
|
16098
|
+
#
|
16099
|
+
#
|
16100
|
+
#
|
16101
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
15991
16102
|
# @return [Array<Types::DateFilter>]
|
15992
16103
|
#
|
15993
16104
|
# @!attribute [rw] last_observed_at
|
15994
16105
|
# An ISO8601-formatted timestamp that indicates when the
|
15995
16106
|
# security-findings provider most recently observed the potential
|
15996
16107
|
# security issue that a finding captured.
|
16108
|
+
#
|
16109
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16110
|
+
# value cannot contain spaces, and date and time should be separated
|
16111
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16112
|
+
# Date/Time Format][1].
|
16113
|
+
#
|
16114
|
+
#
|
16115
|
+
#
|
16116
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
15997
16117
|
# @return [Array<Types::DateFilter>]
|
15998
16118
|
#
|
15999
16119
|
# @!attribute [rw] created_at
|
16000
16120
|
# An ISO8601-formatted timestamp that indicates when the
|
16001
16121
|
# security-findings provider captured the potential security issue
|
16002
16122
|
# that a finding captured.
|
16123
|
+
#
|
16124
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16125
|
+
# value cannot contain spaces, and date and time should be separated
|
16126
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16127
|
+
# Date/Time Format][1].
|
16128
|
+
#
|
16129
|
+
#
|
16130
|
+
#
|
16131
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
16003
16132
|
# @return [Array<Types::DateFilter>]
|
16004
16133
|
#
|
16005
16134
|
# @!attribute [rw] updated_at
|
16006
16135
|
# An ISO8601-formatted timestamp that indicates when the
|
16007
16136
|
# security-findings provider last updated the finding record.
|
16137
|
+
#
|
16138
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16139
|
+
# value cannot contain spaces, and date and time should be separated
|
16140
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16141
|
+
# Date/Time Format][1].
|
16142
|
+
#
|
16143
|
+
#
|
16144
|
+
#
|
16145
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
16008
16146
|
# @return [Array<Types::DateFilter>]
|
16009
16147
|
#
|
16010
16148
|
# @!attribute [rw] severity_product
|
@@ -16160,11 +16298,29 @@ module Aws::SecurityHub
|
|
16160
16298
|
# @return [Array<Types::NumberFilter>]
|
16161
16299
|
#
|
16162
16300
|
# @!attribute [rw] process_launched_at
|
16163
|
-
#
|
16301
|
+
# A timestamp that identifies when the process was launched.
|
16302
|
+
#
|
16303
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16304
|
+
# value cannot contain spaces, and date and time should be separated
|
16305
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16306
|
+
# Date/Time Format][1].
|
16307
|
+
#
|
16308
|
+
#
|
16309
|
+
#
|
16310
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
16164
16311
|
# @return [Array<Types::DateFilter>]
|
16165
16312
|
#
|
16166
16313
|
# @!attribute [rw] process_terminated_at
|
16167
|
-
#
|
16314
|
+
# A timestamp that identifies when the process was terminated.
|
16315
|
+
#
|
16316
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16317
|
+
# value cannot contain spaces, and date and time should be separated
|
16318
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16319
|
+
# Date/Time Format][1].
|
16320
|
+
#
|
16321
|
+
#
|
16322
|
+
#
|
16323
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
16168
16324
|
# @return [Array<Types::DateFilter>]
|
16169
16325
|
#
|
16170
16326
|
# @!attribute [rw] threat_intel_indicator_type
|
@@ -16180,8 +16336,8 @@ module Aws::SecurityHub
|
|
16180
16336
|
# @return [Array<Types::StringFilter>]
|
16181
16337
|
#
|
16182
16338
|
# @!attribute [rw] threat_intel_indicator_last_observed_at
|
16183
|
-
#
|
16184
|
-
# indicator.
|
16339
|
+
# A timestamp that identifies the last observation of a threat
|
16340
|
+
# intelligence indicator.
|
16185
16341
|
# @return [Array<Types::DateFilter>]
|
16186
16342
|
#
|
16187
16343
|
# @!attribute [rw] threat_intel_indicator_source
|
@@ -16292,7 +16448,16 @@ module Aws::SecurityHub
|
|
16292
16448
|
# @return [Array<Types::StringFilter>]
|
16293
16449
|
#
|
16294
16450
|
# @!attribute [rw] resource_container_launched_at
|
16295
|
-
#
|
16451
|
+
# A timestamp that identifies when the container was started.
|
16452
|
+
#
|
16453
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
16454
|
+
# value cannot contain spaces, and date and time should be separated
|
16455
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
16456
|
+
# Date/Time Format][1].
|
16457
|
+
#
|
16458
|
+
#
|
16459
|
+
#
|
16460
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
16296
16461
|
# @return [Array<Types::DateFilter>]
|
16297
16462
|
#
|
16298
16463
|
# @!attribute [rw] resource_details_other
|
@@ -16448,6 +16613,23 @@ module Aws::SecurityHub
|
|
16448
16613
|
# results.
|
16449
16614
|
# @return [Array<Types::BooleanFilter>]
|
16450
16615
|
#
|
16616
|
+
# @!attribute [rw] compliance_security_control_id
|
16617
|
+
# The unique identifier of a control across standards. Values for this
|
16618
|
+
# field typically consist of an Amazon Web Service and a number, such
|
16619
|
+
# as APIGateway.5.
|
16620
|
+
# @return [Array<Types::StringFilter>]
|
16621
|
+
#
|
16622
|
+
# @!attribute [rw] compliance_associated_standards_id
|
16623
|
+
# The unique identifier of a standard in which a control is enabled.
|
16624
|
+
# This field consists of the resource portion of the Amazon Resource
|
16625
|
+
# Name (ARN) returned for a standard in the [DescribeStandards][1] API
|
16626
|
+
# response.
|
16627
|
+
#
|
16628
|
+
#
|
16629
|
+
#
|
16630
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_DescribeStandards.html
|
16631
|
+
# @return [Array<Types::StringFilter>]
|
16632
|
+
#
|
16451
16633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsSecurityFindingFilters AWS API Documentation
|
16452
16634
|
#
|
16453
16635
|
class AwsSecurityFindingFilters < Struct.new(
|
@@ -16545,7 +16727,9 @@ module Aws::SecurityHub
|
|
16545
16727
|
:finding_provider_fields_severity_label,
|
16546
16728
|
:finding_provider_fields_severity_original,
|
16547
16729
|
:finding_provider_fields_types,
|
16548
|
-
:sample
|
16730
|
+
:sample,
|
16731
|
+
:compliance_security_control_id,
|
16732
|
+
:compliance_associated_standards_id)
|
16549
16733
|
SENSITIVE = []
|
16550
16734
|
include Aws::Structure
|
16551
16735
|
end
|
@@ -17777,8 +17961,8 @@ module Aws::SecurityHub
|
|
17777
17961
|
|
17778
17962
|
# Provides details about rules in a rule group. A rule identifies web
|
17779
17963
|
# requests that you want to allow, block, or count. Each rule includes
|
17780
|
-
# one top-level Statement that
|
17781
|
-
# requests, and parameters that govern how
|
17964
|
+
# one top-level Statement that WAF uses to identify matching web
|
17965
|
+
# requests, and parameters that govern how WAF handles them.
|
17782
17966
|
#
|
17783
17967
|
# @!attribute [rw] action
|
17784
17968
|
# The action that WAF should take on a web request when it matches the
|
@@ -18463,12 +18647,25 @@ module Aws::SecurityHub
|
|
18463
18647
|
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-results.html#securityhub-standards-results-asff
|
18464
18648
|
# @return [Array<Types::StatusReason>]
|
18465
18649
|
#
|
18650
|
+
# @!attribute [rw] security_control_id
|
18651
|
+
# The unique identifier of a control across standards. Values for this
|
18652
|
+
# field typically consist of an Amazon Web Service and a number, such
|
18653
|
+
# as APIGateway.5.
|
18654
|
+
# @return [String]
|
18655
|
+
#
|
18656
|
+
# @!attribute [rw] associated_standards
|
18657
|
+
# The enabled security standards in which a security control is
|
18658
|
+
# currently enabled.
|
18659
|
+
# @return [Array<Types::AssociatedStandard>]
|
18660
|
+
#
|
18466
18661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Compliance AWS API Documentation
|
18467
18662
|
#
|
18468
18663
|
class Compliance < Struct.new(
|
18469
18664
|
:status,
|
18470
18665
|
:related_requirements,
|
18471
|
-
:status_reasons
|
18666
|
+
:status_reasons,
|
18667
|
+
:security_control_id,
|
18668
|
+
:associated_standards)
|
18472
18669
|
SENSITIVE = []
|
18473
18670
|
include Aws::Structure
|
18474
18671
|
end
|
@@ -18495,8 +18692,9 @@ module Aws::SecurityHub
|
|
18495
18692
|
# Indicates when the container started.
|
18496
18693
|
#
|
18497
18694
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
18498
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
18499
|
-
#
|
18695
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
18696
|
+
# date and time should be separated by `T`. For example,
|
18697
|
+
# `2020-03-22T13:22:13.933Z`.
|
18500
18698
|
#
|
18501
18699
|
#
|
18502
18700
|
#
|
@@ -18834,11 +19032,29 @@ module Aws::SecurityHub
|
|
18834
19032
|
# A date filter for querying findings.
|
18835
19033
|
#
|
18836
19034
|
# @!attribute [rw] start
|
18837
|
-
# A start date for the date filter.
|
19035
|
+
# A timestamp that provides the start date for the date filter.
|
19036
|
+
#
|
19037
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
19038
|
+
# value cannot contain spaces, and date and time should be separated
|
19039
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
19040
|
+
# Date/Time Format][1].
|
19041
|
+
#
|
19042
|
+
#
|
19043
|
+
#
|
19044
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
18838
19045
|
# @return [String]
|
18839
19046
|
#
|
18840
19047
|
# @!attribute [rw] end
|
18841
|
-
#
|
19048
|
+
# A timestamp that provides the end date for the date filter.
|
19049
|
+
#
|
19050
|
+
# A correctly formatted example is `2020-05-21T20:16:34.724Z`. The
|
19051
|
+
# value cannot contain spaces, and date and time should be separated
|
19052
|
+
# by `T`. For more information, see [RFC 3339 section 5.6, Internet
|
19053
|
+
# Date/Time Format][1].
|
19054
|
+
#
|
19055
|
+
#
|
19056
|
+
#
|
19057
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
18842
19058
|
# @return [String]
|
18843
19059
|
#
|
18844
19060
|
# @!attribute [rw] date_range
|
@@ -20716,27 +20932,27 @@ module Aws::SecurityHub
|
|
20716
20932
|
#
|
20717
20933
|
# The status can have one of the following values:
|
20718
20934
|
#
|
20719
|
-
# * `
|
20935
|
+
# * `Created` - Indicates that the administrator account added the
|
20720
20936
|
# member account, but has not yet invited the member account.
|
20721
20937
|
#
|
20722
|
-
# * `
|
20938
|
+
# * `Invited` - Indicates that the administrator account invited the
|
20723
20939
|
# member account. The member account has not yet responded to the
|
20724
20940
|
# invitation.
|
20725
20941
|
#
|
20726
|
-
# * `
|
20942
|
+
# * `Enabled` - Indicates that the member account is currently active.
|
20727
20943
|
# For manually invited member accounts, indicates that the member
|
20728
20944
|
# account accepted the invitation.
|
20729
20945
|
#
|
20730
|
-
# * `
|
20946
|
+
# * `Removed` - Indicates that the administrator account disassociated
|
20731
20947
|
# the member account.
|
20732
20948
|
#
|
20733
|
-
# * `
|
20949
|
+
# * `Resigned` - Indicates that the member account disassociated
|
20734
20950
|
# themselves from the administrator account.
|
20735
20951
|
#
|
20736
|
-
# * `
|
20952
|
+
# * `Deleted` - Indicates that the administrator account deleted the
|
20737
20953
|
# member account.
|
20738
20954
|
#
|
20739
|
-
# * `
|
20955
|
+
# * `AccountSuspended` - Indicates that an organization account was
|
20740
20956
|
# suspended from Amazon Web Services at the same time that the
|
20741
20957
|
# administrator account tried to enable the organization account as
|
20742
20958
|
# a member account.
|
@@ -20972,8 +21188,9 @@ module Aws::SecurityHub
|
|
20972
21188
|
# The timestamp of when the note was updated.
|
20973
21189
|
#
|
20974
21190
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
20975
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
20976
|
-
#
|
21191
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
21192
|
+
# date and time should be separated by `T`. For example,
|
21193
|
+
# `2020-03-22T13:22:13.933Z`.
|
20977
21194
|
#
|
20978
21195
|
#
|
20979
21196
|
#
|
@@ -21146,8 +21363,9 @@ module Aws::SecurityHub
|
|
21146
21363
|
# Indicates when the operation started.
|
21147
21364
|
#
|
21148
21365
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21149
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21150
|
-
#
|
21366
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
21367
|
+
# date and time should be separated by `T`. For example,
|
21368
|
+
# `2020-03-22T13:22:13.933Z`.
|
21151
21369
|
#
|
21152
21370
|
#
|
21153
21371
|
#
|
@@ -21158,8 +21376,9 @@ module Aws::SecurityHub
|
|
21158
21376
|
# Indicates when the operation completed.
|
21159
21377
|
#
|
21160
21378
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21161
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21162
|
-
#
|
21379
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
21380
|
+
# date and time should be separated by `T`. For example,
|
21381
|
+
# `2020-03-22T13:22:13.933Z`.
|
21163
21382
|
#
|
21164
21383
|
#
|
21165
21384
|
#
|
@@ -21302,8 +21521,9 @@ module Aws::SecurityHub
|
|
21302
21521
|
# Indicates when the process was launched.
|
21303
21522
|
#
|
21304
21523
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21305
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21306
|
-
#
|
21524
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
21525
|
+
# date and time should be separated by `T`. For example,
|
21526
|
+
# `2020-03-22T13:22:13.933Z`.
|
21307
21527
|
#
|
21308
21528
|
#
|
21309
21529
|
#
|
@@ -21314,8 +21534,9 @@ module Aws::SecurityHub
|
|
21314
21534
|
# Indicates when the process was terminated.
|
21315
21535
|
#
|
21316
21536
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21317
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21318
|
-
#
|
21537
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
21538
|
+
# date and time should be separated by `T`. For example,
|
21539
|
+
# `2020-03-22T13:22:13.933Z`.
|
21319
21540
|
#
|
21320
21541
|
#
|
21321
21542
|
#
|
@@ -23253,8 +23474,9 @@ module Aws::SecurityHub
|
|
23253
23474
|
# indicator was observed.
|
23254
23475
|
#
|
23255
23476
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
23256
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
23257
|
-
#
|
23477
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
23478
|
+
# date and time should be separated by `T`. For example,
|
23479
|
+
# `2020-03-22T13:22:13.933Z`.
|
23258
23480
|
#
|
23259
23481
|
#
|
23260
23482
|
#
|
@@ -23710,8 +23932,9 @@ module Aws::SecurityHub
|
|
23710
23932
|
# Indicates when the vulnerability advisory was created.
|
23711
23933
|
#
|
23712
23934
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
23713
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
23714
|
-
#
|
23935
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
23936
|
+
# date and time should be separated by `T`. For example,
|
23937
|
+
# `2020-03-22T13:22:13.933Z`.
|
23715
23938
|
#
|
23716
23939
|
#
|
23717
23940
|
#
|
@@ -23722,8 +23945,9 @@ module Aws::SecurityHub
|
|
23722
23945
|
# Indicates when the vulnerability advisory was last updated.
|
23723
23946
|
#
|
23724
23947
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
23725
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
23726
|
-
#
|
23948
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces, and
|
23949
|
+
# date and time should be separated by `T`. For example,
|
23950
|
+
# `2020-03-22T13:22:13.933Z`.
|
23727
23951
|
#
|
23728
23952
|
#
|
23729
23953
|
#
|