aws-sdk-securityhub 1.76.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +6 -6
- 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 +319 -149
- data/lib/aws-sdk-securityhub.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42097a9ea879fbbaca78b14e116697b2232e7647e217b098fbc12d4a10949c88
|
4
|
+
data.tar.gz: e65c14100c5d78c093c59f712e8810b68d9b2c79b3c3d6efe2a6769fd50b5dd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1263bfd760eb829b2281aa32da750834d60e4f34451c1688e2cfb7eedd6d9942bf920a7cc8ca2eeba4b985e29aca99826e0309afaed47c3244e506119ec249a
|
7
|
+
data.tar.gz: 88d7596b018cb3db89655b0443a667064679407bb7878165478227911263e5e6607830719985ee71f60537140b50169b3817ffc3c8198c4e36f065820dcad57d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
@@ -2368,16 +2368,16 @@ module Aws::SecurityHub
|
|
2368
2368
|
# integrated with Security Hub.
|
2369
2369
|
#
|
2370
2370
|
# When you use the `EnableSecurityHub` operation to enable Security Hub,
|
2371
|
-
# you also automatically enable the following standards
|
2371
|
+
# you also automatically enable the following standards:
|
2372
2372
|
#
|
2373
|
-
# * CIS Amazon Web Services Foundations
|
2373
|
+
# * Center for Internet Security (CIS) Amazon Web Services Foundations
|
2374
|
+
# Benchmark v1.2.0
|
2374
2375
|
#
|
2375
2376
|
# * Amazon Web Services Foundational Security Best Practices
|
2376
2377
|
#
|
2377
|
-
#
|
2378
|
-
# (PCI DSS) standard.
|
2378
|
+
# Other standards are not automatically enabled.
|
2379
2379
|
#
|
2380
|
-
# To
|
2380
|
+
# To opt out of automatically enabled standards, set
|
2381
2381
|
# `EnableDefaultStandards` to `false`.
|
2382
2382
|
#
|
2383
2383
|
# After you enable Security Hub, to enable a standard, use the
|
@@ -5677,7 +5677,7 @@ module Aws::SecurityHub
|
|
5677
5677
|
params: params,
|
5678
5678
|
config: config)
|
5679
5679
|
context[:gem_name] = 'aws-sdk-securityhub'
|
5680
|
-
context[:gem_version] = '1.
|
5680
|
+
context[:gem_version] = '1.77.0'
|
5681
5681
|
Seahorse::Client::Request.new(handlers, context)
|
5682
5682
|
end
|
5683
5683
|
|
@@ -50,9 +50,6 @@ module Aws::SecurityHub
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
-
if self[:region].nil?
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
-
end
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
58
55
|
if self[:use_dual_stack].nil?
|
@@ -14,36 +14,39 @@ module Aws::SecurityHub
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
19
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
-
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://securityhub-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
-
end
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
33
18
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
-
|
35
|
-
return Aws::Endpoints::Endpoint.new(url: "https://securityhub-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
-
end
|
37
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
38
20
|
end
|
39
21
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
-
|
41
|
-
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://securityhub-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://securityhub-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
|
+
end
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://securityhub.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
|
+
end
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
42
45
|
end
|
43
|
-
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://securityhub.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
44
47
|
end
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://securityhub.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
46
48
|
end
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
47
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
48
51
|
|
49
52
|
end
|
@@ -383,11 +383,29 @@ module Aws::SecurityHub
|
|
383
383
|
# @!attribute [rw] first_seen
|
384
384
|
# An ISO8601-formatted timestamp that indicates when the API call was
|
385
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
|
386
395
|
# @return [String]
|
387
396
|
#
|
388
397
|
# @!attribute [rw] last_seen
|
389
398
|
# An ISO8601-formatted timestamp that indicates when the API call was
|
390
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
|
391
409
|
# @return [String]
|
392
410
|
#
|
393
411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsApiCallAction AWS API Documentation
|
@@ -611,8 +629,9 @@ module Aws::SecurityHub
|
|
611
629
|
# Indicates when the API was created.
|
612
630
|
#
|
613
631
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
614
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
615
|
-
#
|
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`.
|
616
635
|
#
|
617
636
|
#
|
618
637
|
#
|
@@ -737,8 +756,9 @@ module Aws::SecurityHub
|
|
737
756
|
# Indicates when the stage was created.
|
738
757
|
#
|
739
758
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
740
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
741
|
-
#
|
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`.
|
742
762
|
#
|
743
763
|
#
|
744
764
|
#
|
@@ -749,8 +769,9 @@ module Aws::SecurityHub
|
|
749
769
|
# Indicates when the stage was most recently updated.
|
750
770
|
#
|
751
771
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
752
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
753
|
-
#
|
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`.
|
754
775
|
#
|
755
776
|
#
|
756
777
|
#
|
@@ -807,8 +828,9 @@ module Aws::SecurityHub
|
|
807
828
|
# Indicates when the API was created.
|
808
829
|
#
|
809
830
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
810
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
811
|
-
#
|
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`.
|
812
834
|
#
|
813
835
|
#
|
814
836
|
#
|
@@ -920,8 +942,9 @@ module Aws::SecurityHub
|
|
920
942
|
# Indicates when the stage was created.
|
921
943
|
#
|
922
944
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
923
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
924
|
-
#
|
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`.
|
925
948
|
#
|
926
949
|
#
|
927
950
|
#
|
@@ -944,8 +967,9 @@ module Aws::SecurityHub
|
|
944
967
|
# Indicates when the stage was most recently updated.
|
945
968
|
#
|
946
969
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
947
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
948
|
-
#
|
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`.
|
949
973
|
#
|
950
974
|
#
|
951
975
|
#
|
@@ -1051,8 +1075,9 @@ module Aws::SecurityHub
|
|
1051
1075
|
# Indicates when the auto scaling group was created.
|
1052
1076
|
#
|
1053
1077
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
1054
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
1055
|
-
#
|
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`.
|
1056
1081
|
#
|
1057
1082
|
#
|
1058
1083
|
#
|
@@ -1393,8 +1418,9 @@ module Aws::SecurityHub
|
|
1393
1418
|
# The creation date and time for the launch configuration.
|
1394
1419
|
#
|
1395
1420
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
1396
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
1397
|
-
#
|
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`.
|
1398
1424
|
#
|
1399
1425
|
#
|
1400
1426
|
#
|
@@ -2065,8 +2091,9 @@ module Aws::SecurityHub
|
|
2065
2091
|
# Indicates when the certificate was requested.
|
2066
2092
|
#
|
2067
2093
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2068
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2069
|
-
#
|
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`.
|
2070
2097
|
#
|
2071
2098
|
#
|
2072
2099
|
#
|
@@ -2109,8 +2136,9 @@ module Aws::SecurityHub
|
|
2109
2136
|
# certificate type is `IMPORTED`.
|
2110
2137
|
#
|
2111
2138
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2112
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2113
|
-
#
|
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`.
|
2114
2142
|
#
|
2115
2143
|
#
|
2116
2144
|
#
|
@@ -2127,8 +2155,9 @@ module Aws::SecurityHub
|
|
2127
2155
|
# certificate type is `AMAZON_ISSUED`.
|
2128
2156
|
#
|
2129
2157
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2130
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2131
|
-
#
|
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`.
|
2132
2161
|
#
|
2133
2162
|
#
|
2134
2163
|
#
|
@@ -2155,8 +2184,9 @@ module Aws::SecurityHub
|
|
2155
2184
|
# The time after which the certificate becomes invalid.
|
2156
2185
|
#
|
2157
2186
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2158
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2159
|
-
#
|
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`.
|
2160
2190
|
#
|
2161
2191
|
#
|
2162
2192
|
#
|
@@ -2167,8 +2197,9 @@ module Aws::SecurityHub
|
|
2167
2197
|
# The time before which the certificate is not valid.
|
2168
2198
|
#
|
2169
2199
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2170
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2171
|
-
#
|
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`.
|
2172
2203
|
#
|
2173
2204
|
#
|
2174
2205
|
#
|
@@ -2396,8 +2427,9 @@ module Aws::SecurityHub
|
|
2396
2427
|
# Indicates when the renewal summary was last updated.
|
2397
2428
|
#
|
2398
2429
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2399
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2400
|
-
#
|
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`.
|
2401
2433
|
#
|
2402
2434
|
#
|
2403
2435
|
#
|
@@ -2664,8 +2696,9 @@ module Aws::SecurityHub
|
|
2664
2696
|
# Indicates when that the distribution was last modified.
|
2665
2697
|
#
|
2666
2698
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
2667
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
2668
|
-
#
|
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`.
|
2669
2702
|
#
|
2670
2703
|
#
|
2671
2704
|
#
|
@@ -3770,8 +3803,9 @@ module Aws::SecurityHub
|
|
3770
3803
|
# mode was set to that value.
|
3771
3804
|
#
|
3772
3805
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
3773
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
3774
|
-
#
|
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`.
|
3775
3809
|
#
|
3776
3810
|
#
|
3777
3811
|
#
|
@@ -3801,8 +3835,9 @@ module Aws::SecurityHub
|
|
3801
3835
|
# Indicates when the table was created.
|
3802
3836
|
#
|
3803
3837
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
3804
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
3805
|
-
#
|
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`.
|
3806
3841
|
#
|
3807
3842
|
#
|
3808
3843
|
#
|
@@ -4064,8 +4099,9 @@ module Aws::SecurityHub
|
|
4064
4099
|
# Indicates when the provisioned throughput was last decreased.
|
4065
4100
|
#
|
4066
4101
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4067
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4068
|
-
#
|
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`.
|
4069
4105
|
#
|
4070
4106
|
#
|
4071
4107
|
#
|
@@ -4076,8 +4112,9 @@ module Aws::SecurityHub
|
|
4076
4112
|
# Indicates when the provisioned throughput was last increased.
|
4077
4113
|
#
|
4078
4114
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4079
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4080
|
-
#
|
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`.
|
4081
4118
|
#
|
4082
4119
|
#
|
4083
4120
|
#
|
@@ -4210,8 +4247,9 @@ module Aws::SecurityHub
|
|
4210
4247
|
# Indicates the point in time that the table was restored to.
|
4211
4248
|
#
|
4212
4249
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4213
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4214
|
-
#
|
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`.
|
4215
4253
|
#
|
4216
4254
|
#
|
4217
4255
|
#
|
@@ -4240,8 +4278,9 @@ module Aws::SecurityHub
|
|
4240
4278
|
# that the key was inaccessible.
|
4241
4279
|
#
|
4242
4280
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4243
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4244
|
-
#
|
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`.
|
4245
4284
|
#
|
4246
4285
|
#
|
4247
4286
|
#
|
@@ -4396,8 +4435,9 @@ module Aws::SecurityHub
|
|
4396
4435
|
# Indicates when the instance was launched.
|
4397
4436
|
#
|
4398
4437
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
4399
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
4400
|
-
#
|
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`.
|
4401
4441
|
#
|
4402
4442
|
#
|
4403
4443
|
#
|
@@ -5880,8 +5920,9 @@ module Aws::SecurityHub
|
|
5880
5920
|
# Indicates when the attachment initiated.
|
5881
5921
|
#
|
5882
5922
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
5883
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
5884
|
-
#
|
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`.
|
5885
5926
|
#
|
5886
5927
|
#
|
5887
5928
|
#
|
@@ -6430,8 +6471,9 @@ module Aws::SecurityHub
|
|
6430
6471
|
# Indicates when the volume was created.
|
6431
6472
|
#
|
6432
6473
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
6433
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
6434
|
-
#
|
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`.
|
6435
6477
|
#
|
6436
6478
|
#
|
6437
6479
|
#
|
@@ -6966,8 +7008,9 @@ module Aws::SecurityHub
|
|
6966
7008
|
# The date and time of the last change in status.
|
6967
7009
|
#
|
6968
7010
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
6969
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
6970
|
-
#
|
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`.
|
6971
7014
|
#
|
6972
7015
|
#
|
6973
7016
|
#
|
@@ -7033,8 +7076,9 @@ module Aws::SecurityHub
|
|
7033
7076
|
# The date and time when the image was pushed to the repository.
|
7034
7077
|
#
|
7035
7078
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
7036
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
7037
|
-
#
|
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`.
|
7038
7082
|
#
|
7039
7083
|
#
|
7040
7084
|
#
|
@@ -10196,8 +10240,9 @@ module Aws::SecurityHub
|
|
10196
10240
|
# Indicates when the load balancer was created.
|
10197
10241
|
#
|
10198
10242
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10199
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10200
|
-
#
|
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`.
|
10201
10246
|
#
|
10202
10247
|
#
|
10203
10248
|
#
|
@@ -10492,8 +10537,9 @@ module Aws::SecurityHub
|
|
10492
10537
|
# Indicates when the load balancer was created.
|
10493
10538
|
#
|
10494
10539
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10495
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10496
|
-
#
|
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`.
|
10497
10543
|
#
|
10498
10544
|
#
|
10499
10545
|
#
|
@@ -10571,8 +10617,9 @@ module Aws::SecurityHub
|
|
10571
10617
|
# Indicates when the IAM access key was created.
|
10572
10618
|
#
|
10573
10619
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10574
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10575
|
-
#
|
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`.
|
10576
10623
|
#
|
10577
10624
|
#
|
10578
10625
|
#
|
@@ -10649,8 +10696,9 @@ module Aws::SecurityHub
|
|
10649
10696
|
# Indicates when the session was created.
|
10650
10697
|
#
|
10651
10698
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10652
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10653
|
-
#
|
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`.
|
10654
10702
|
#
|
10655
10703
|
#
|
10656
10704
|
#
|
@@ -10732,8 +10780,9 @@ module Aws::SecurityHub
|
|
10732
10780
|
# Indicates when the IAM group was created.
|
10733
10781
|
#
|
10734
10782
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10735
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10736
|
-
#
|
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`.
|
10737
10786
|
#
|
10738
10787
|
#
|
10739
10788
|
#
|
@@ -10793,8 +10842,9 @@ module Aws::SecurityHub
|
|
10793
10842
|
# Indicates when the instance profile was created.
|
10794
10843
|
#
|
10795
10844
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10796
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10797
|
-
#
|
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`.
|
10798
10848
|
#
|
10799
10849
|
#
|
10800
10850
|
#
|
@@ -10844,8 +10894,9 @@ module Aws::SecurityHub
|
|
10844
10894
|
# Indicates when the role was created.
|
10845
10895
|
#
|
10846
10896
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10847
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10848
|
-
#
|
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`.
|
10849
10900
|
#
|
10850
10901
|
#
|
10851
10902
|
#
|
@@ -10908,8 +10959,9 @@ module Aws::SecurityHub
|
|
10908
10959
|
# When the policy was created.
|
10909
10960
|
#
|
10910
10961
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10911
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10912
|
-
#
|
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`.
|
10913
10965
|
#
|
10914
10966
|
#
|
10915
10967
|
#
|
@@ -10953,8 +11005,9 @@ module Aws::SecurityHub
|
|
10953
11005
|
# When the policy was most recently updated.
|
10954
11006
|
#
|
10955
11007
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10956
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10957
|
-
#
|
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`.
|
10958
11011
|
#
|
10959
11012
|
#
|
10960
11013
|
#
|
@@ -10993,8 +11046,9 @@ module Aws::SecurityHub
|
|
10993
11046
|
# Indicates when the version was created.
|
10994
11047
|
#
|
10995
11048
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
10996
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
10997
|
-
#
|
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`.
|
10998
11052
|
#
|
10999
11053
|
#
|
11000
11054
|
#
|
@@ -11026,8 +11080,9 @@ module Aws::SecurityHub
|
|
11026
11080
|
# Indicates when the role was created.
|
11027
11081
|
#
|
11028
11082
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11029
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11030
|
-
#
|
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`.
|
11031
11086
|
#
|
11032
11087
|
#
|
11033
11088
|
#
|
@@ -11105,8 +11160,9 @@ module Aws::SecurityHub
|
|
11105
11160
|
# Indicates when the user was created.
|
11106
11161
|
#
|
11107
11162
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11108
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11109
|
-
#
|
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`.
|
11110
11166
|
#
|
11111
11167
|
#
|
11112
11168
|
#
|
@@ -11236,8 +11292,9 @@ module Aws::SecurityHub
|
|
11236
11292
|
# Indicates when the KMS key was created.
|
11237
11293
|
#
|
11238
11294
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11239
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11240
|
-
#
|
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`.
|
11241
11298
|
#
|
11242
11299
|
#
|
11243
11300
|
#
|
@@ -11388,8 +11445,9 @@ module Aws::SecurityHub
|
|
11388
11445
|
# Indicates when the function was last updated.
|
11389
11446
|
#
|
11390
11447
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11391
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11392
|
-
#
|
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`.
|
11393
11451
|
#
|
11394
11452
|
#
|
11395
11453
|
#
|
@@ -11590,8 +11648,9 @@ module Aws::SecurityHub
|
|
11590
11648
|
# Indicates when the version was created.
|
11591
11649
|
#
|
11592
11650
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11593
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
11594
|
-
#
|
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`.
|
11595
11654
|
#
|
11596
11655
|
#
|
11597
11656
|
#
|
@@ -12372,8 +12431,9 @@ module Aws::SecurityHub
|
|
12372
12431
|
# Time (UTC).
|
12373
12432
|
#
|
12374
12433
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12375
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12376
|
-
#
|
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`.
|
12377
12437
|
#
|
12378
12438
|
#
|
12379
12439
|
#
|
@@ -12569,8 +12629,9 @@ module Aws::SecurityHub
|
|
12569
12629
|
# Indicates when the snapshot was taken.
|
12570
12630
|
#
|
12571
12631
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12572
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12573
|
-
#
|
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`.
|
12574
12635
|
#
|
12575
12636
|
#
|
12576
12637
|
#
|
@@ -12604,8 +12665,9 @@ module Aws::SecurityHub
|
|
12604
12665
|
# Time (UTC).
|
12605
12666
|
#
|
12606
12667
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12607
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12608
|
-
#
|
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`.
|
12609
12671
|
#
|
12610
12672
|
#
|
12611
12673
|
#
|
@@ -12840,8 +12902,9 @@ module Aws::SecurityHub
|
|
12840
12902
|
# Indicates when the DB instance was created.
|
12841
12903
|
#
|
12842
12904
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12843
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12844
|
-
#
|
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`.
|
12845
12908
|
#
|
12846
12909
|
#
|
12847
12910
|
#
|
@@ -12947,8 +13010,9 @@ module Aws::SecurityHub
|
|
12947
13010
|
# point-in-time restore.
|
12948
13011
|
#
|
12949
13012
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
12950
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
12951
|
-
#
|
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`.
|
12952
13016
|
#
|
12953
13017
|
#
|
12954
13018
|
#
|
@@ -13760,8 +13824,9 @@ module Aws::SecurityHub
|
|
13760
13824
|
# The datetime when the event notification subscription was created.
|
13761
13825
|
#
|
13762
13826
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
13763
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
13764
|
-
#
|
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`.
|
13765
13830
|
#
|
13766
13831
|
#
|
13767
13832
|
#
|
@@ -13949,8 +14014,9 @@ module Aws::SecurityHub
|
|
13949
14014
|
# The end of the time window for which maintenance was deferred.
|
13950
14015
|
#
|
13951
14016
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
13952
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
13953
|
-
#
|
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`.
|
13954
14020
|
#
|
13955
14021
|
#
|
13956
14022
|
#
|
@@ -13965,8 +14031,9 @@ module Aws::SecurityHub
|
|
13965
14031
|
# The start of the time window for which maintenance was deferred.
|
13966
14032
|
#
|
13967
14033
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
13968
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
13969
|
-
#
|
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`.
|
13970
14037
|
#
|
13971
14038
|
#
|
13972
14039
|
#
|
@@ -14019,8 +14086,9 @@ module Aws::SecurityHub
|
|
14019
14086
|
# Indicates when the cluster was created.
|
14020
14087
|
#
|
14021
14088
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14022
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14023
|
-
#
|
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`.
|
14024
14092
|
#
|
14025
14093
|
#
|
14026
14094
|
#
|
@@ -14122,8 +14190,9 @@ module Aws::SecurityHub
|
|
14122
14190
|
# enabled.
|
14123
14191
|
#
|
14124
14192
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14125
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14126
|
-
#
|
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`.
|
14127
14196
|
#
|
14128
14197
|
#
|
14129
14198
|
#
|
@@ -14176,8 +14245,9 @@ module Aws::SecurityHub
|
|
14176
14245
|
# Indicates the start of the next maintenance window.
|
14177
14246
|
#
|
14178
14247
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14179
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14180
|
-
#
|
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`.
|
14181
14251
|
#
|
14182
14252
|
#
|
14183
14253
|
#
|
@@ -14410,8 +14480,9 @@ module Aws::SecurityHub
|
|
14410
14480
|
# The last time when logs failed to be delivered.
|
14411
14481
|
#
|
14412
14482
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14413
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14414
|
-
#
|
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`.
|
14415
14486
|
#
|
14416
14487
|
#
|
14417
14488
|
#
|
@@ -14422,8 +14493,9 @@ module Aws::SecurityHub
|
|
14422
14493
|
# The last time that logs were delivered successfully.
|
14423
14494
|
#
|
14424
14495
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14425
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14426
|
-
#
|
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`.
|
14427
14499
|
#
|
14428
14500
|
#
|
14429
14501
|
#
|
@@ -14701,8 +14773,9 @@ module Aws::SecurityHub
|
|
14701
14773
|
# The date when objects are moved or deleted.
|
14702
14774
|
#
|
14703
14775
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14704
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14705
|
-
#
|
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`.
|
14706
14779
|
#
|
14707
14780
|
#
|
14708
14781
|
#
|
@@ -14910,8 +14983,9 @@ module Aws::SecurityHub
|
|
14910
14983
|
# class. If you provide `Date`, you cannot provide `Days`.
|
14911
14984
|
#
|
14912
14985
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14913
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14914
|
-
#
|
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`.
|
14915
14989
|
#
|
14916
14990
|
#
|
14917
14991
|
#
|
@@ -14990,8 +15064,9 @@ module Aws::SecurityHub
|
|
14990
15064
|
# Indicates when the S3 bucket was created.
|
14991
15065
|
#
|
14992
15066
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
14993
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
14994
|
-
#
|
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`.
|
14995
15070
|
#
|
14996
15071
|
#
|
14997
15072
|
#
|
@@ -15360,8 +15435,9 @@ module Aws::SecurityHub
|
|
15360
15435
|
# Indicates when the object was last modified.
|
15361
15436
|
#
|
15362
15437
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15363
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15364
|
-
#
|
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`.
|
15365
15441
|
#
|
15366
15442
|
#
|
15367
15443
|
#
|
@@ -15723,8 +15799,9 @@ module Aws::SecurityHub
|
|
15723
15799
|
# potential security issue that a finding captured.
|
15724
15800
|
#
|
15725
15801
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15726
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15727
|
-
#
|
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`.
|
15728
15805
|
#
|
15729
15806
|
#
|
15730
15807
|
#
|
@@ -15736,8 +15813,9 @@ module Aws::SecurityHub
|
|
15736
15813
|
# the potential security issue that a finding captured.
|
15737
15814
|
#
|
15738
15815
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15739
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15740
|
-
#
|
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`.
|
15741
15819
|
#
|
15742
15820
|
#
|
15743
15821
|
#
|
@@ -15749,8 +15827,9 @@ module Aws::SecurityHub
|
|
15749
15827
|
# security issue that a finding captured.
|
15750
15828
|
#
|
15751
15829
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15752
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15753
|
-
#
|
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`.
|
15754
15833
|
#
|
15755
15834
|
#
|
15756
15835
|
#
|
@@ -15762,8 +15841,9 @@ module Aws::SecurityHub
|
|
15762
15841
|
# finding record.
|
15763
15842
|
#
|
15764
15843
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
15765
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
15766
|
-
#
|
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`.
|
15767
15847
|
#
|
15768
15848
|
#
|
15769
15849
|
#
|
@@ -16010,23 +16090,59 @@ module Aws::SecurityHub
|
|
16010
16090
|
# An ISO8601-formatted timestamp that indicates when the
|
16011
16091
|
# security-findings provider first observed the potential security
|
16012
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
|
16013
16102
|
# @return [Array<Types::DateFilter>]
|
16014
16103
|
#
|
16015
16104
|
# @!attribute [rw] last_observed_at
|
16016
16105
|
# An ISO8601-formatted timestamp that indicates when the
|
16017
16106
|
# security-findings provider most recently observed the potential
|
16018
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
|
16019
16117
|
# @return [Array<Types::DateFilter>]
|
16020
16118
|
#
|
16021
16119
|
# @!attribute [rw] created_at
|
16022
16120
|
# An ISO8601-formatted timestamp that indicates when the
|
16023
16121
|
# security-findings provider captured the potential security issue
|
16024
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
|
16025
16132
|
# @return [Array<Types::DateFilter>]
|
16026
16133
|
#
|
16027
16134
|
# @!attribute [rw] updated_at
|
16028
16135
|
# An ISO8601-formatted timestamp that indicates when the
|
16029
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
|
16030
16146
|
# @return [Array<Types::DateFilter>]
|
16031
16147
|
#
|
16032
16148
|
# @!attribute [rw] severity_product
|
@@ -16182,11 +16298,29 @@ module Aws::SecurityHub
|
|
16182
16298
|
# @return [Array<Types::NumberFilter>]
|
16183
16299
|
#
|
16184
16300
|
# @!attribute [rw] process_launched_at
|
16185
|
-
#
|
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
|
16186
16311
|
# @return [Array<Types::DateFilter>]
|
16187
16312
|
#
|
16188
16313
|
# @!attribute [rw] process_terminated_at
|
16189
|
-
#
|
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
|
16190
16324
|
# @return [Array<Types::DateFilter>]
|
16191
16325
|
#
|
16192
16326
|
# @!attribute [rw] threat_intel_indicator_type
|
@@ -16202,8 +16336,8 @@ module Aws::SecurityHub
|
|
16202
16336
|
# @return [Array<Types::StringFilter>]
|
16203
16337
|
#
|
16204
16338
|
# @!attribute [rw] threat_intel_indicator_last_observed_at
|
16205
|
-
#
|
16206
|
-
# indicator.
|
16339
|
+
# A timestamp that identifies the last observation of a threat
|
16340
|
+
# intelligence indicator.
|
16207
16341
|
# @return [Array<Types::DateFilter>]
|
16208
16342
|
#
|
16209
16343
|
# @!attribute [rw] threat_intel_indicator_source
|
@@ -16314,7 +16448,16 @@ module Aws::SecurityHub
|
|
16314
16448
|
# @return [Array<Types::StringFilter>]
|
16315
16449
|
#
|
16316
16450
|
# @!attribute [rw] resource_container_launched_at
|
16317
|
-
#
|
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
|
16318
16461
|
# @return [Array<Types::DateFilter>]
|
16319
16462
|
#
|
16320
16463
|
# @!attribute [rw] resource_details_other
|
@@ -18549,8 +18692,9 @@ module Aws::SecurityHub
|
|
18549
18692
|
# Indicates when the container started.
|
18550
18693
|
#
|
18551
18694
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
18552
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
18553
|
-
#
|
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`.
|
18554
18698
|
#
|
18555
18699
|
#
|
18556
18700
|
#
|
@@ -18888,11 +19032,29 @@ module Aws::SecurityHub
|
|
18888
19032
|
# A date filter for querying findings.
|
18889
19033
|
#
|
18890
19034
|
# @!attribute [rw] start
|
18891
|
-
# 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
|
18892
19045
|
# @return [String]
|
18893
19046
|
#
|
18894
19047
|
# @!attribute [rw] end
|
18895
|
-
#
|
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
|
18896
19058
|
# @return [String]
|
18897
19059
|
#
|
18898
19060
|
# @!attribute [rw] date_range
|
@@ -21026,8 +21188,9 @@ module Aws::SecurityHub
|
|
21026
21188
|
# The timestamp of when the note was updated.
|
21027
21189
|
#
|
21028
21190
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21029
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21030
|
-
#
|
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`.
|
21031
21194
|
#
|
21032
21195
|
#
|
21033
21196
|
#
|
@@ -21200,8 +21363,9 @@ module Aws::SecurityHub
|
|
21200
21363
|
# Indicates when the operation started.
|
21201
21364
|
#
|
21202
21365
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21203
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21204
|
-
#
|
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`.
|
21205
21369
|
#
|
21206
21370
|
#
|
21207
21371
|
#
|
@@ -21212,8 +21376,9 @@ module Aws::SecurityHub
|
|
21212
21376
|
# Indicates when the operation completed.
|
21213
21377
|
#
|
21214
21378
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21215
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21216
|
-
#
|
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`.
|
21217
21382
|
#
|
21218
21383
|
#
|
21219
21384
|
#
|
@@ -21356,8 +21521,9 @@ module Aws::SecurityHub
|
|
21356
21521
|
# Indicates when the process was launched.
|
21357
21522
|
#
|
21358
21523
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21359
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21360
|
-
#
|
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`.
|
21361
21527
|
#
|
21362
21528
|
#
|
21363
21529
|
#
|
@@ -21368,8 +21534,9 @@ module Aws::SecurityHub
|
|
21368
21534
|
# Indicates when the process was terminated.
|
21369
21535
|
#
|
21370
21536
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
21371
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
21372
|
-
#
|
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`.
|
21373
21540
|
#
|
21374
21541
|
#
|
21375
21542
|
#
|
@@ -23307,8 +23474,9 @@ module Aws::SecurityHub
|
|
23307
23474
|
# indicator was observed.
|
23308
23475
|
#
|
23309
23476
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
23310
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
23311
|
-
#
|
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`.
|
23312
23480
|
#
|
23313
23481
|
#
|
23314
23482
|
#
|
@@ -23764,8 +23932,9 @@ module Aws::SecurityHub
|
|
23764
23932
|
# Indicates when the vulnerability advisory was created.
|
23765
23933
|
#
|
23766
23934
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
23767
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
23768
|
-
#
|
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`.
|
23769
23938
|
#
|
23770
23939
|
#
|
23771
23940
|
#
|
@@ -23776,8 +23945,9 @@ module Aws::SecurityHub
|
|
23776
23945
|
# Indicates when the vulnerability advisory was last updated.
|
23777
23946
|
#
|
23778
23947
|
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
23779
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces
|
23780
|
-
#
|
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`.
|
23781
23951
|
#
|
23782
23952
|
#
|
23783
23953
|
#
|
data/lib/aws-sdk-securityhub.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-securityhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|