aws-sdk-securityhub 1.124.0 → 1.126.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +17 -35
- data/lib/aws-sdk-securityhub/client_api.rb +104 -0
- data/lib/aws-sdk-securityhub/types.rb +921 -1551
- data/lib/aws-sdk-securityhub.rb +1 -1
- data/sig/client.rbs +82 -1
- data/sig/types.rbs +102 -0
- metadata +2 -2
@@ -269,6 +269,136 @@ module Aws::SecurityHub
|
|
269
269
|
include Aws::Structure
|
270
270
|
end
|
271
271
|
|
272
|
+
# Information about the threat actor identified in an Amazon GuardDuty
|
273
|
+
# Extended Threat Detection attack sequence. GuardDuty generates an
|
274
|
+
# attack sequence finding when multiple events align to a potentially
|
275
|
+
# suspicious activity. To receive GuardDuty attack sequence findings in
|
276
|
+
# Security Hub, you must have GuardDuty enabled. For more information,
|
277
|
+
# see [GuardDuty Extended Threat Detection ][1] in the *Amazon GuardDuty
|
278
|
+
# User Guide*.
|
279
|
+
#
|
280
|
+
#
|
281
|
+
#
|
282
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
283
|
+
#
|
284
|
+
# @!attribute [rw] id
|
285
|
+
# The ID of the threat actor.
|
286
|
+
# @return [String]
|
287
|
+
#
|
288
|
+
# @!attribute [rw] user
|
289
|
+
# Contains information about the user credentials used by the threat
|
290
|
+
# actor.
|
291
|
+
# @return [Types::ActorUser]
|
292
|
+
#
|
293
|
+
# @!attribute [rw] session
|
294
|
+
# Contains information about the user session where the activity
|
295
|
+
# initiated.
|
296
|
+
# @return [Types::ActorSession]
|
297
|
+
#
|
298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Actor AWS API Documentation
|
299
|
+
#
|
300
|
+
class Actor < Struct.new(
|
301
|
+
:id,
|
302
|
+
:user,
|
303
|
+
:session)
|
304
|
+
SENSITIVE = []
|
305
|
+
include Aws::Structure
|
306
|
+
end
|
307
|
+
|
308
|
+
# Contains information about the authenticated session used by the
|
309
|
+
# threat actor identified in an Amazon GuardDuty Extended Threat
|
310
|
+
# Detection attack sequence. GuardDuty generates an attack sequence
|
311
|
+
# finding when multiple events align to a potentially suspicious
|
312
|
+
# activity. To receive GuardDuty attack sequence findings in Security
|
313
|
+
# Hub, you must have GuardDuty enabled. For more information, see
|
314
|
+
# [GuardDuty Extended Threat Detection ][1] in the *Amazon GuardDuty
|
315
|
+
# User Guide*.
|
316
|
+
#
|
317
|
+
#
|
318
|
+
#
|
319
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
320
|
+
#
|
321
|
+
# @!attribute [rw] uid
|
322
|
+
# Unique identifier of the session.
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
# @!attribute [rw] mfa_status
|
326
|
+
# Indicates whether multi-factor authentication (MFA) was used for
|
327
|
+
# authentication during the session.
|
328
|
+
#
|
329
|
+
# In CloudTrail, you can find this value as
|
330
|
+
# `userIdentity.sessionContext.attributes.mfaAuthenticated`.
|
331
|
+
# @return [String]
|
332
|
+
#
|
333
|
+
# @!attribute [rw] created_time
|
334
|
+
# The timestamp for when the session was created.
|
335
|
+
#
|
336
|
+
# In CloudTrail, you can find this value as
|
337
|
+
# `userIdentity.sessionContext.attributes.creationDate`.
|
338
|
+
# @return [Integer]
|
339
|
+
#
|
340
|
+
# @!attribute [rw] issuer
|
341
|
+
# The issuer of the session.
|
342
|
+
#
|
343
|
+
# In CloudTrail, you can find this value as
|
344
|
+
# `userIdentity.sessionContext.sessionIssuer.arn`.
|
345
|
+
# @return [String]
|
346
|
+
#
|
347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ActorSession AWS API Documentation
|
348
|
+
#
|
349
|
+
class ActorSession < Struct.new(
|
350
|
+
:uid,
|
351
|
+
:mfa_status,
|
352
|
+
:created_time,
|
353
|
+
:issuer)
|
354
|
+
SENSITIVE = []
|
355
|
+
include Aws::Structure
|
356
|
+
end
|
357
|
+
|
358
|
+
# Contains information about the credentials used by the threat actor
|
359
|
+
# identified in an Amazon GuardDuty Extended Threat Detection attack
|
360
|
+
# sequence. GuardDuty generates an attack sequence finding when multiple
|
361
|
+
# events align to a potentially suspicious activity. To receive
|
362
|
+
# GuardDuty attack sequence findings in Security Hub, you must have
|
363
|
+
# GuardDuty enabled. For more information, see [GuardDuty Extended
|
364
|
+
# Threat Detection ][1] in the *Amazon GuardDuty User Guide*.
|
365
|
+
#
|
366
|
+
#
|
367
|
+
#
|
368
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
369
|
+
#
|
370
|
+
# @!attribute [rw] name
|
371
|
+
# The name of the threat actor.
|
372
|
+
# @return [String]
|
373
|
+
#
|
374
|
+
# @!attribute [rw] uid
|
375
|
+
# The unique identifier of the threat actor.
|
376
|
+
# @return [String]
|
377
|
+
#
|
378
|
+
# @!attribute [rw] type
|
379
|
+
# The type of user.
|
380
|
+
# @return [String]
|
381
|
+
#
|
382
|
+
# @!attribute [rw] credential_uid
|
383
|
+
# Unique identifier of the threat actor’s user credentials.
|
384
|
+
# @return [String]
|
385
|
+
#
|
386
|
+
# @!attribute [rw] account
|
387
|
+
# The account of the threat actor.
|
388
|
+
# @return [Types::UserAccount]
|
389
|
+
#
|
390
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ActorUser AWS API Documentation
|
391
|
+
#
|
392
|
+
class ActorUser < Struct.new(
|
393
|
+
:name,
|
394
|
+
:uid,
|
395
|
+
:type,
|
396
|
+
:credential_uid,
|
397
|
+
:account)
|
398
|
+
SENSITIVE = []
|
399
|
+
include Aws::Structure
|
400
|
+
end
|
401
|
+
|
272
402
|
# An adjustment to the CVSS metric.
|
273
403
|
#
|
274
404
|
# @!attribute [rw] metric
|
@@ -503,49 +633,23 @@ module Aws::SecurityHub
|
|
503
633
|
# @!attribute [rw] created_at
|
504
634
|
# A timestamp that indicates when the rule was created.
|
505
635
|
#
|
506
|
-
#
|
507
|
-
#
|
508
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
509
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
510
|
-
# examples:
|
511
|
-
#
|
512
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
636
|
+
# For more information about the validation and formatting of
|
637
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
513
638
|
#
|
514
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
515
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
516
639
|
#
|
517
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
518
|
-
# `2024-01-04T15:25:10+17:59`)
|
519
640
|
#
|
520
|
-
#
|
521
|
-
# `2024-01-04T15:25:10-1759`)
|
522
|
-
#
|
523
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
524
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
641
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
525
642
|
# @return [Time]
|
526
643
|
#
|
527
644
|
# @!attribute [rw] updated_at
|
528
645
|
# A timestamp that indicates when the rule was most recently updated.
|
529
646
|
#
|
530
|
-
#
|
531
|
-
#
|
532
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
533
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
534
|
-
# examples:
|
535
|
-
#
|
536
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
647
|
+
# For more information about the validation and formatting of
|
648
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
537
649
|
#
|
538
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
539
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
540
650
|
#
|
541
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
542
|
-
# `2024-01-04T15:25:10+17:59`)
|
543
651
|
#
|
544
|
-
#
|
545
|
-
# `2024-01-04T15:25:10-1759`)
|
546
|
-
#
|
547
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
548
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
652
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
549
653
|
# @return [Time]
|
550
654
|
#
|
551
655
|
# @!attribute [rw] created_by
|
@@ -673,108 +777,56 @@ module Aws::SecurityHub
|
|
673
777
|
# captured by a finding was first observed by the security findings
|
674
778
|
# product.
|
675
779
|
#
|
676
|
-
#
|
677
|
-
#
|
678
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
679
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
680
|
-
# examples:
|
681
|
-
#
|
682
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
780
|
+
# For more information about the validation and formatting of
|
781
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
683
782
|
#
|
684
|
-
#
|
685
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
686
|
-
#
|
687
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
688
|
-
# `2024-01-04T15:25:10+17:59`)
|
783
|
+
# Array Members: Minimum number of 1 item. Maximum number of 20 items.
|
689
784
|
#
|
690
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
691
|
-
# `2024-01-04T15:25:10-1759`)
|
692
785
|
#
|
693
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
694
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
695
786
|
#
|
696
|
-
#
|
787
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
697
788
|
# @return [Array<Types::DateFilter>]
|
698
789
|
#
|
699
790
|
# @!attribute [rw] last_observed_at
|
700
|
-
# A timestamp that indicates when the
|
701
|
-
#
|
702
|
-
#
|
703
|
-
#
|
704
|
-
# This field accepts only the specified formats. Timestamps can end
|
705
|
-
# with `Z` or `("+" / "-") time-hour [":" time-minute]`. The
|
706
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
707
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
708
|
-
# examples:
|
709
|
-
#
|
710
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
791
|
+
# A timestamp that indicates when the security findings provider most
|
792
|
+
# recently observed a change in the resource that is involved in the
|
793
|
+
# finding.
|
711
794
|
#
|
712
|
-
#
|
713
|
-
#
|
795
|
+
# For more information about the validation and formatting of
|
796
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
714
797
|
#
|
715
|
-
#
|
716
|
-
# `2024-01-04T15:25:10+17:59`)
|
798
|
+
# Array Members: Minimum number of 1 item. Maximum number of 20 items.
|
717
799
|
#
|
718
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
719
|
-
# `2024-01-04T15:25:10-1759`)
|
720
800
|
#
|
721
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
722
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
723
801
|
#
|
724
|
-
#
|
802
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
725
803
|
# @return [Array<Types::DateFilter>]
|
726
804
|
#
|
727
805
|
# @!attribute [rw] created_at
|
728
806
|
# A timestamp that indicates when this finding record was created.
|
729
807
|
#
|
730
|
-
#
|
731
|
-
#
|
732
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
733
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
734
|
-
# examples:
|
808
|
+
# For more information about the validation and formatting of
|
809
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
735
810
|
#
|
736
|
-
#
|
737
|
-
#
|
738
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
739
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
740
|
-
#
|
741
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
742
|
-
# `2024-01-04T15:25:10+17:59`)
|
811
|
+
# Array Members: Minimum number of 1 item. Maximum number of 20 items.
|
743
812
|
#
|
744
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
745
|
-
# `2024-01-04T15:25:10-1759`)
|
746
813
|
#
|
747
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
748
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
749
814
|
#
|
750
|
-
#
|
815
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
751
816
|
# @return [Array<Types::DateFilter>]
|
752
817
|
#
|
753
818
|
# @!attribute [rw] updated_at
|
754
819
|
# A timestamp that indicates when the finding record was most recently
|
755
820
|
# updated.
|
756
821
|
#
|
757
|
-
#
|
758
|
-
#
|
759
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
760
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
761
|
-
# examples:
|
822
|
+
# For more information about the validation and formatting of
|
823
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
762
824
|
#
|
763
|
-
#
|
764
|
-
#
|
765
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
766
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
767
|
-
#
|
768
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
769
|
-
# `2024-01-04T15:25:10+17:59`)
|
825
|
+
# Array Members: Minimum number of 1 item. Maximum number of 20 items.
|
770
826
|
#
|
771
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
772
|
-
# `2024-01-04T15:25:10-1759`)
|
773
827
|
#
|
774
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
775
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
776
828
|
#
|
777
|
-
#
|
829
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
778
830
|
# @return [Array<Types::DateFilter>]
|
779
831
|
#
|
780
832
|
# @!attribute [rw] confidence
|
@@ -963,27 +1015,14 @@ module Aws::SecurityHub
|
|
963
1015
|
# @!attribute [rw] note_updated_at
|
964
1016
|
# The timestamp of when the note was updated.
|
965
1017
|
#
|
966
|
-
#
|
967
|
-
#
|
968
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
969
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
970
|
-
# examples:
|
1018
|
+
# For more information about the validation and formatting of
|
1019
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
971
1020
|
#
|
972
|
-
#
|
973
|
-
#
|
974
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
975
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
976
|
-
#
|
977
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
978
|
-
# `2024-01-04T15:25:10+17:59`)
|
1021
|
+
# Array Members: Minimum number of 1 item. Maximum number of 20 items.
|
979
1022
|
#
|
980
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
981
|
-
# `2024-01-04T15:25:10-1759`)
|
982
1023
|
#
|
983
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
984
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
985
1024
|
#
|
986
|
-
#
|
1025
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
987
1026
|
# @return [Array<Types::DateFilter>]
|
988
1027
|
#
|
989
1028
|
# @!attribute [rw] note_updated_by
|
@@ -1110,49 +1149,23 @@ module Aws::SecurityHub
|
|
1110
1149
|
# @!attribute [rw] created_at
|
1111
1150
|
# A timestamp that indicates when the rule was created.
|
1112
1151
|
#
|
1113
|
-
#
|
1114
|
-
#
|
1115
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1116
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1117
|
-
# examples:
|
1152
|
+
# For more information about the validation and formatting of
|
1153
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1118
1154
|
#
|
1119
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1120
1155
|
#
|
1121
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1122
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1123
1156
|
#
|
1124
|
-
#
|
1125
|
-
# `2024-01-04T15:25:10+17:59`)
|
1126
|
-
#
|
1127
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1128
|
-
# `2024-01-04T15:25:10-1759`)
|
1129
|
-
#
|
1130
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
1131
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1157
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1132
1158
|
# @return [Time]
|
1133
1159
|
#
|
1134
1160
|
# @!attribute [rw] updated_at
|
1135
1161
|
# A timestamp that indicates when the rule was most recently updated.
|
1136
1162
|
#
|
1137
|
-
#
|
1138
|
-
#
|
1139
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1140
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1141
|
-
# examples:
|
1142
|
-
#
|
1143
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1144
|
-
#
|
1145
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1146
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1163
|
+
# For more information about the validation and formatting of
|
1164
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1147
1165
|
#
|
1148
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
1149
|
-
# `2024-01-04T15:25:10+17:59`)
|
1150
1166
|
#
|
1151
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1152
|
-
# `2024-01-04T15:25:10-1759`)
|
1153
1167
|
#
|
1154
|
-
#
|
1155
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1168
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1156
1169
|
# @return [Time]
|
1157
1170
|
#
|
1158
1171
|
# @!attribute [rw] created_by
|
@@ -1546,50 +1559,24 @@ module Aws::SecurityHub
|
|
1546
1559
|
# @!attribute [rw] first_seen
|
1547
1560
|
# A timestamp that indicates when the API call was first observed.
|
1548
1561
|
#
|
1549
|
-
#
|
1550
|
-
#
|
1551
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1552
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1553
|
-
# examples:
|
1562
|
+
# For more information about the validation and formatting of
|
1563
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1554
1564
|
#
|
1555
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1556
1565
|
#
|
1557
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1558
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1559
1566
|
#
|
1560
|
-
#
|
1561
|
-
# `2024-01-04T15:25:10+17:59`)
|
1562
|
-
#
|
1563
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1564
|
-
# `2024-01-04T15:25:10-1759`)
|
1565
|
-
#
|
1566
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
1567
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1567
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1568
1568
|
# @return [String]
|
1569
1569
|
#
|
1570
1570
|
# @!attribute [rw] last_seen
|
1571
1571
|
# A timestamp that indicates when the API call was most recently
|
1572
1572
|
# observed.
|
1573
1573
|
#
|
1574
|
-
#
|
1575
|
-
#
|
1576
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1577
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1578
|
-
# examples:
|
1579
|
-
#
|
1580
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1581
|
-
#
|
1582
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1583
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1574
|
+
# For more information about the validation and formatting of
|
1575
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1584
1576
|
#
|
1585
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
1586
|
-
# `2024-01-04T15:25:10+17:59`)
|
1587
1577
|
#
|
1588
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1589
|
-
# `2024-01-04T15:25:10-1759`)
|
1590
1578
|
#
|
1591
|
-
#
|
1592
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1579
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1593
1580
|
# @return [String]
|
1594
1581
|
#
|
1595
1582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsApiCallAction AWS API Documentation
|
@@ -1814,25 +1801,12 @@ module Aws::SecurityHub
|
|
1814
1801
|
# @!attribute [rw] created_date
|
1815
1802
|
# Indicates when the API was created.
|
1816
1803
|
#
|
1817
|
-
#
|
1818
|
-
#
|
1819
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1820
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1821
|
-
# examples:
|
1804
|
+
# For more information about the validation and formatting of
|
1805
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1822
1806
|
#
|
1823
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1824
1807
|
#
|
1825
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1826
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1827
1808
|
#
|
1828
|
-
#
|
1829
|
-
# `2024-01-04T15:25:10+17:59`)
|
1830
|
-
#
|
1831
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1832
|
-
# `2024-01-04T15:25:10-1759`)
|
1833
|
-
#
|
1834
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
1835
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1809
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1836
1810
|
# @return [String]
|
1837
1811
|
#
|
1838
1812
|
# @!attribute [rw] version
|
@@ -1952,49 +1926,23 @@ module Aws::SecurityHub
|
|
1952
1926
|
# @!attribute [rw] created_date
|
1953
1927
|
# Indicates when the stage was created.
|
1954
1928
|
#
|
1955
|
-
#
|
1956
|
-
#
|
1957
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1958
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1959
|
-
# examples:
|
1960
|
-
#
|
1961
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1962
|
-
#
|
1963
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1964
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1929
|
+
# For more information about the validation and formatting of
|
1930
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1965
1931
|
#
|
1966
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
1967
|
-
# `2024-01-04T15:25:10+17:59`)
|
1968
1932
|
#
|
1969
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1970
|
-
# `2024-01-04T15:25:10-1759`)
|
1971
1933
|
#
|
1972
|
-
#
|
1973
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1934
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1974
1935
|
# @return [String]
|
1975
1936
|
#
|
1976
1937
|
# @!attribute [rw] last_updated_date
|
1977
1938
|
# Indicates when the stage was most recently updated.
|
1978
1939
|
#
|
1979
|
-
#
|
1980
|
-
#
|
1981
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
1982
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
1983
|
-
# examples:
|
1940
|
+
# For more information about the validation and formatting of
|
1941
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
1984
1942
|
#
|
1985
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
1986
1943
|
#
|
1987
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
1988
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1989
1944
|
#
|
1990
|
-
#
|
1991
|
-
# `2024-01-04T15:25:10+17:59`)
|
1992
|
-
#
|
1993
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
1994
|
-
# `2024-01-04T15:25:10-1759`)
|
1995
|
-
#
|
1996
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
1997
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
1945
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
1998
1946
|
# @return [String]
|
1999
1947
|
#
|
2000
1948
|
# @!attribute [rw] web_acl_arn
|
@@ -2046,25 +1994,12 @@ module Aws::SecurityHub
|
|
2046
1994
|
# @!attribute [rw] created_date
|
2047
1995
|
# Indicates when the API was created.
|
2048
1996
|
#
|
2049
|
-
#
|
2050
|
-
#
|
2051
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
2052
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
2053
|
-
# examples:
|
2054
|
-
#
|
2055
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
2056
|
-
#
|
2057
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
2058
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
1997
|
+
# For more information about the validation and formatting of
|
1998
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
2059
1999
|
#
|
2060
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
2061
|
-
# `2024-01-04T15:25:10+17:59`)
|
2062
2000
|
#
|
2063
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
2064
|
-
# `2024-01-04T15:25:10-1759`)
|
2065
2001
|
#
|
2066
|
-
#
|
2067
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
2002
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
2068
2003
|
# @return [String]
|
2069
2004
|
#
|
2070
2005
|
# @!attribute [rw] description
|
@@ -2171,25 +2106,12 @@ module Aws::SecurityHub
|
|
2171
2106
|
# @!attribute [rw] created_date
|
2172
2107
|
# Indicates when the stage was created.
|
2173
2108
|
#
|
2174
|
-
#
|
2175
|
-
#
|
2176
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
2177
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
2178
|
-
# examples:
|
2109
|
+
# For more information about the validation and formatting of
|
2110
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
2179
2111
|
#
|
2180
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
2181
2112
|
#
|
2182
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
2183
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
2184
2113
|
#
|
2185
|
-
#
|
2186
|
-
# `2024-01-04T15:25:10+17:59`)
|
2187
|
-
#
|
2188
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
2189
|
-
# `2024-01-04T15:25:10-1759`)
|
2190
|
-
#
|
2191
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
2192
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
2114
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
2193
2115
|
# @return [String]
|
2194
2116
|
#
|
2195
2117
|
# @!attribute [rw] description
|
@@ -2207,25 +2129,12 @@ module Aws::SecurityHub
|
|
2207
2129
|
# @!attribute [rw] last_updated_date
|
2208
2130
|
# Indicates when the stage was most recently updated.
|
2209
2131
|
#
|
2210
|
-
#
|
2211
|
-
#
|
2212
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
2213
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
2214
|
-
# examples:
|
2215
|
-
#
|
2216
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
2217
|
-
#
|
2218
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
2219
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
2132
|
+
# For more information about the validation and formatting of
|
2133
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
2220
2134
|
#
|
2221
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
2222
|
-
# `2024-01-04T15:25:10+17:59`)
|
2223
2135
|
#
|
2224
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
2225
|
-
# `2024-01-04T15:25:10-1759`)
|
2226
2136
|
#
|
2227
|
-
#
|
2228
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
2137
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
2229
2138
|
# @return [String]
|
2230
2139
|
#
|
2231
2140
|
# @!attribute [rw] route_settings
|
@@ -2660,25 +2569,12 @@ module Aws::SecurityHub
|
|
2660
2569
|
# @!attribute [rw] created_time
|
2661
2570
|
# Indicates when the auto scaling group was created.
|
2662
2571
|
#
|
2663
|
-
#
|
2664
|
-
#
|
2665
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
2666
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
2667
|
-
# examples:
|
2572
|
+
# For more information about the validation and formatting of
|
2573
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
2668
2574
|
#
|
2669
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
2670
2575
|
#
|
2671
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
2672
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
2673
2576
|
#
|
2674
|
-
#
|
2675
|
-
# `2024-01-04T15:25:10+17:59`)
|
2676
|
-
#
|
2677
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
2678
|
-
# `2024-01-04T15:25:10-1759`)
|
2679
|
-
#
|
2680
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
2681
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
2577
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
2682
2578
|
# @return [String]
|
2683
2579
|
#
|
2684
2580
|
# @!attribute [rw] mixed_instances_policy
|
@@ -3014,25 +2910,12 @@ module Aws::SecurityHub
|
|
3014
2910
|
# @!attribute [rw] created_time
|
3015
2911
|
# The creation date and time for the launch configuration.
|
3016
2912
|
#
|
3017
|
-
#
|
3018
|
-
#
|
3019
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
3020
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
3021
|
-
# examples:
|
3022
|
-
#
|
3023
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3024
|
-
#
|
3025
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
3026
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
2913
|
+
# For more information about the validation and formatting of
|
2914
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
3027
2915
|
#
|
3028
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
3029
|
-
# `2024-01-04T15:25:10+17:59`)
|
3030
2916
|
#
|
3031
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
3032
|
-
# `2024-01-04T15:25:10-1759`)
|
3033
2917
|
#
|
3034
|
-
#
|
3035
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
2918
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
3036
2919
|
# @return [String]
|
3037
2920
|
#
|
3038
2921
|
# @!attribute [rw] ebs_optimized
|
@@ -3698,25 +3581,12 @@ module Aws::SecurityHub
|
|
3698
3581
|
# @!attribute [rw] created_at
|
3699
3582
|
# Indicates when the certificate was requested.
|
3700
3583
|
#
|
3701
|
-
#
|
3702
|
-
#
|
3703
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
3704
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
3705
|
-
# examples:
|
3584
|
+
# For more information about the validation and formatting of
|
3585
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
3706
3586
|
#
|
3707
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3708
3587
|
#
|
3709
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
3710
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
3711
3588
|
#
|
3712
|
-
#
|
3713
|
-
# `2024-01-04T15:25:10+17:59`)
|
3714
|
-
#
|
3715
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
3716
|
-
# `2024-01-04T15:25:10-1759`)
|
3717
|
-
#
|
3718
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
3719
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
3589
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
3720
3590
|
# @return [String]
|
3721
3591
|
#
|
3722
3592
|
# @!attribute [rw] domain_name
|
@@ -3754,25 +3624,12 @@ module Aws::SecurityHub
|
|
3754
3624
|
# Indicates when the certificate was imported. Provided if the
|
3755
3625
|
# certificate type is `IMPORTED`.
|
3756
3626
|
#
|
3757
|
-
#
|
3758
|
-
#
|
3759
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
3760
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
3761
|
-
# examples:
|
3762
|
-
#
|
3763
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3764
|
-
#
|
3765
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
3766
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
3627
|
+
# For more information about the validation and formatting of
|
3628
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
3767
3629
|
#
|
3768
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
3769
|
-
# `2024-01-04T15:25:10+17:59`)
|
3770
3630
|
#
|
3771
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
3772
|
-
# `2024-01-04T15:25:10-1759`)
|
3773
3631
|
#
|
3774
|
-
#
|
3775
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
3632
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
3776
3633
|
# @return [String]
|
3777
3634
|
#
|
3778
3635
|
# @!attribute [rw] in_use_by
|
@@ -3784,25 +3641,12 @@ module Aws::SecurityHub
|
|
3784
3641
|
# Indicates when the certificate was issued. Provided if the
|
3785
3642
|
# certificate type is `AMAZON_ISSUED`.
|
3786
3643
|
#
|
3787
|
-
#
|
3788
|
-
#
|
3789
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
3790
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
3791
|
-
# examples:
|
3644
|
+
# For more information about the validation and formatting of
|
3645
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
3792
3646
|
#
|
3793
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3794
3647
|
#
|
3795
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
3796
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
3797
3648
|
#
|
3798
|
-
#
|
3799
|
-
# `2024-01-04T15:25:10+17:59`)
|
3800
|
-
#
|
3801
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
3802
|
-
# `2024-01-04T15:25:10-1759`)
|
3803
|
-
#
|
3804
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
3805
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
3649
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
3806
3650
|
# @return [String]
|
3807
3651
|
#
|
3808
3652
|
# @!attribute [rw] issuer
|
@@ -3824,49 +3668,23 @@ module Aws::SecurityHub
|
|
3824
3668
|
# @!attribute [rw] not_after
|
3825
3669
|
# The time after which the certificate becomes invalid.
|
3826
3670
|
#
|
3827
|
-
#
|
3828
|
-
#
|
3829
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
3830
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
3831
|
-
# examples:
|
3832
|
-
#
|
3833
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3834
|
-
#
|
3835
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
3836
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
3671
|
+
# For more information about the validation and formatting of
|
3672
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
3837
3673
|
#
|
3838
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
3839
|
-
# `2024-01-04T15:25:10+17:59`)
|
3840
3674
|
#
|
3841
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
3842
|
-
# `2024-01-04T15:25:10-1759`)
|
3843
3675
|
#
|
3844
|
-
#
|
3845
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
3676
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
3846
3677
|
# @return [String]
|
3847
3678
|
#
|
3848
3679
|
# @!attribute [rw] not_before
|
3849
3680
|
# The time before which the certificate is not valid.
|
3850
3681
|
#
|
3851
|
-
#
|
3852
|
-
#
|
3853
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
3854
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
3855
|
-
# examples:
|
3682
|
+
# For more information about the validation and formatting of
|
3683
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
3856
3684
|
#
|
3857
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3858
3685
|
#
|
3859
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
3860
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
3861
3686
|
#
|
3862
|
-
#
|
3863
|
-
# `2024-01-04T15:25:10+17:59`)
|
3864
|
-
#
|
3865
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
3866
|
-
# `2024-01-04T15:25:10-1759`)
|
3867
|
-
#
|
3868
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
3869
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
3687
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
3870
3688
|
# @return [String]
|
3871
3689
|
#
|
3872
3690
|
# @!attribute [rw] options
|
@@ -4089,25 +3907,12 @@ module Aws::SecurityHub
|
|
4089
3907
|
# @!attribute [rw] updated_at
|
4090
3908
|
# Indicates when the renewal summary was last updated.
|
4091
3909
|
#
|
4092
|
-
#
|
4093
|
-
#
|
4094
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
4095
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
4096
|
-
# examples:
|
4097
|
-
#
|
4098
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
3910
|
+
# For more information about the validation and formatting of
|
3911
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
4099
3912
|
#
|
4100
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
4101
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
4102
3913
|
#
|
4103
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
4104
|
-
# `2024-01-04T15:25:10+17:59`)
|
4105
3914
|
#
|
4106
|
-
#
|
4107
|
-
# `2024-01-04T15:25:10-1759`)
|
4108
|
-
#
|
4109
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
4110
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
3915
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
4111
3916
|
# @return [String]
|
4112
3917
|
#
|
4113
3918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCertificateManagerCertificateRenewalSummary AWS API Documentation
|
@@ -4369,25 +4174,12 @@ module Aws::SecurityHub
|
|
4369
4174
|
# @!attribute [rw] last_modified_time
|
4370
4175
|
# Indicates when that the distribution was last modified.
|
4371
4176
|
#
|
4372
|
-
#
|
4373
|
-
#
|
4374
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
4375
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
4376
|
-
# examples:
|
4377
|
-
#
|
4378
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
4177
|
+
# For more information about the validation and formatting of
|
4178
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
4379
4179
|
#
|
4380
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
4381
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
4382
4180
|
#
|
4383
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
4384
|
-
# `2024-01-04T15:25:10+17:59`)
|
4385
4181
|
#
|
4386
|
-
#
|
4387
|
-
# `2024-01-04T15:25:10-1759`)
|
4388
|
-
#
|
4389
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
4390
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
4182
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
4391
4183
|
# @return [String]
|
4392
4184
|
#
|
4393
4185
|
# @!attribute [rw] logging
|
@@ -5777,25 +5569,12 @@ module Aws::SecurityHub
|
|
5777
5569
|
# If the billing mode is `PAY_PER_REQUEST`, indicates when the billing
|
5778
5570
|
# mode was set to that value.
|
5779
5571
|
#
|
5780
|
-
#
|
5781
|
-
#
|
5782
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
5783
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
5784
|
-
# examples:
|
5785
|
-
#
|
5786
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
5572
|
+
# For more information about the validation and formatting of
|
5573
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
5787
5574
|
#
|
5788
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
5789
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
5790
5575
|
#
|
5791
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
5792
|
-
# `2024-01-04T15:25:10+17:59`)
|
5793
5576
|
#
|
5794
|
-
#
|
5795
|
-
# `2024-01-04T15:25:10-1759`)
|
5796
|
-
#
|
5797
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
5798
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
5577
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
5799
5578
|
# @return [String]
|
5800
5579
|
#
|
5801
5580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsDynamoDbTableBillingModeSummary AWS API Documentation
|
@@ -5820,25 +5599,12 @@ module Aws::SecurityHub
|
|
5820
5599
|
# @!attribute [rw] creation_date_time
|
5821
5600
|
# Indicates when the table was created.
|
5822
5601
|
#
|
5823
|
-
#
|
5824
|
-
#
|
5825
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
5826
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
5827
|
-
# examples:
|
5828
|
-
#
|
5829
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
5602
|
+
# For more information about the validation and formatting of
|
5603
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
5830
5604
|
#
|
5831
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
5832
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
5833
5605
|
#
|
5834
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
5835
|
-
# `2024-01-04T15:25:10+17:59`)
|
5836
5606
|
#
|
5837
|
-
#
|
5838
|
-
# `2024-01-04T15:25:10-1759`)
|
5839
|
-
#
|
5840
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
5841
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
5607
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
5842
5608
|
# @return [String]
|
5843
5609
|
#
|
5844
5610
|
# @!attribute [rw] global_secondary_indexes
|
@@ -6101,49 +5867,23 @@ module Aws::SecurityHub
|
|
6101
5867
|
# @!attribute [rw] last_decrease_date_time
|
6102
5868
|
# Indicates when the provisioned throughput was last decreased.
|
6103
5869
|
#
|
6104
|
-
#
|
6105
|
-
#
|
6106
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
6107
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
6108
|
-
# examples:
|
6109
|
-
#
|
6110
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
5870
|
+
# For more information about the validation and formatting of
|
5871
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
6111
5872
|
#
|
6112
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
6113
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
6114
5873
|
#
|
6115
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
6116
|
-
# `2024-01-04T15:25:10+17:59`)
|
6117
5874
|
#
|
6118
|
-
#
|
6119
|
-
# `2024-01-04T15:25:10-1759`)
|
6120
|
-
#
|
6121
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
6122
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
5875
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
6123
5876
|
# @return [String]
|
6124
5877
|
#
|
6125
5878
|
# @!attribute [rw] last_increase_date_time
|
6126
5879
|
# Indicates when the provisioned throughput was last increased.
|
6127
5880
|
#
|
6128
|
-
#
|
6129
|
-
#
|
6130
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
6131
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
6132
|
-
# examples:
|
6133
|
-
#
|
6134
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
5881
|
+
# For more information about the validation and formatting of
|
5882
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
6135
5883
|
#
|
6136
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
6137
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
6138
5884
|
#
|
6139
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
6140
|
-
# `2024-01-04T15:25:10+17:59`)
|
6141
5885
|
#
|
6142
|
-
#
|
6143
|
-
# `2024-01-04T15:25:10-1759`)
|
6144
|
-
#
|
6145
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
6146
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
5886
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
6147
5887
|
# @return [String]
|
6148
5888
|
#
|
6149
5889
|
# @!attribute [rw] number_of_decreases_today
|
@@ -6271,25 +6011,12 @@ module Aws::SecurityHub
|
|
6271
6011
|
# @!attribute [rw] restore_date_time
|
6272
6012
|
# Indicates the point in time that the table was restored to.
|
6273
6013
|
#
|
6274
|
-
#
|
6275
|
-
#
|
6276
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
6277
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
6278
|
-
# examples:
|
6279
|
-
#
|
6280
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
6014
|
+
# For more information about the validation and formatting of
|
6015
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
6281
6016
|
#
|
6282
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
6283
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
6284
6017
|
#
|
6285
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
6286
|
-
# `2024-01-04T15:25:10+17:59`)
|
6287
6018
|
#
|
6288
|
-
#
|
6289
|
-
# `2024-01-04T15:25:10-1759`)
|
6290
|
-
#
|
6291
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
6292
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
6019
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
6293
6020
|
# @return [String]
|
6294
6021
|
#
|
6295
6022
|
# @!attribute [rw] restore_in_progress
|
@@ -6313,25 +6040,12 @@ module Aws::SecurityHub
|
|
6313
6040
|
# If the key is inaccessible, the date and time when DynamoDB detected
|
6314
6041
|
# that the key was inaccessible.
|
6315
6042
|
#
|
6316
|
-
#
|
6317
|
-
#
|
6318
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
6319
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
6320
|
-
# examples:
|
6321
|
-
#
|
6322
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
6043
|
+
# For more information about the validation and formatting of
|
6044
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
6323
6045
|
#
|
6324
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
6325
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
6326
6046
|
#
|
6327
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
6328
|
-
# `2024-01-04T15:25:10+17:59`)
|
6329
6047
|
#
|
6330
|
-
#
|
6331
|
-
# `2024-01-04T15:25:10-1759`)
|
6332
|
-
#
|
6333
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
6334
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
6048
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
6335
6049
|
# @return [String]
|
6336
6050
|
#
|
6337
6051
|
# @!attribute [rw] status
|
@@ -6756,25 +6470,12 @@ module Aws::SecurityHub
|
|
6756
6470
|
# @!attribute [rw] launched_at
|
6757
6471
|
# Indicates when the instance was launched.
|
6758
6472
|
#
|
6759
|
-
#
|
6760
|
-
#
|
6761
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
6762
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
6763
|
-
# examples:
|
6764
|
-
#
|
6765
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
6473
|
+
# For more information about the validation and formatting of
|
6474
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
6766
6475
|
#
|
6767
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
6768
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
6769
6476
|
#
|
6770
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
6771
|
-
# `2024-01-04T15:25:10+17:59`)
|
6772
6477
|
#
|
6773
|
-
#
|
6774
|
-
# `2024-01-04T15:25:10-1759`)
|
6775
|
-
#
|
6776
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
6777
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
6478
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
6778
6479
|
# @return [String]
|
6779
6480
|
#
|
6780
6481
|
# @!attribute [rw] network_interfaces
|
@@ -8272,25 +7973,12 @@ module Aws::SecurityHub
|
|
8272
7973
|
# @!attribute [rw] attach_time
|
8273
7974
|
# Indicates when the attachment initiated.
|
8274
7975
|
#
|
8275
|
-
#
|
8276
|
-
#
|
8277
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
8278
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
8279
|
-
# examples:
|
8280
|
-
#
|
8281
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
7976
|
+
# For more information about the validation and formatting of
|
7977
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
8282
7978
|
#
|
8283
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
8284
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
8285
7979
|
#
|
8286
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
8287
|
-
# `2024-01-04T15:25:10+17:59`)
|
8288
7980
|
#
|
8289
|
-
#
|
8290
|
-
# `2024-01-04T15:25:10-1759`)
|
8291
|
-
#
|
8292
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
8293
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
7981
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
8294
7982
|
# @return [String]
|
8295
7983
|
#
|
8296
7984
|
# @!attribute [rw] attachment_id
|
@@ -8874,25 +8562,12 @@ module Aws::SecurityHub
|
|
8874
8562
|
# @!attribute [rw] create_time
|
8875
8563
|
# Indicates when the volume was created.
|
8876
8564
|
#
|
8877
|
-
#
|
8878
|
-
#
|
8879
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
8880
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
8881
|
-
# examples:
|
8882
|
-
#
|
8883
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
8565
|
+
# For more information about the validation and formatting of
|
8566
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
8884
8567
|
#
|
8885
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
8886
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
8887
8568
|
#
|
8888
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
8889
|
-
# `2024-01-04T15:25:10+17:59`)
|
8890
8569
|
#
|
8891
|
-
#
|
8892
|
-
# `2024-01-04T15:25:10-1759`)
|
8893
|
-
#
|
8894
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
8895
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
8570
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
8896
8571
|
# @return [String]
|
8897
8572
|
#
|
8898
8573
|
# @!attribute [rw] device_name
|
@@ -9422,25 +9097,12 @@ module Aws::SecurityHub
|
|
9422
9097
|
# @!attribute [rw] last_status_change
|
9423
9098
|
# The date and time of the last change in status.
|
9424
9099
|
#
|
9425
|
-
#
|
9426
|
-
#
|
9427
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
9428
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
9429
|
-
# examples:
|
9430
|
-
#
|
9431
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
9100
|
+
# For more information about the validation and formatting of
|
9101
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
9432
9102
|
#
|
9433
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
9434
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
9435
9103
|
#
|
9436
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
9437
|
-
# `2024-01-04T15:25:10+17:59`)
|
9438
9104
|
#
|
9439
|
-
#
|
9440
|
-
# `2024-01-04T15:25:10-1759`)
|
9441
|
-
#
|
9442
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
9443
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
9105
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
9444
9106
|
# @return [String]
|
9445
9107
|
#
|
9446
9108
|
# @!attribute [rw] outside_ip_address
|
@@ -9501,25 +9163,12 @@ module Aws::SecurityHub
|
|
9501
9163
|
# @!attribute [rw] image_published_at
|
9502
9164
|
# The date and time when the image was pushed to the repository.
|
9503
9165
|
#
|
9504
|
-
#
|
9505
|
-
#
|
9506
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
9507
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
9508
|
-
# examples:
|
9509
|
-
#
|
9510
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
9166
|
+
# For more information about the validation and formatting of
|
9167
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
9511
9168
|
#
|
9512
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
9513
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
9514
9169
|
#
|
9515
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
9516
|
-
# `2024-01-04T15:25:10+17:59`)
|
9517
9170
|
#
|
9518
|
-
#
|
9519
|
-
# `2024-01-04T15:25:10-1759`)
|
9520
|
-
#
|
9521
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
9522
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
9171
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
9523
9172
|
# @return [String]
|
9524
9173
|
#
|
9525
9174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEcrContainerImageDetails AWS API Documentation
|
@@ -12689,25 +12338,12 @@ module Aws::SecurityHub
|
|
12689
12338
|
# @!attribute [rw] created_time
|
12690
12339
|
# Indicates when the load balancer was created.
|
12691
12340
|
#
|
12692
|
-
#
|
12693
|
-
#
|
12694
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
12695
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
12696
|
-
# examples:
|
12697
|
-
#
|
12698
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
12341
|
+
# For more information about the validation and formatting of
|
12342
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
12699
12343
|
#
|
12700
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
12701
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
12702
12344
|
#
|
12703
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
12704
|
-
# `2024-01-04T15:25:10+17:59`)
|
12705
12345
|
#
|
12706
|
-
#
|
12707
|
-
# `2024-01-04T15:25:10-1759`)
|
12708
|
-
#
|
12709
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
12710
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
12346
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
12711
12347
|
# @return [String]
|
12712
12348
|
#
|
12713
12349
|
# @!attribute [rw] dns_name
|
@@ -12997,25 +12633,12 @@ module Aws::SecurityHub
|
|
12997
12633
|
# @!attribute [rw] created_time
|
12998
12634
|
# Indicates when the load balancer was created.
|
12999
12635
|
#
|
13000
|
-
#
|
13001
|
-
#
|
13002
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13003
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13004
|
-
# examples:
|
13005
|
-
#
|
13006
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
12636
|
+
# For more information about the validation and formatting of
|
12637
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13007
12638
|
#
|
13008
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13009
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13010
12639
|
#
|
13011
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13012
|
-
# `2024-01-04T15:25:10+17:59`)
|
13013
12640
|
#
|
13014
|
-
#
|
13015
|
-
# `2024-01-04T15:25:10-1759`)
|
13016
|
-
#
|
13017
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13018
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
12641
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13019
12642
|
# @return [String]
|
13020
12643
|
#
|
13021
12644
|
# @!attribute [rw] dns_name
|
@@ -13573,25 +13196,12 @@ module Aws::SecurityHub
|
|
13573
13196
|
# @!attribute [rw] created_at
|
13574
13197
|
# Indicates when the IAM access key was created.
|
13575
13198
|
#
|
13576
|
-
#
|
13577
|
-
#
|
13578
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13579
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13580
|
-
# examples:
|
13581
|
-
#
|
13582
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13199
|
+
# For more information about the validation and formatting of
|
13200
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13583
13201
|
#
|
13584
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13585
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13586
13202
|
#
|
13587
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13588
|
-
# `2024-01-04T15:25:10+17:59`)
|
13589
13203
|
#
|
13590
|
-
#
|
13591
|
-
# `2024-01-04T15:25:10-1759`)
|
13592
|
-
#
|
13593
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13594
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13204
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13595
13205
|
# @return [String]
|
13596
13206
|
#
|
13597
13207
|
# @!attribute [rw] principal_id
|
@@ -13663,25 +13273,12 @@ module Aws::SecurityHub
|
|
13663
13273
|
# @!attribute [rw] creation_date
|
13664
13274
|
# Indicates when the session was created.
|
13665
13275
|
#
|
13666
|
-
#
|
13667
|
-
#
|
13668
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13669
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13670
|
-
# examples:
|
13671
|
-
#
|
13672
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13276
|
+
# For more information about the validation and formatting of
|
13277
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13673
13278
|
#
|
13674
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13675
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13676
13279
|
#
|
13677
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13678
|
-
# `2024-01-04T15:25:10+17:59`)
|
13679
13280
|
#
|
13680
|
-
#
|
13681
|
-
# `2024-01-04T15:25:10-1759`)
|
13682
|
-
#
|
13683
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13684
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13281
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13685
13282
|
# @return [String]
|
13686
13283
|
#
|
13687
13284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsIamAccessKeySessionContextAttributes AWS API Documentation
|
@@ -13758,25 +13355,12 @@ module Aws::SecurityHub
|
|
13758
13355
|
# @!attribute [rw] create_date
|
13759
13356
|
# Indicates when the IAM group was created.
|
13760
13357
|
#
|
13761
|
-
#
|
13762
|
-
#
|
13763
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13764
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13765
|
-
# examples:
|
13766
|
-
#
|
13767
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13358
|
+
# For more information about the validation and formatting of
|
13359
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13768
13360
|
#
|
13769
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13770
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13771
13361
|
#
|
13772
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13773
|
-
# `2024-01-04T15:25:10+17:59`)
|
13774
13362
|
#
|
13775
|
-
#
|
13776
|
-
# `2024-01-04T15:25:10-1759`)
|
13777
|
-
#
|
13778
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13779
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13363
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13780
13364
|
# @return [String]
|
13781
13365
|
#
|
13782
13366
|
# @!attribute [rw] group_id
|
@@ -13831,25 +13415,12 @@ module Aws::SecurityHub
|
|
13831
13415
|
# @!attribute [rw] create_date
|
13832
13416
|
# Indicates when the instance profile was created.
|
13833
13417
|
#
|
13834
|
-
#
|
13835
|
-
#
|
13836
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13837
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13838
|
-
# examples:
|
13839
|
-
#
|
13840
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13418
|
+
# For more information about the validation and formatting of
|
13419
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13841
13420
|
#
|
13842
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13843
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13844
13421
|
#
|
13845
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13846
|
-
# `2024-01-04T15:25:10+17:59`)
|
13847
13422
|
#
|
13848
|
-
#
|
13849
|
-
# `2024-01-04T15:25:10-1759`)
|
13850
|
-
#
|
13851
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13852
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13423
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13853
13424
|
# @return [String]
|
13854
13425
|
#
|
13855
13426
|
# @!attribute [rw] instance_profile_id
|
@@ -13894,25 +13465,12 @@ module Aws::SecurityHub
|
|
13894
13465
|
# @!attribute [rw] create_date
|
13895
13466
|
# Indicates when the role was created.
|
13896
13467
|
#
|
13897
|
-
#
|
13898
|
-
#
|
13899
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13900
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13901
|
-
# examples:
|
13902
|
-
#
|
13903
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13468
|
+
# For more information about the validation and formatting of
|
13469
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13904
13470
|
#
|
13905
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13906
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13907
13471
|
#
|
13908
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13909
|
-
# `2024-01-04T15:25:10+17:59`)
|
13910
13472
|
#
|
13911
|
-
#
|
13912
|
-
# `2024-01-04T15:25:10-1759`)
|
13913
|
-
#
|
13914
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13915
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13473
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13916
13474
|
# @return [String]
|
13917
13475
|
#
|
13918
13476
|
# @!attribute [rw] path
|
@@ -13970,25 +13528,12 @@ module Aws::SecurityHub
|
|
13970
13528
|
# @!attribute [rw] create_date
|
13971
13529
|
# When the policy was created.
|
13972
13530
|
#
|
13973
|
-
#
|
13974
|
-
#
|
13975
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
13976
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
13977
|
-
# examples:
|
13978
|
-
#
|
13979
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13531
|
+
# For more information about the validation and formatting of
|
13532
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
13980
13533
|
#
|
13981
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
13982
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
13983
13534
|
#
|
13984
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
13985
|
-
# `2024-01-04T15:25:10+17:59`)
|
13986
13535
|
#
|
13987
|
-
#
|
13988
|
-
# `2024-01-04T15:25:10-1759`)
|
13989
|
-
#
|
13990
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
13991
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13536
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
13992
13537
|
# @return [String]
|
13993
13538
|
#
|
13994
13539
|
# @!attribute [rw] default_version_id
|
@@ -14027,25 +13572,12 @@ module Aws::SecurityHub
|
|
14027
13572
|
# @!attribute [rw] update_date
|
14028
13573
|
# When the policy was most recently updated.
|
14029
13574
|
#
|
14030
|
-
#
|
14031
|
-
#
|
14032
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14033
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14034
|
-
# examples:
|
14035
|
-
#
|
14036
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13575
|
+
# For more information about the validation and formatting of
|
13576
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14037
13577
|
#
|
14038
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14039
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14040
13578
|
#
|
14041
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14042
|
-
# `2024-01-04T15:25:10+17:59`)
|
14043
13579
|
#
|
14044
|
-
#
|
14045
|
-
# `2024-01-04T15:25:10-1759`)
|
14046
|
-
#
|
14047
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14048
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13580
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14049
13581
|
# @return [String]
|
14050
13582
|
#
|
14051
13583
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsIamPolicyDetails AWS API Documentation
|
@@ -14079,25 +13611,12 @@ module Aws::SecurityHub
|
|
14079
13611
|
# @!attribute [rw] create_date
|
14080
13612
|
# Indicates when the version was created.
|
14081
13613
|
#
|
14082
|
-
#
|
14083
|
-
#
|
14084
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14085
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14086
|
-
# examples:
|
14087
|
-
#
|
14088
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13614
|
+
# For more information about the validation and formatting of
|
13615
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14089
13616
|
#
|
14090
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14091
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14092
13617
|
#
|
14093
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14094
|
-
# `2024-01-04T15:25:10+17:59`)
|
14095
13618
|
#
|
14096
|
-
#
|
14097
|
-
# `2024-01-04T15:25:10-1759`)
|
14098
|
-
#
|
14099
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14100
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13619
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14101
13620
|
# @return [String]
|
14102
13621
|
#
|
14103
13622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsIamPolicyVersion AWS API Documentation
|
@@ -14124,25 +13643,12 @@ module Aws::SecurityHub
|
|
14124
13643
|
# @!attribute [rw] create_date
|
14125
13644
|
# Indicates when the role was created.
|
14126
13645
|
#
|
14127
|
-
#
|
14128
|
-
#
|
14129
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14130
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14131
|
-
# examples:
|
14132
|
-
#
|
14133
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13646
|
+
# For more information about the validation and formatting of
|
13647
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14134
13648
|
#
|
14135
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14136
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14137
13649
|
#
|
14138
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14139
|
-
# `2024-01-04T15:25:10+17:59`)
|
14140
13650
|
#
|
14141
|
-
#
|
14142
|
-
# `2024-01-04T15:25:10-1759`)
|
14143
|
-
#
|
14144
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14145
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13651
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14146
13652
|
# @return [String]
|
14147
13653
|
#
|
14148
13654
|
# @!attribute [rw] instance_profile_list
|
@@ -14215,25 +13721,12 @@ module Aws::SecurityHub
|
|
14215
13721
|
# @!attribute [rw] create_date
|
14216
13722
|
# Indicates when the user was created.
|
14217
13723
|
#
|
14218
|
-
#
|
14219
|
-
#
|
14220
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14221
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14222
|
-
# examples:
|
14223
|
-
#
|
14224
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13724
|
+
# For more information about the validation and formatting of
|
13725
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14225
13726
|
#
|
14226
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14227
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14228
13727
|
#
|
14229
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14230
|
-
# `2024-01-04T15:25:10+17:59`)
|
14231
13728
|
#
|
14232
|
-
#
|
14233
|
-
# `2024-01-04T15:25:10-1759`)
|
14234
|
-
#
|
14235
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14236
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13729
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14237
13730
|
# @return [String]
|
14238
13731
|
#
|
14239
13732
|
# @!attribute [rw] group_list
|
@@ -14358,25 +13851,12 @@ module Aws::SecurityHub
|
|
14358
13851
|
# @!attribute [rw] creation_date
|
14359
13852
|
# Indicates when the KMS key was created.
|
14360
13853
|
#
|
14361
|
-
#
|
14362
|
-
#
|
14363
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14364
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14365
|
-
# examples:
|
14366
|
-
#
|
14367
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
13854
|
+
# For more information about the validation and formatting of
|
13855
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14368
13856
|
#
|
14369
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14370
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14371
13857
|
#
|
14372
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14373
|
-
# `2024-01-04T15:25:10+17:59`)
|
14374
13858
|
#
|
14375
|
-
#
|
14376
|
-
# `2024-01-04T15:25:10-1759`)
|
14377
|
-
#
|
14378
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14379
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
13859
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14380
13860
|
# @return [Float]
|
14381
13861
|
#
|
14382
13862
|
# @!attribute [rw] key_id
|
@@ -14522,25 +14002,12 @@ module Aws::SecurityHub
|
|
14522
14002
|
# @!attribute [rw] last_modified
|
14523
14003
|
# Indicates when the function was last updated.
|
14524
14004
|
#
|
14525
|
-
#
|
14526
|
-
#
|
14527
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14528
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14529
|
-
# examples:
|
14530
|
-
#
|
14531
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
14005
|
+
# For more information about the validation and formatting of
|
14006
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14532
14007
|
#
|
14533
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14534
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14535
14008
|
#
|
14536
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14537
|
-
# `2024-01-04T15:25:10+17:59`)
|
14538
14009
|
#
|
14539
|
-
#
|
14540
|
-
# `2024-01-04T15:25:10-1759`)
|
14541
|
-
#
|
14542
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14543
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
14010
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14544
14011
|
# @return [String]
|
14545
14012
|
#
|
14546
14013
|
# @!attribute [rw] layers
|
@@ -14751,25 +14218,12 @@ module Aws::SecurityHub
|
|
14751
14218
|
# @!attribute [rw] created_date
|
14752
14219
|
# Indicates when the version was created.
|
14753
14220
|
#
|
14754
|
-
#
|
14755
|
-
#
|
14756
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
14757
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
14758
|
-
# examples:
|
14759
|
-
#
|
14760
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
14221
|
+
# For more information about the validation and formatting of
|
14222
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
14761
14223
|
#
|
14762
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
14763
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
14764
14224
|
#
|
14765
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
14766
|
-
# `2024-01-04T15:25:10+17:59`)
|
14767
14225
|
#
|
14768
|
-
#
|
14769
|
-
# `2024-01-04T15:25:10-1759`)
|
14770
|
-
#
|
14771
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
14772
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
14226
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
14773
14227
|
# @return [String]
|
14774
14228
|
#
|
14775
14229
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsLambdaLayerVersionDetails AWS API Documentation
|
@@ -15771,25 +15225,12 @@ module Aws::SecurityHub
|
|
15771
15225
|
# Indicates when the DB cluster was created, in Universal Coordinated
|
15772
15226
|
# Time (UTC).
|
15773
15227
|
#
|
15774
|
-
#
|
15775
|
-
#
|
15776
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
15777
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
15778
|
-
# examples:
|
15779
|
-
#
|
15780
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
15228
|
+
# For more information about the validation and formatting of
|
15229
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
15781
15230
|
#
|
15782
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
15783
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
15784
15231
|
#
|
15785
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
15786
|
-
# `2024-01-04T15:25:10+17:59`)
|
15787
15232
|
#
|
15788
|
-
#
|
15789
|
-
# `2024-01-04T15:25:10-1759`)
|
15790
|
-
#
|
15791
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
15792
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
15233
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
15793
15234
|
# @return [String]
|
15794
15235
|
#
|
15795
15236
|
# @!attribute [rw] enabled_cloud_watch_logs_exports
|
@@ -16015,25 +15456,12 @@ module Aws::SecurityHub
|
|
16015
15456
|
# @!attribute [rw] snapshot_create_time
|
16016
15457
|
# Indicates when the snapshot was taken.
|
16017
15458
|
#
|
16018
|
-
#
|
16019
|
-
#
|
16020
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
16021
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
16022
|
-
# examples:
|
16023
|
-
#
|
16024
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
15459
|
+
# For more information about the validation and formatting of
|
15460
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
16025
15461
|
#
|
16026
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
16027
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
16028
15462
|
#
|
16029
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
16030
|
-
# `2024-01-04T15:25:10+17:59`)
|
16031
15463
|
#
|
16032
|
-
#
|
16033
|
-
# `2024-01-04T15:25:10-1759`)
|
16034
|
-
#
|
16035
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
16036
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
15464
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
16037
15465
|
# @return [String]
|
16038
15466
|
#
|
16039
15467
|
# @!attribute [rw] engine
|
@@ -16062,25 +15490,12 @@ module Aws::SecurityHub
|
|
16062
15490
|
# Indicates when the DB cluster was created, in Universal Coordinated
|
16063
15491
|
# Time (UTC).
|
16064
15492
|
#
|
16065
|
-
#
|
16066
|
-
#
|
16067
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
16068
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
16069
|
-
# examples:
|
16070
|
-
#
|
16071
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
15493
|
+
# For more information about the validation and formatting of
|
15494
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
16072
15495
|
#
|
16073
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
16074
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
16075
15496
|
#
|
16076
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
16077
|
-
# `2024-01-04T15:25:10+17:59`)
|
16078
15497
|
#
|
16079
|
-
#
|
16080
|
-
# `2024-01-04T15:25:10-1759`)
|
16081
|
-
#
|
16082
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
16083
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
15498
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
16084
15499
|
# @return [String]
|
16085
15500
|
#
|
16086
15501
|
# @!attribute [rw] master_username
|
@@ -16316,25 +15731,12 @@ module Aws::SecurityHub
|
|
16316
15731
|
# @!attribute [rw] instance_create_time
|
16317
15732
|
# Indicates when the DB instance was created.
|
16318
15733
|
#
|
16319
|
-
#
|
16320
|
-
#
|
16321
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
16322
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
16323
|
-
# examples:
|
16324
|
-
#
|
16325
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
15734
|
+
# For more information about the validation and formatting of
|
15735
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
16326
15736
|
#
|
16327
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
16328
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
16329
15737
|
#
|
16330
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
16331
|
-
# `2024-01-04T15:25:10+17:59`)
|
16332
15738
|
#
|
16333
|
-
#
|
16334
|
-
# `2024-01-04T15:25:10-1759`)
|
16335
|
-
#
|
16336
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
16337
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
15739
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
16338
15740
|
# @return [String]
|
16339
15741
|
#
|
16340
15742
|
# @!attribute [rw] kms_key_id
|
@@ -16435,25 +15837,12 @@ module Aws::SecurityHub
|
|
16435
15837
|
# Specifies the latest time to which a database can be restored with
|
16436
15838
|
# point-in-time restore.
|
16437
15839
|
#
|
16438
|
-
#
|
16439
|
-
#
|
16440
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
16441
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
16442
|
-
# examples:
|
16443
|
-
#
|
16444
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
15840
|
+
# For more information about the validation and formatting of
|
15841
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
16445
15842
|
#
|
16446
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
16447
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
16448
15843
|
#
|
16449
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
16450
|
-
# `2024-01-04T15:25:10+17:59`)
|
16451
15844
|
#
|
16452
|
-
#
|
16453
|
-
# `2024-01-04T15:25:10-1759`)
|
16454
|
-
#
|
16455
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
16456
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
15845
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
16457
15846
|
# @return [String]
|
16458
15847
|
#
|
16459
15848
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -17260,25 +16649,12 @@ module Aws::SecurityHub
|
|
17260
16649
|
# @!attribute [rw] subscription_creation_time
|
17261
16650
|
# The datetime when the event notification subscription was created.
|
17262
16651
|
#
|
17263
|
-
#
|
17264
|
-
#
|
17265
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17266
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17267
|
-
# examples:
|
17268
|
-
#
|
17269
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
16652
|
+
# For more information about the validation and formatting of
|
16653
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17270
16654
|
#
|
17271
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17272
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17273
16655
|
#
|
17274
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17275
|
-
# `2024-01-04T15:25:10+17:59`)
|
17276
16656
|
#
|
17277
|
-
#
|
17278
|
-
# `2024-01-04T15:25:10-1759`)
|
17279
|
-
#
|
17280
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
17281
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
16657
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
17282
16658
|
# @return [String]
|
17283
16659
|
#
|
17284
16660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRdsEventSubscriptionDetails AWS API Documentation
|
@@ -17463,25 +16839,12 @@ module Aws::SecurityHub
|
|
17463
16839
|
# @!attribute [rw] defer_maintenance_end_time
|
17464
16840
|
# The end of the time window for which maintenance was deferred.
|
17465
16841
|
#
|
17466
|
-
#
|
17467
|
-
#
|
17468
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17469
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17470
|
-
# examples:
|
17471
|
-
#
|
17472
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
16842
|
+
# For more information about the validation and formatting of
|
16843
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17473
16844
|
#
|
17474
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17475
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17476
16845
|
#
|
17477
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17478
|
-
# `2024-01-04T15:25:10+17:59`)
|
17479
16846
|
#
|
17480
|
-
#
|
17481
|
-
# `2024-01-04T15:25:10-1759`)
|
17482
|
-
#
|
17483
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
17484
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
16847
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
17485
16848
|
# @return [String]
|
17486
16849
|
#
|
17487
16850
|
# @!attribute [rw] defer_maintenance_identifier
|
@@ -17491,25 +16854,12 @@ module Aws::SecurityHub
|
|
17491
16854
|
# @!attribute [rw] defer_maintenance_start_time
|
17492
16855
|
# The start of the time window for which maintenance was deferred.
|
17493
16856
|
#
|
17494
|
-
#
|
17495
|
-
#
|
17496
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17497
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17498
|
-
# examples:
|
17499
|
-
#
|
17500
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
16857
|
+
# For more information about the validation and formatting of
|
16858
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17501
16859
|
#
|
17502
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17503
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17504
16860
|
#
|
17505
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17506
|
-
# `2024-01-04T15:25:10+17:59`)
|
17507
16861
|
#
|
17508
|
-
#
|
17509
|
-
# `2024-01-04T15:25:10-1759`)
|
17510
|
-
#
|
17511
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
17512
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
16862
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
17513
16863
|
# @return [String]
|
17514
16864
|
#
|
17515
16865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRedshiftClusterDeferredMaintenanceWindow AWS API Documentation
|
@@ -17557,25 +16907,12 @@ module Aws::SecurityHub
|
|
17557
16907
|
# @!attribute [rw] cluster_create_time
|
17558
16908
|
# Indicates when the cluster was created.
|
17559
16909
|
#
|
17560
|
-
#
|
17561
|
-
#
|
17562
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17563
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17564
|
-
# examples:
|
17565
|
-
#
|
17566
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
16910
|
+
# For more information about the validation and formatting of
|
16911
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17567
16912
|
#
|
17568
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17569
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17570
16913
|
#
|
17571
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17572
|
-
# `2024-01-04T15:25:10+17:59`)
|
17573
16914
|
#
|
17574
|
-
#
|
17575
|
-
# `2024-01-04T15:25:10-1759`)
|
17576
|
-
#
|
17577
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
17578
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
16915
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
17579
16916
|
# @return [String]
|
17580
16917
|
#
|
17581
16918
|
# @!attribute [rw] cluster_identifier
|
@@ -17672,25 +17009,12 @@ module Aws::SecurityHub
|
|
17672
17009
|
# cluster must have a valid snapshot schedule and have backups
|
17673
17010
|
# enabled.
|
17674
17011
|
#
|
17675
|
-
#
|
17676
|
-
#
|
17677
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17678
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17679
|
-
# examples:
|
17680
|
-
#
|
17681
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
17012
|
+
# For more information about the validation and formatting of
|
17013
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17682
17014
|
#
|
17683
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17684
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17685
17015
|
#
|
17686
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17687
|
-
# `2024-01-04T15:25:10+17:59`)
|
17688
17016
|
#
|
17689
|
-
#
|
17690
|
-
# `2024-01-04T15:25:10-1759`)
|
17691
|
-
#
|
17692
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
17693
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
17017
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
17694
17018
|
# @return [String]
|
17695
17019
|
#
|
17696
17020
|
# @!attribute [rw] expected_next_snapshot_schedule_time_status
|
@@ -17738,25 +17062,12 @@ module Aws::SecurityHub
|
|
17738
17062
|
# @!attribute [rw] next_maintenance_window_start_time
|
17739
17063
|
# Indicates the start of the next maintenance window.
|
17740
17064
|
#
|
17741
|
-
#
|
17742
|
-
#
|
17743
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17744
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17745
|
-
# examples:
|
17746
|
-
#
|
17747
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
17065
|
+
# For more information about the validation and formatting of
|
17066
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17748
17067
|
#
|
17749
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17750
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17751
17068
|
#
|
17752
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17753
|
-
# `2024-01-04T15:25:10+17:59`)
|
17754
17069
|
#
|
17755
|
-
#
|
17756
|
-
# `2024-01-04T15:25:10-1759`)
|
17757
|
-
#
|
17758
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
17759
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
17070
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
17760
17071
|
# @return [String]
|
17761
17072
|
#
|
17762
17073
|
# @!attribute [rw] node_type
|
@@ -17984,49 +17295,23 @@ module Aws::SecurityHub
|
|
17984
17295
|
# @!attribute [rw] last_failure_time
|
17985
17296
|
# The last time when logs failed to be delivered.
|
17986
17297
|
#
|
17987
|
-
#
|
17988
|
-
#
|
17989
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
17990
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
17991
|
-
# examples:
|
17992
|
-
#
|
17993
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
17298
|
+
# For more information about the validation and formatting of
|
17299
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
17994
17300
|
#
|
17995
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
17996
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
17997
17301
|
#
|
17998
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
17999
|
-
# `2024-01-04T15:25:10+17:59`)
|
18000
17302
|
#
|
18001
|
-
#
|
18002
|
-
# `2024-01-04T15:25:10-1759`)
|
18003
|
-
#
|
18004
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
18005
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
17303
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
18006
17304
|
# @return [String]
|
18007
17305
|
#
|
18008
17306
|
# @!attribute [rw] last_successful_delivery_time
|
18009
17307
|
# The last time that logs were delivered successfully.
|
18010
17308
|
#
|
18011
|
-
#
|
18012
|
-
#
|
18013
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
18014
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
18015
|
-
# examples:
|
18016
|
-
#
|
18017
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
17309
|
+
# For more information about the validation and formatting of
|
17310
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
18018
17311
|
#
|
18019
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
18020
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
18021
17312
|
#
|
18022
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
18023
|
-
# `2024-01-04T15:25:10+17:59`)
|
18024
17313
|
#
|
18025
|
-
#
|
18026
|
-
# `2024-01-04T15:25:10-1759`)
|
18027
|
-
#
|
18028
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
18029
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
17314
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
18030
17315
|
# @return [String]
|
18031
17316
|
#
|
18032
17317
|
# @!attribute [rw] logging_enabled
|
@@ -18485,25 +17770,12 @@ module Aws::SecurityHub
|
|
18485
17770
|
# @!attribute [rw] expiration_date
|
18486
17771
|
# The date when objects are moved or deleted.
|
18487
17772
|
#
|
18488
|
-
#
|
18489
|
-
#
|
18490
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
18491
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
18492
|
-
# examples:
|
18493
|
-
#
|
18494
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
17773
|
+
# For more information about the validation and formatting of
|
17774
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
18495
17775
|
#
|
18496
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
18497
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
18498
17776
|
#
|
18499
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
18500
|
-
# `2024-01-04T15:25:10+17:59`)
|
18501
17777
|
#
|
18502
|
-
#
|
18503
|
-
# `2024-01-04T15:25:10-1759`)
|
18504
|
-
#
|
18505
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
18506
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
17778
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
18507
17779
|
# @return [String]
|
18508
17780
|
#
|
18509
17781
|
# @!attribute [rw] expiration_in_days
|
@@ -18706,25 +17978,12 @@ module Aws::SecurityHub
|
|
18706
17978
|
# A date on which to transition objects to the specified storage
|
18707
17979
|
# class. If you provide `Date`, you cannot provide `Days`.
|
18708
17980
|
#
|
18709
|
-
#
|
18710
|
-
#
|
18711
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
18712
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
18713
|
-
# examples:
|
18714
|
-
#
|
18715
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
17981
|
+
# For more information about the validation and formatting of
|
17982
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
18716
17983
|
#
|
18717
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
18718
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
18719
17984
|
#
|
18720
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
18721
|
-
# `2024-01-04T15:25:10+17:59`)
|
18722
17985
|
#
|
18723
|
-
#
|
18724
|
-
# `2024-01-04T15:25:10-1759`)
|
18725
|
-
#
|
18726
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
18727
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
17986
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
18728
17987
|
# @return [String]
|
18729
17988
|
#
|
18730
17989
|
# @!attribute [rw] days
|
@@ -18798,25 +18057,12 @@ module Aws::SecurityHub
|
|
18798
18057
|
# @!attribute [rw] created_at
|
18799
18058
|
# Indicates when the S3 bucket was created.
|
18800
18059
|
#
|
18801
|
-
#
|
18802
|
-
#
|
18803
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
18804
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
18805
|
-
# examples:
|
18806
|
-
#
|
18807
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
18060
|
+
# For more information about the validation and formatting of
|
18061
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
18808
18062
|
#
|
18809
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
18810
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
18811
18063
|
#
|
18812
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
18813
|
-
# `2024-01-04T15:25:10+17:59`)
|
18814
18064
|
#
|
18815
|
-
#
|
18816
|
-
# `2024-01-04T15:25:10-1759`)
|
18817
|
-
#
|
18818
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
18819
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
18065
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
18820
18066
|
# @return [String]
|
18821
18067
|
#
|
18822
18068
|
# @!attribute [rw] server_side_encryption_configuration
|
@@ -19258,25 +18504,12 @@ module Aws::SecurityHub
|
|
19258
18504
|
# @!attribute [rw] last_modified
|
19259
18505
|
# Indicates when the object was last modified.
|
19260
18506
|
#
|
19261
|
-
#
|
19262
|
-
#
|
19263
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
19264
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
19265
|
-
# examples:
|
19266
|
-
#
|
19267
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
18507
|
+
# For more information about the validation and formatting of
|
18508
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19268
18509
|
#
|
19269
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
19270
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19271
18510
|
#
|
19272
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
19273
|
-
# `2024-01-04T15:25:10+17:59`)
|
19274
18511
|
#
|
19275
|
-
#
|
19276
|
-
# `2024-01-04T15:25:10-1759`)
|
19277
|
-
#
|
19278
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
19279
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
18512
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
19280
18513
|
# @return [String]
|
19281
18514
|
#
|
19282
18515
|
# @!attribute [rw] etag
|
@@ -19316,7 +18549,7 @@ module Aws::SecurityHub
|
|
19316
18549
|
include Aws::Structure
|
19317
18550
|
end
|
19318
18551
|
|
19319
|
-
# Provides details about an Amazon SageMaker notebook instance.
|
18552
|
+
# Provides details about an Amazon SageMaker AI notebook instance.
|
19320
18553
|
#
|
19321
18554
|
# @!attribute [rw] accelerator_types
|
19322
18555
|
# A list of Amazon Elastic Inference instance types to associate with
|
@@ -19331,8 +18564,8 @@ module Aws::SecurityHub
|
|
19331
18564
|
# in [CodeCommit][1] or in any other Git repository. These
|
19332
18565
|
# repositories are cloned at the same level as the default repository
|
19333
18566
|
# of your notebook instance. For more information, see [Associating
|
19334
|
-
# Git repositories with SageMaker notebook instances][2] in the
|
19335
|
-
# *Amazon SageMaker Developer Guide*.
|
18567
|
+
# Git repositories with SageMaker AI notebook instances][2] in the
|
18568
|
+
# *Amazon SageMaker AI Developer Guide*.
|
19336
18569
|
#
|
19337
18570
|
#
|
19338
18571
|
#
|
@@ -19347,8 +18580,8 @@ module Aws::SecurityHub
|
|
19347
18580
|
# repository in [CodeCommit][1] or in any other Git repository. When
|
19348
18581
|
# you open a notebook instance, it opens in the directory that
|
19349
18582
|
# contains this repository. For more information, see [Associating Git
|
19350
|
-
# repositories with SageMaker notebook instances][2] in the *Amazon
|
19351
|
-
# SageMaker Developer Guide*.
|
18583
|
+
# repositories with SageMaker AI notebook instances][2] in the *Amazon
|
18584
|
+
# SageMaker AI Developer Guide*.
|
19352
18585
|
#
|
19353
18586
|
#
|
19354
18587
|
#
|
@@ -19357,10 +18590,10 @@ module Aws::SecurityHub
|
|
19357
18590
|
# @return [String]
|
19358
18591
|
#
|
19359
18592
|
# @!attribute [rw] direct_internet_access
|
19360
|
-
# Sets whether SageMaker provides internet access to the notebook
|
18593
|
+
# Sets whether SageMaker AI provides internet access to the notebook
|
19361
18594
|
# instance. If you set this to `Disabled`, this notebook instance is
|
19362
18595
|
# able to access resources only in your VPC, and is not be able to
|
19363
|
-
# connect to SageMaker training and endpoint services unless you
|
18596
|
+
# connect to SageMaker AI training and endpoint services unless you
|
19364
18597
|
# configure a Network Address Translation (NAT) Gateway in your VPC.
|
19365
18598
|
# @return [String]
|
19366
18599
|
#
|
@@ -19379,7 +18612,7 @@ module Aws::SecurityHub
|
|
19379
18612
|
#
|
19380
18613
|
# @!attribute [rw] kms_key_id
|
19381
18614
|
# The Amazon Resource Name (ARN) of an Key Management Service (KMS)
|
19382
|
-
# key that SageMaker uses to encrypt data on the storage volume
|
18615
|
+
# key that SageMaker AI uses to encrypt data on the storage volume
|
19383
18616
|
# attached to your notebook instance. The KMS key you provide must be
|
19384
18617
|
# enabled. For information, see [Enabling and disabling keys][1] in
|
19385
18618
|
# the *Key Management Service Developer Guide*.
|
@@ -19390,7 +18623,7 @@ module Aws::SecurityHub
|
|
19390
18623
|
# @return [String]
|
19391
18624
|
#
|
19392
18625
|
# @!attribute [rw] network_interface_id
|
19393
|
-
# The network interface ID that SageMaker created when the instance
|
18626
|
+
# The network interface ID that SageMaker AI created when the instance
|
19394
18627
|
# was created.
|
19395
18628
|
# @return [String]
|
19396
18629
|
#
|
@@ -19650,100 +18883,48 @@ module Aws::SecurityHub
|
|
19650
18883
|
# Indicates when the security findings provider first observed the
|
19651
18884
|
# potential security issue that a finding captured.
|
19652
18885
|
#
|
19653
|
-
#
|
19654
|
-
#
|
19655
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
19656
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
19657
|
-
# examples:
|
19658
|
-
#
|
19659
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
18886
|
+
# For more information about the validation and formatting of
|
18887
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19660
18888
|
#
|
19661
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
19662
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19663
18889
|
#
|
19664
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
19665
|
-
# `2024-01-04T15:25:10+17:59`)
|
19666
18890
|
#
|
19667
|
-
#
|
19668
|
-
# `2024-01-04T15:25:10-1759`)
|
19669
|
-
#
|
19670
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
19671
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
18891
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
19672
18892
|
# @return [String]
|
19673
18893
|
#
|
19674
18894
|
# @!attribute [rw] last_observed_at
|
19675
18895
|
# Indicates when the security findings provider most recently observed
|
19676
|
-
#
|
19677
|
-
#
|
19678
|
-
# This field accepts only the specified formats. Timestamps can end
|
19679
|
-
# with `Z` or `("+" / "-") time-hour [":" time-minute]`. The
|
19680
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
19681
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
19682
|
-
# examples:
|
18896
|
+
# a change in the resource that is involved in the finding.
|
19683
18897
|
#
|
19684
|
-
#
|
18898
|
+
# For more information about the validation and formatting of
|
18899
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19685
18900
|
#
|
19686
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
19687
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19688
18901
|
#
|
19689
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
19690
|
-
# `2024-01-04T15:25:10+17:59`)
|
19691
18902
|
#
|
19692
|
-
#
|
19693
|
-
# `2024-01-04T15:25:10-1759`)
|
19694
|
-
#
|
19695
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
19696
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
18903
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
19697
18904
|
# @return [String]
|
19698
18905
|
#
|
19699
18906
|
# @!attribute [rw] created_at
|
19700
18907
|
# Indicates when the security findings provider created the potential
|
19701
18908
|
# security issue that a finding captured.
|
19702
18909
|
#
|
19703
|
-
#
|
19704
|
-
#
|
19705
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
19706
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
19707
|
-
# examples:
|
19708
|
-
#
|
19709
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
18910
|
+
# For more information about the validation and formatting of
|
18911
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19710
18912
|
#
|
19711
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
19712
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19713
18913
|
#
|
19714
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
19715
|
-
# `2024-01-04T15:25:10+17:59`)
|
19716
18914
|
#
|
19717
|
-
#
|
19718
|
-
# `2024-01-04T15:25:10-1759`)
|
19719
|
-
#
|
19720
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
19721
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
18915
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
19722
18916
|
# @return [String]
|
19723
18917
|
#
|
19724
18918
|
# @!attribute [rw] updated_at
|
19725
18919
|
# Indicates when the security findings provider last updated the
|
19726
18920
|
# finding record.
|
19727
18921
|
#
|
19728
|
-
#
|
19729
|
-
#
|
19730
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
19731
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
19732
|
-
# examples:
|
19733
|
-
#
|
19734
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
18922
|
+
# For more information about the validation and formatting of
|
18923
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19735
18924
|
#
|
19736
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
19737
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19738
18925
|
#
|
19739
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
19740
|
-
# `2024-01-04T15:25:10+17:59`)
|
19741
18926
|
#
|
19742
|
-
#
|
19743
|
-
# `2024-01-04T15:25:10-1759`)
|
19744
|
-
#
|
19745
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
19746
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
18927
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
19747
18928
|
# @return [String]
|
19748
18929
|
#
|
19749
18930
|
# @!attribute [rw] severity
|
@@ -19919,25 +19100,12 @@ module Aws::SecurityHub
|
|
19919
19100
|
# A timestamp that indicates when Security Hub received a finding and
|
19920
19101
|
# begins to process it.
|
19921
19102
|
#
|
19922
|
-
#
|
19923
|
-
#
|
19924
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
19925
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
19926
|
-
# examples:
|
19927
|
-
#
|
19928
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
19103
|
+
# For more information about the validation and formatting of
|
19104
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19929
19105
|
#
|
19930
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
19931
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19932
19106
|
#
|
19933
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
19934
|
-
# `2024-01-04T15:25:10+17:59`)
|
19935
19107
|
#
|
19936
|
-
#
|
19937
|
-
# `2024-01-04T15:25:10-1759`)
|
19938
|
-
#
|
19939
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
19940
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19108
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
19941
19109
|
# @return [String]
|
19942
19110
|
#
|
19943
19111
|
# @!attribute [rw] aws_account_name
|
@@ -19947,6 +19115,19 @@ module Aws::SecurityHub
|
|
19947
19115
|
# Length Constraints: Minimum length of 1. Maximum length of 50.
|
19948
19116
|
# @return [String]
|
19949
19117
|
#
|
19118
|
+
# @!attribute [rw] detection
|
19119
|
+
# Provides details about an Amazon GuardDuty Extended Threat Detection
|
19120
|
+
# attack sequence. GuardDuty generates an attack sequence finding when
|
19121
|
+
# multiple events align to a potentially suspicious activity. To
|
19122
|
+
# receive GuardDuty attack sequence findings in Security Hub, you must
|
19123
|
+
# have GuardDuty enabled. For more information, see [GuardDuty
|
19124
|
+
# Extended Threat Detection ][1] in the *Amazon GuardDuty User Guide*.
|
19125
|
+
#
|
19126
|
+
#
|
19127
|
+
#
|
19128
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
19129
|
+
# @return [Types::Detection]
|
19130
|
+
#
|
19950
19131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsSecurityFinding AWS API Documentation
|
19951
19132
|
#
|
19952
19133
|
class AwsSecurityFinding < Struct.new(
|
@@ -19993,7 +19174,8 @@ module Aws::SecurityHub
|
|
19993
19174
|
:sample,
|
19994
19175
|
:generator_details,
|
19995
19176
|
:processed_at,
|
19996
|
-
:aws_account_name
|
19177
|
+
:aws_account_name,
|
19178
|
+
:detection)
|
19997
19179
|
SENSITIVE = []
|
19998
19180
|
include Aws::Structure
|
19999
19181
|
end
|
@@ -20039,101 +19221,49 @@ module Aws::SecurityHub
|
|
20039
19221
|
# A timestamp that indicates when the security findings provider first
|
20040
19222
|
# observed the potential security issue that a finding captured.
|
20041
19223
|
#
|
20042
|
-
#
|
20043
|
-
#
|
20044
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20045
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20046
|
-
# examples:
|
20047
|
-
#
|
20048
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
19224
|
+
# For more information about the validation and formatting of
|
19225
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20049
19226
|
#
|
20050
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
20051
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
20052
19227
|
#
|
20053
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
20054
|
-
# `2024-01-04T15:25:10+17:59`)
|
20055
19228
|
#
|
20056
|
-
#
|
20057
|
-
# `2024-01-04T15:25:10-1759`)
|
20058
|
-
#
|
20059
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
20060
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19229
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20061
19230
|
# @return [Array<Types::DateFilter>]
|
20062
19231
|
#
|
20063
19232
|
# @!attribute [rw] last_observed_at
|
20064
19233
|
# A timestamp that indicates when the security findings provider most
|
20065
|
-
# recently observed
|
20066
|
-
#
|
20067
|
-
#
|
20068
|
-
# This field accepts only the specified formats. Timestamps can end
|
20069
|
-
# with `Z` or `("+" / "-") time-hour [":" time-minute]`. The
|
20070
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20071
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20072
|
-
# examples:
|
20073
|
-
#
|
20074
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
19234
|
+
# recently observed a change in the resource that is involved in the
|
19235
|
+
# finding.
|
20075
19236
|
#
|
20076
|
-
#
|
20077
|
-
#
|
19237
|
+
# For more information about the validation and formatting of
|
19238
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20078
19239
|
#
|
20079
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
20080
|
-
# `2024-01-04T15:25:10+17:59`)
|
20081
19240
|
#
|
20082
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
20083
|
-
# `2024-01-04T15:25:10-1759`)
|
20084
19241
|
#
|
20085
|
-
#
|
20086
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19242
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20087
19243
|
# @return [Array<Types::DateFilter>]
|
20088
19244
|
#
|
20089
19245
|
# @!attribute [rw] created_at
|
20090
19246
|
# A timestamp that indicates when the security findings provider
|
20091
19247
|
# created the potential security issue that a finding reflects.
|
20092
19248
|
#
|
20093
|
-
#
|
20094
|
-
#
|
20095
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20096
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20097
|
-
# examples:
|
20098
|
-
#
|
20099
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
20100
|
-
#
|
20101
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
20102
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19249
|
+
# For more information about the validation and formatting of
|
19250
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20103
19251
|
#
|
20104
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
20105
|
-
# `2024-01-04T15:25:10+17:59`)
|
20106
19252
|
#
|
20107
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
20108
|
-
# `2024-01-04T15:25:10-1759`)
|
20109
19253
|
#
|
20110
|
-
#
|
20111
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19254
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20112
19255
|
# @return [Array<Types::DateFilter>]
|
20113
19256
|
#
|
20114
19257
|
# @!attribute [rw] updated_at
|
20115
19258
|
# A timestamp that indicates when the security findings provider last
|
20116
19259
|
# updated the finding record.
|
20117
19260
|
#
|
20118
|
-
#
|
20119
|
-
#
|
20120
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20121
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20122
|
-
# examples:
|
19261
|
+
# For more information about the validation and formatting of
|
19262
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20123
19263
|
#
|
20124
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
20125
19264
|
#
|
20126
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
20127
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
20128
19265
|
#
|
20129
|
-
#
|
20130
|
-
# `2024-01-04T15:25:10+17:59`)
|
20131
|
-
#
|
20132
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
20133
|
-
# `2024-01-04T15:25:10-1759`)
|
20134
|
-
#
|
20135
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
20136
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19266
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20137
19267
|
# @return [Array<Types::DateFilter>]
|
20138
19268
|
#
|
20139
19269
|
# @!attribute [rw] severity_product
|
@@ -20292,49 +19422,23 @@ module Aws::SecurityHub
|
|
20292
19422
|
# @!attribute [rw] process_launched_at
|
20293
19423
|
# A timestamp that identifies when the process was launched.
|
20294
19424
|
#
|
20295
|
-
#
|
20296
|
-
#
|
20297
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20298
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20299
|
-
# examples:
|
20300
|
-
#
|
20301
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
20302
|
-
#
|
20303
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
20304
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19425
|
+
# For more information about the validation and formatting of
|
19426
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20305
19427
|
#
|
20306
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
20307
|
-
# `2024-01-04T15:25:10+17:59`)
|
20308
19428
|
#
|
20309
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
20310
|
-
# `2024-01-04T15:25:10-1759`)
|
20311
19429
|
#
|
20312
|
-
#
|
20313
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19430
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20314
19431
|
# @return [Array<Types::DateFilter>]
|
20315
19432
|
#
|
20316
19433
|
# @!attribute [rw] process_terminated_at
|
20317
19434
|
# A timestamp that identifies when the process was terminated.
|
20318
19435
|
#
|
20319
|
-
#
|
20320
|
-
#
|
20321
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20322
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20323
|
-
# examples:
|
19436
|
+
# For more information about the validation and formatting of
|
19437
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20324
19438
|
#
|
20325
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
20326
19439
|
#
|
20327
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
20328
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
20329
19440
|
#
|
20330
|
-
#
|
20331
|
-
# `2024-01-04T15:25:10+17:59`)
|
20332
|
-
#
|
20333
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
20334
|
-
# `2024-01-04T15:25:10-1759`)
|
20335
|
-
#
|
20336
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
20337
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19441
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20338
19442
|
# @return [Array<Types::DateFilter>]
|
20339
19443
|
#
|
20340
19444
|
# @!attribute [rw] threat_intel_indicator_type
|
@@ -20352,6 +19456,13 @@ module Aws::SecurityHub
|
|
20352
19456
|
# @!attribute [rw] threat_intel_indicator_last_observed_at
|
20353
19457
|
# A timestamp that identifies the last observation of a threat
|
20354
19458
|
# intelligence indicator.
|
19459
|
+
#
|
19460
|
+
# For more information about the validation and formatting of
|
19461
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
19462
|
+
#
|
19463
|
+
#
|
19464
|
+
#
|
19465
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20355
19466
|
# @return [Array<Types::DateFilter>]
|
20356
19467
|
#
|
20357
19468
|
# @!attribute [rw] threat_intel_indicator_source
|
@@ -20464,25 +19575,12 @@ module Aws::SecurityHub
|
|
20464
19575
|
# @!attribute [rw] resource_container_launched_at
|
20465
19576
|
# A timestamp that identifies when the container was started.
|
20466
19577
|
#
|
20467
|
-
#
|
20468
|
-
#
|
20469
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
20470
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
20471
|
-
# examples:
|
20472
|
-
#
|
20473
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
20474
|
-
#
|
20475
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
20476
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
19578
|
+
# For more information about the validation and formatting of
|
19579
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
20477
19580
|
#
|
20478
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
20479
|
-
# `2024-01-04T15:25:10+17:59`)
|
20480
19581
|
#
|
20481
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
20482
|
-
# `2024-01-04T15:25:10-1759`)
|
20483
19582
|
#
|
20484
|
-
#
|
20485
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
19583
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
20486
19584
|
# @return [Array<Types::DateFilter>]
|
20487
19585
|
#
|
20488
19586
|
# @!attribute [rw] resource_details_other
|
@@ -23384,25 +22482,12 @@ module Aws::SecurityHub
|
|
23384
22482
|
# @!attribute [rw] launched_at
|
23385
22483
|
# Indicates when the container started.
|
23386
22484
|
#
|
23387
|
-
#
|
23388
|
-
#
|
23389
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
23390
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
23391
|
-
# examples:
|
22485
|
+
# For more information about the validation and formatting of
|
22486
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
23392
22487
|
#
|
23393
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
23394
22488
|
#
|
23395
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
23396
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
23397
22489
|
#
|
23398
|
-
#
|
23399
|
-
# `2024-01-04T15:25:10+17:59`)
|
23400
|
-
#
|
23401
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
23402
|
-
# `2024-01-04T15:25:10-1759`)
|
23403
|
-
#
|
23404
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
23405
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
22490
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
23406
22491
|
# @return [String]
|
23407
22492
|
#
|
23408
22493
|
# @!attribute [rw] volume_mounts
|
@@ -23922,49 +23007,23 @@ module Aws::SecurityHub
|
|
23922
23007
|
# @!attribute [rw] start
|
23923
23008
|
# A timestamp that provides the start date for the date filter.
|
23924
23009
|
#
|
23925
|
-
#
|
23926
|
-
#
|
23927
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
23928
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
23929
|
-
# examples:
|
23930
|
-
#
|
23931
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
23010
|
+
# For more information about the validation and formatting of
|
23011
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
23932
23012
|
#
|
23933
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
23934
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
23935
23013
|
#
|
23936
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
23937
|
-
# `2024-01-04T15:25:10+17:59`)
|
23938
23014
|
#
|
23939
|
-
#
|
23940
|
-
# `2024-01-04T15:25:10-1759`)
|
23941
|
-
#
|
23942
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
23943
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
23015
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
23944
23016
|
# @return [String]
|
23945
23017
|
#
|
23946
23018
|
# @!attribute [rw] end
|
23947
23019
|
# A timestamp that provides the end date for the date filter.
|
23948
23020
|
#
|
23949
|
-
#
|
23950
|
-
#
|
23951
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
23952
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
23953
|
-
# examples:
|
23954
|
-
#
|
23955
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
23021
|
+
# For more information about the validation and formatting of
|
23022
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
23956
23023
|
#
|
23957
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
23958
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
23959
23024
|
#
|
23960
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
23961
|
-
# `2024-01-04T15:25:10+17:59`)
|
23962
23025
|
#
|
23963
|
-
#
|
23964
|
-
# `2024-01-04T15:25:10-1759`)
|
23965
|
-
#
|
23966
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
23967
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
23026
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
23968
23027
|
# @return [String]
|
23969
23028
|
#
|
23970
23029
|
# @!attribute [rw] date_range
|
@@ -24238,6 +23297,16 @@ module Aws::SecurityHub
|
|
24238
23297
|
# If set to `true`, then new controls for enabled standards are
|
24239
23298
|
# enabled automatically. If set to `false`, then new controls are not
|
24240
23299
|
# enabled.
|
23300
|
+
#
|
23301
|
+
# When you automatically enable new controls, you can interact with
|
23302
|
+
# the controls in the console and programmatically immediately after
|
23303
|
+
# release. However, automatically enabled controls have a temporary
|
23304
|
+
# default status of `DISABLED`. It can take up to several days for
|
23305
|
+
# Security Hub to process the control release and designate the
|
23306
|
+
# control as `ENABLED` in your account. During the processing period,
|
23307
|
+
# you can manually enable or disable a control, and Security Hub will
|
23308
|
+
# maintain that designation regardless of whether you have
|
23309
|
+
# `AutoEnableControls` set to `true`.
|
24241
23310
|
# @return [Boolean]
|
24242
23311
|
#
|
24243
23312
|
# @!attribute [rw] control_finding_generator
|
@@ -24464,6 +23533,30 @@ module Aws::SecurityHub
|
|
24464
23533
|
include Aws::Structure
|
24465
23534
|
end
|
24466
23535
|
|
23536
|
+
# A top-level object field that provides details about an Amazon
|
23537
|
+
# GuardDuty Extended Threat Detection attack sequence. GuardDuty
|
23538
|
+
# generates an attack sequence finding when multiple events align to a
|
23539
|
+
# potentially suspicious activity. To receive GuardDuty attack sequence
|
23540
|
+
# findings in Security Hub, you must have GuardDuty enabled. For more
|
23541
|
+
# information, see [GuardDuty Extended Threat Detection ][1] in the
|
23542
|
+
# *Amazon GuardDuty User Guide*.
|
23543
|
+
#
|
23544
|
+
#
|
23545
|
+
#
|
23546
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
23547
|
+
#
|
23548
|
+
# @!attribute [rw] sequence
|
23549
|
+
# Provides details about an attack sequence.
|
23550
|
+
# @return [Types::Sequence]
|
23551
|
+
#
|
23552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Detection AWS API Documentation
|
23553
|
+
#
|
23554
|
+
class Detection < Struct.new(
|
23555
|
+
:sequence)
|
23556
|
+
SENSITIVE = []
|
23557
|
+
include Aws::Structure
|
23558
|
+
end
|
23559
|
+
|
24467
23560
|
# @!attribute [rw] product_subscription_arn
|
24468
23561
|
# The ARN of the integrated product to disable the integration for.
|
24469
23562
|
# @return [String]
|
@@ -24803,25 +23896,12 @@ module Aws::SecurityHub
|
|
24803
23896
|
# A timestamp that indicates when Security Hub processed the updated
|
24804
23897
|
# finding record.
|
24805
23898
|
#
|
24806
|
-
#
|
24807
|
-
#
|
24808
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
24809
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
24810
|
-
# examples:
|
24811
|
-
#
|
24812
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
24813
|
-
#
|
24814
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
24815
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
23899
|
+
# For more information about the validation and formatting of
|
23900
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
24816
23901
|
#
|
24817
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
24818
|
-
# `2024-01-04T15:25:10+17:59`)
|
24819
23902
|
#
|
24820
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
24821
|
-
# `2024-01-04T15:25:10-1759`)
|
24822
23903
|
#
|
24823
|
-
#
|
24824
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
23904
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
24825
23905
|
# @return [Time]
|
24826
23906
|
#
|
24827
23907
|
# @!attribute [rw] finding_created
|
@@ -25480,29 +24560,13 @@ module Aws::SecurityHub
|
|
25480
24560
|
# response is limited to 100 results, and the maximum time period is
|
25481
24561
|
# limited to 90 days.
|
25482
24562
|
#
|
25483
|
-
#
|
25484
|
-
#
|
25485
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
25486
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
25487
|
-
# examples:
|
25488
|
-
#
|
25489
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
25490
|
-
#
|
25491
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
25492
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
25493
|
-
#
|
25494
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
25495
|
-
# `2024-01-04T15:25:10+17:59`)
|
25496
|
-
#
|
25497
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
25498
|
-
# `2024-01-04T15:25:10-1759`)
|
25499
|
-
#
|
25500
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
25501
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
24563
|
+
# For more information about the validation and formatting of
|
24564
|
+
# timestamp fields in Security Hub, see [Timestamps][2].
|
25502
24565
|
#
|
25503
24566
|
#
|
25504
24567
|
#
|
25505
24568
|
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
24569
|
+
# [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
25506
24570
|
# @return [Time]
|
25507
24571
|
#
|
25508
24572
|
# @!attribute [rw] end_time
|
@@ -25522,29 +24586,13 @@ module Aws::SecurityHub
|
|
25522
24586
|
# response is limited to 100 results, and the maximum time period is
|
25523
24587
|
# limited to 90 days.
|
25524
24588
|
#
|
25525
|
-
#
|
25526
|
-
#
|
25527
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
25528
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
25529
|
-
# examples:
|
25530
|
-
#
|
25531
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
25532
|
-
#
|
25533
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
25534
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
25535
|
-
#
|
25536
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
25537
|
-
# `2024-01-04T15:25:10+17:59`)
|
25538
|
-
#
|
25539
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
25540
|
-
# `2024-01-04T15:25:10-1759`)
|
25541
|
-
#
|
25542
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
25543
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
24589
|
+
# For more information about the validation and formatting of
|
24590
|
+
# timestamp fields in Security Hub, see [Timestamps][2].
|
25544
24591
|
#
|
25545
24592
|
#
|
25546
24593
|
#
|
25547
24594
|
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
24595
|
+
# [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
25548
24596
|
# @return [Time]
|
25549
24597
|
#
|
25550
24598
|
# @!attribute [rw] next_token
|
@@ -25866,6 +24914,51 @@ module Aws::SecurityHub
|
|
25866
24914
|
include Aws::Structure
|
25867
24915
|
end
|
25868
24916
|
|
24917
|
+
# Contains information about the indicators observed in an Amazon
|
24918
|
+
# GuardDuty Extended Threat Detection attack sequence. Indicators
|
24919
|
+
# include a set of signals, which can be API activities or findings that
|
24920
|
+
# GuardDuty uses to detect an attack sequence finding. GuardDuty
|
24921
|
+
# generates an attack sequence finding when multiple signals align to a
|
24922
|
+
# potentially suspicious activity. To receive GuardDuty attack sequence
|
24923
|
+
# findings in Security Hub, you must have GuardDuty and GuardDuty S3
|
24924
|
+
# Protection enabled. For more information, see [GuardDuty Extended
|
24925
|
+
# Threat Detection ][1] in the *Amazon GuardDuty User Guide*.
|
24926
|
+
#
|
24927
|
+
#
|
24928
|
+
#
|
24929
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
24930
|
+
#
|
24931
|
+
# @!attribute [rw] key
|
24932
|
+
# The name of the indicator that’s present in the attack sequence
|
24933
|
+
# finding.
|
24934
|
+
# @return [String]
|
24935
|
+
#
|
24936
|
+
# @!attribute [rw] values
|
24937
|
+
# Values associated with each indicator key. For example, if the
|
24938
|
+
# indicator key is `SUSPICIOUS_NETWORK`, then the value will be the
|
24939
|
+
# name of the network. If the indicator key is `ATTACK_TACTIC`, then
|
24940
|
+
# the value will be one of the MITRE tactics.
|
24941
|
+
# @return [Array<String>]
|
24942
|
+
#
|
24943
|
+
# @!attribute [rw] title
|
24944
|
+
# The title describing the indicator.
|
24945
|
+
# @return [String]
|
24946
|
+
#
|
24947
|
+
# @!attribute [rw] type
|
24948
|
+
# The type of indicator.
|
24949
|
+
# @return [String]
|
24950
|
+
#
|
24951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Indicator AWS API Documentation
|
24952
|
+
#
|
24953
|
+
class Indicator < Struct.new(
|
24954
|
+
:key,
|
24955
|
+
:values,
|
24956
|
+
:title,
|
24957
|
+
:type)
|
24958
|
+
SENSITIVE = []
|
24959
|
+
include Aws::Structure
|
24960
|
+
end
|
24961
|
+
|
25869
24962
|
# Contains information about a Security Hub insight.
|
25870
24963
|
#
|
25871
24964
|
# @!attribute [rw] insight_arn
|
@@ -27024,6 +26117,59 @@ module Aws::SecurityHub
|
|
27024
26117
|
include Aws::Structure
|
27025
26118
|
end
|
27026
26119
|
|
26120
|
+
# Contains information about the Autonomous System (AS) of the network
|
26121
|
+
# endpoints involved in an Amazon GuardDuty Extended Threat Detection
|
26122
|
+
# attack sequence. GuardDuty generates an attack sequence finding when
|
26123
|
+
# multiple events align to a potentially suspicious activity. To receive
|
26124
|
+
# GuardDuty attack sequence findings in Security Hub, you must have
|
26125
|
+
# GuardDuty enabled. For more information, see [GuardDuty Extended
|
26126
|
+
# Threat Detection ][1] in the *Amazon GuardDuty User Guide*.
|
26127
|
+
#
|
26128
|
+
#
|
26129
|
+
#
|
26130
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
26131
|
+
#
|
26132
|
+
# @!attribute [rw] name
|
26133
|
+
# The name associated with the AS.
|
26134
|
+
# @return [String]
|
26135
|
+
#
|
26136
|
+
# @!attribute [rw] number
|
26137
|
+
# The unique number that identifies the AS.
|
26138
|
+
# @return [Integer]
|
26139
|
+
#
|
26140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/NetworkAutonomousSystem AWS API Documentation
|
26141
|
+
#
|
26142
|
+
class NetworkAutonomousSystem < Struct.new(
|
26143
|
+
:name,
|
26144
|
+
:number)
|
26145
|
+
SENSITIVE = []
|
26146
|
+
include Aws::Structure
|
26147
|
+
end
|
26148
|
+
|
26149
|
+
# Contains information about the network connection involved in an
|
26150
|
+
# Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty
|
26151
|
+
# generates an attack sequence finding when multiple events align to a
|
26152
|
+
# potentially suspicious activity. To receive GuardDuty attack sequence
|
26153
|
+
# findings in Security Hub, you must have GuardDuty enabled. For more
|
26154
|
+
# information, see [GuardDuty Extended Threat Detection ][1] in the
|
26155
|
+
# *Amazon GuardDuty User Guide*.
|
26156
|
+
#
|
26157
|
+
#
|
26158
|
+
#
|
26159
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
26160
|
+
#
|
26161
|
+
# @!attribute [rw] direction
|
26162
|
+
# The direction in which the network traffic is flowing.
|
26163
|
+
# @return [String]
|
26164
|
+
#
|
26165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/NetworkConnection AWS API Documentation
|
26166
|
+
#
|
26167
|
+
class NetworkConnection < Struct.new(
|
26168
|
+
:direction)
|
26169
|
+
SENSITIVE = []
|
26170
|
+
include Aws::Structure
|
26171
|
+
end
|
26172
|
+
|
27027
26173
|
# Provided if `ActionType` is `NETWORK_CONNECTION`. It provides details
|
27028
26174
|
# about the attempted network connection that was detected.
|
27029
26175
|
#
|
@@ -27067,6 +26213,104 @@ module Aws::SecurityHub
|
|
27067
26213
|
include Aws::Structure
|
27068
26214
|
end
|
27069
26215
|
|
26216
|
+
# Contains information about network endpoints involved in an Amazon
|
26217
|
+
# GuardDuty Extended Threat Detection attack sequence. GuardDuty
|
26218
|
+
# generates an attack sequence finding when multiple events align to a
|
26219
|
+
# potentially suspicious activity. To receive GuardDuty attack sequence
|
26220
|
+
# findings in Security Hub, you must have GuardDuty enabled. For more
|
26221
|
+
# information, see [GuardDuty Extended Threat Detection ][1] in the
|
26222
|
+
# *Amazon GuardDuty User Guide*.
|
26223
|
+
#
|
26224
|
+
# This field can provide information about the network endpoints
|
26225
|
+
# associated with the resource in the attack sequence finding, or about
|
26226
|
+
# a specific network endpoint used for the attack.
|
26227
|
+
#
|
26228
|
+
#
|
26229
|
+
#
|
26230
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
26231
|
+
#
|
26232
|
+
# @!attribute [rw] id
|
26233
|
+
# The identifier of the network endpoint involved in the attack
|
26234
|
+
# sequence.
|
26235
|
+
# @return [String]
|
26236
|
+
#
|
26237
|
+
# @!attribute [rw] ip
|
26238
|
+
# The IP address used in the network endpoint.
|
26239
|
+
# @return [String]
|
26240
|
+
#
|
26241
|
+
# @!attribute [rw] domain
|
26242
|
+
# The domain information for the network endpoint.
|
26243
|
+
# @return [String]
|
26244
|
+
#
|
26245
|
+
# @!attribute [rw] port
|
26246
|
+
# The port number associated with the network endpoint.
|
26247
|
+
# @return [Integer]
|
26248
|
+
#
|
26249
|
+
# @!attribute [rw] location
|
26250
|
+
# Information about the location of the network endpoint.
|
26251
|
+
# @return [Types::NetworkGeoLocation]
|
26252
|
+
#
|
26253
|
+
# @!attribute [rw] autonomous_system
|
26254
|
+
# The Autonomous System Number (ASN) of the network endpoint.
|
26255
|
+
# @return [Types::NetworkAutonomousSystem]
|
26256
|
+
#
|
26257
|
+
# @!attribute [rw] connection
|
26258
|
+
# Information about the network connection.
|
26259
|
+
# @return [Types::NetworkConnection]
|
26260
|
+
#
|
26261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/NetworkEndpoint AWS API Documentation
|
26262
|
+
#
|
26263
|
+
class NetworkEndpoint < Struct.new(
|
26264
|
+
:id,
|
26265
|
+
:ip,
|
26266
|
+
:domain,
|
26267
|
+
:port,
|
26268
|
+
:location,
|
26269
|
+
:autonomous_system,
|
26270
|
+
:connection)
|
26271
|
+
SENSITIVE = []
|
26272
|
+
include Aws::Structure
|
26273
|
+
end
|
26274
|
+
|
26275
|
+
# Contains information about the location of a network endpoint involved
|
26276
|
+
# in an Amazon GuardDuty Extended Threat Detection attack sequence.
|
26277
|
+
# GuardDuty generates an attack sequence finding when multiple events
|
26278
|
+
# align to a potentially suspicious activity. To receive GuardDuty
|
26279
|
+
# attack sequence findings in Security Hub, you must have GuardDuty
|
26280
|
+
# enabled. For more information, see [GuardDuty Extended Threat
|
26281
|
+
# Detection ][1] in the *Amazon GuardDuty User Guide*.
|
26282
|
+
#
|
26283
|
+
#
|
26284
|
+
#
|
26285
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
26286
|
+
#
|
26287
|
+
# @!attribute [rw] city
|
26288
|
+
# The name of the city.
|
26289
|
+
# @return [String]
|
26290
|
+
#
|
26291
|
+
# @!attribute [rw] country
|
26292
|
+
# The name of the country.
|
26293
|
+
# @return [String]
|
26294
|
+
#
|
26295
|
+
# @!attribute [rw] lat
|
26296
|
+
# The latitude information of the endpoint location.
|
26297
|
+
# @return [Float]
|
26298
|
+
#
|
26299
|
+
# @!attribute [rw] lon
|
26300
|
+
# The longitude information of the endpoint location.
|
26301
|
+
# @return [Float]
|
26302
|
+
#
|
26303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/NetworkGeoLocation AWS API Documentation
|
26304
|
+
#
|
26305
|
+
class NetworkGeoLocation < Struct.new(
|
26306
|
+
:city,
|
26307
|
+
:country,
|
26308
|
+
:lat,
|
26309
|
+
:lon)
|
26310
|
+
SENSITIVE = []
|
26311
|
+
include Aws::Structure
|
26312
|
+
end
|
26313
|
+
|
27070
26314
|
# Details about a network path component that occurs before or after the
|
27071
26315
|
# current component.
|
27072
26316
|
#
|
@@ -27164,25 +26408,12 @@ module Aws::SecurityHub
|
|
27164
26408
|
# @!attribute [rw] updated_at
|
27165
26409
|
# A timestamp that indicates when the note was updated.
|
27166
26410
|
#
|
27167
|
-
#
|
27168
|
-
#
|
27169
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
27170
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
27171
|
-
# examples:
|
26411
|
+
# For more information about the validation and formatting of
|
26412
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
27172
26413
|
#
|
27173
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
27174
26414
|
#
|
27175
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
27176
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
27177
26415
|
#
|
27178
|
-
#
|
27179
|
-
# `2024-01-04T15:25:10+17:59`)
|
27180
|
-
#
|
27181
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
27182
|
-
# `2024-01-04T15:25:10-1759`)
|
27183
|
-
#
|
27184
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
27185
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
26416
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
27186
26417
|
# @return [String]
|
27187
26418
|
#
|
27188
26419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Note AWS API Documentation
|
@@ -27540,49 +26771,23 @@ module Aws::SecurityHub
|
|
27540
26771
|
# @!attribute [rw] operation_start_time
|
27541
26772
|
# Indicates when the operation started.
|
27542
26773
|
#
|
27543
|
-
#
|
27544
|
-
#
|
27545
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
27546
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
27547
|
-
# examples:
|
27548
|
-
#
|
27549
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
27550
|
-
#
|
27551
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
27552
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
26774
|
+
# For more information about the validation and formatting of
|
26775
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
27553
26776
|
#
|
27554
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
27555
|
-
# `2024-01-04T15:25:10+17:59`)
|
27556
26777
|
#
|
27557
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
27558
|
-
# `2024-01-04T15:25:10-1759`)
|
27559
26778
|
#
|
27560
|
-
#
|
27561
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
26779
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
27562
26780
|
# @return [String]
|
27563
26781
|
#
|
27564
26782
|
# @!attribute [rw] operation_end_time
|
27565
26783
|
# Indicates when the operation completed.
|
27566
26784
|
#
|
27567
|
-
#
|
27568
|
-
#
|
27569
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
27570
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
27571
|
-
# examples:
|
26785
|
+
# For more information about the validation and formatting of
|
26786
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
27572
26787
|
#
|
27573
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
27574
26788
|
#
|
27575
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
27576
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
27577
26789
|
#
|
27578
|
-
#
|
27579
|
-
# `2024-01-04T15:25:10+17:59`)
|
27580
|
-
#
|
27581
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
27582
|
-
# `2024-01-04T15:25:10-1759`)
|
27583
|
-
#
|
27584
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
27585
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
26790
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
27586
26791
|
# @return [String]
|
27587
26792
|
#
|
27588
26793
|
# @!attribute [rw] reboot_option
|
@@ -27761,49 +26966,23 @@ module Aws::SecurityHub
|
|
27761
26966
|
# @!attribute [rw] launched_at
|
27762
26967
|
# Indicates when the process was launched.
|
27763
26968
|
#
|
27764
|
-
#
|
27765
|
-
#
|
27766
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
27767
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
27768
|
-
# examples:
|
27769
|
-
#
|
27770
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
27771
|
-
#
|
27772
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
27773
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
26969
|
+
# For more information about the validation and formatting of
|
26970
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
27774
26971
|
#
|
27775
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
27776
|
-
# `2024-01-04T15:25:10+17:59`)
|
27777
26972
|
#
|
27778
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
27779
|
-
# `2024-01-04T15:25:10-1759`)
|
27780
26973
|
#
|
27781
|
-
#
|
27782
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
26974
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
27783
26975
|
# @return [String]
|
27784
26976
|
#
|
27785
26977
|
# @!attribute [rw] terminated_at
|
27786
26978
|
# Indicates when the process was terminated.
|
27787
26979
|
#
|
27788
|
-
#
|
27789
|
-
#
|
27790
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
27791
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
27792
|
-
# examples:
|
26980
|
+
# For more information about the validation and formatting of
|
26981
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
27793
26982
|
#
|
27794
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
27795
26983
|
#
|
27796
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
27797
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
27798
26984
|
#
|
27799
|
-
#
|
27800
|
-
# `2024-01-04T15:25:10+17:59`)
|
27801
|
-
#
|
27802
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
27803
|
-
# `2024-01-04T15:25:10-1759`)
|
27804
|
-
#
|
27805
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
27806
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
26985
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
27807
26986
|
# @return [String]
|
27808
26987
|
#
|
27809
26988
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ProcessDetails AWS API Documentation
|
@@ -28474,7 +27653,7 @@ module Aws::SecurityHub
|
|
28474
27653
|
# @return [Types::AwsEc2LaunchTemplateDetails]
|
28475
27654
|
#
|
28476
27655
|
# @!attribute [rw] aws_sage_maker_notebook_instance
|
28477
|
-
# Provides details about an Amazon SageMaker notebook instance.
|
27656
|
+
# Provides details about an Amazon SageMaker AI notebook instance.
|
28478
27657
|
# @return [Types::AwsSageMakerNotebookInstanceDetails]
|
28479
27658
|
#
|
28480
27659
|
# @!attribute [rw] aws_wafv_2_web_acl
|
@@ -29599,6 +28778,60 @@ module Aws::SecurityHub
|
|
29599
28778
|
include Aws::Structure
|
29600
28779
|
end
|
29601
28780
|
|
28781
|
+
# Contains information about an Amazon GuardDuty Extended Threat
|
28782
|
+
# Detection attack sequence finding. GuardDuty generates an attack
|
28783
|
+
# sequence finding when multiple events align to a potentially
|
28784
|
+
# suspicious activity. To receive GuardDuty attack sequence findings in
|
28785
|
+
# Security Hub, you must have GuardDuty enabled. For more information,
|
28786
|
+
# see [GuardDuty Extended Threat Detection ][1] in the *Amazon GuardDuty
|
28787
|
+
# User Guide*.
|
28788
|
+
#
|
28789
|
+
#
|
28790
|
+
#
|
28791
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
28792
|
+
#
|
28793
|
+
# @!attribute [rw] uid
|
28794
|
+
# Unique identifier of the attack sequence.
|
28795
|
+
# @return [String]
|
28796
|
+
#
|
28797
|
+
# @!attribute [rw] actors
|
28798
|
+
# Provides information about the actors involved in the attack
|
28799
|
+
# sequence.
|
28800
|
+
# @return [Array<Types::Actor>]
|
28801
|
+
#
|
28802
|
+
# @!attribute [rw] endpoints
|
28803
|
+
# Contains information about the network endpoints that were used in
|
28804
|
+
# the attack sequence.
|
28805
|
+
# @return [Array<Types::NetworkEndpoint>]
|
28806
|
+
#
|
28807
|
+
# @!attribute [rw] signals
|
28808
|
+
# Contains information about the signals involved in the attack
|
28809
|
+
# sequence.
|
28810
|
+
# @return [Array<Types::Signal>]
|
28811
|
+
#
|
28812
|
+
# @!attribute [rw] sequence_indicators
|
28813
|
+
# Contains information about the indicators observed in the attack
|
28814
|
+
# sequence. The values for [SignalIndicators][1] are a subset of the
|
28815
|
+
# values for `SequenceIndicators`, but the values for these fields
|
28816
|
+
# don't always match 1:1.
|
28817
|
+
#
|
28818
|
+
#
|
28819
|
+
#
|
28820
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_Signal.html
|
28821
|
+
# @return [Array<Types::Indicator>]
|
28822
|
+
#
|
28823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Sequence AWS API Documentation
|
28824
|
+
#
|
28825
|
+
class Sequence < Struct.new(
|
28826
|
+
:uid,
|
28827
|
+
:actors,
|
28828
|
+
:endpoints,
|
28829
|
+
:signals,
|
28830
|
+
:sequence_indicators)
|
28831
|
+
SENSITIVE = []
|
28832
|
+
include Aws::Structure
|
28833
|
+
end
|
28834
|
+
|
29602
28835
|
# The severity of the finding.
|
29603
28836
|
#
|
29604
28837
|
# The finding provider can provide the initial severity. The finding
|
@@ -29737,6 +28970,142 @@ module Aws::SecurityHub
|
|
29737
28970
|
include Aws::Structure
|
29738
28971
|
end
|
29739
28972
|
|
28973
|
+
# Contains information about the signals involved in an Amazon GuardDuty
|
28974
|
+
# Extended Threat Detection attack sequence. An attack sequence is a
|
28975
|
+
# type of threat detected by GuardDuty. GuardDuty generates an attack
|
28976
|
+
# sequence finding when multiple events, or signals, align to a
|
28977
|
+
# potentially suspicious activity. When GuardDuty and Security Hub are
|
28978
|
+
# integrated, GuardDuty sends attack sequence findings to Security Hub.
|
28979
|
+
#
|
28980
|
+
# A signal can be an API activity or a finding that GuardDuty uses to
|
28981
|
+
# detect an attack sequence finding.
|
28982
|
+
#
|
28983
|
+
# @!attribute [rw] type
|
28984
|
+
# The type of the signal used to identify an attack sequence.
|
28985
|
+
#
|
28986
|
+
# Signals can be GuardDuty findings or activities observed in data
|
28987
|
+
# sources that GuardDuty monitors. For more information, see
|
28988
|
+
# [GuardDuty foundational data sources][1] in the *Amazon GuardDuty
|
28989
|
+
# User Guide*.
|
28990
|
+
#
|
28991
|
+
# A signal type can be one of the following values. Here are the
|
28992
|
+
# related descriptions:
|
28993
|
+
#
|
28994
|
+
# * `FINDING` - Individually generated GuardDuty finding.
|
28995
|
+
#
|
28996
|
+
# * `CLOUD_TRAIL` - Activity observed from CloudTrail logs
|
28997
|
+
#
|
28998
|
+
# * `S3_DATA_EVENTS` - Activity observed from CloudTrail data events
|
28999
|
+
# for Amazon Simple Storage Service (S3). Activities associated with
|
29000
|
+
# this type will show up only when you have enabled GuardDuty S3
|
29001
|
+
# Protection feature in your account. For more information about S3
|
29002
|
+
# Protection and the steps to enable it, see [S3 Protection][2] in
|
29003
|
+
# the *Amazon GuardDuty User Guide*.
|
29004
|
+
#
|
29005
|
+
#
|
29006
|
+
#
|
29007
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_data-sources.html
|
29008
|
+
# [2]: https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html
|
29009
|
+
# @return [String]
|
29010
|
+
#
|
29011
|
+
# @!attribute [rw] id
|
29012
|
+
# The identifier of the signal.
|
29013
|
+
# @return [String]
|
29014
|
+
#
|
29015
|
+
# @!attribute [rw] title
|
29016
|
+
# The description of the GuardDuty finding.
|
29017
|
+
# @return [String]
|
29018
|
+
#
|
29019
|
+
# @!attribute [rw] product_arn
|
29020
|
+
# The Amazon Resource Name (ARN) of the product that generated the
|
29021
|
+
# signal.
|
29022
|
+
# @return [String]
|
29023
|
+
#
|
29024
|
+
# @!attribute [rw] resource_ids
|
29025
|
+
# The ARN or ID of the Amazon Web Services resource associated with
|
29026
|
+
# the signal.
|
29027
|
+
# @return [Array<String>]
|
29028
|
+
#
|
29029
|
+
# @!attribute [rw] signal_indicators
|
29030
|
+
# Contains information about the indicators associated with the
|
29031
|
+
# signals in this attack sequence finding. The values for
|
29032
|
+
# `SignalIndicators` are a subset of the values for
|
29033
|
+
# [SequenceIndicators][1], but the values for these fields don't
|
29034
|
+
# always match 1:1.
|
29035
|
+
#
|
29036
|
+
#
|
29037
|
+
#
|
29038
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_Sequence.html
|
29039
|
+
# @return [Array<Types::Indicator>]
|
29040
|
+
#
|
29041
|
+
# @!attribute [rw] name
|
29042
|
+
# The name of the GuardDuty signal. For example, when signal type is
|
29043
|
+
# `FINDING`, the signal name is the name of the finding.
|
29044
|
+
# @return [String]
|
29045
|
+
#
|
29046
|
+
# @!attribute [rw] created_at
|
29047
|
+
# The timestamp when the first finding or activity related to this
|
29048
|
+
# signal was observed.
|
29049
|
+
# @return [Integer]
|
29050
|
+
#
|
29051
|
+
# @!attribute [rw] updated_at
|
29052
|
+
# The timestamp when this signal was last observed.
|
29053
|
+
# @return [Integer]
|
29054
|
+
#
|
29055
|
+
# @!attribute [rw] first_seen_at
|
29056
|
+
# The timestamp when the first finding or activity related to this
|
29057
|
+
# signal was observed.
|
29058
|
+
# @return [Integer]
|
29059
|
+
#
|
29060
|
+
# @!attribute [rw] last_seen_at
|
29061
|
+
# The timestamp when the last finding or activity related to this
|
29062
|
+
# signal was observed.
|
29063
|
+
# @return [Integer]
|
29064
|
+
#
|
29065
|
+
# @!attribute [rw] severity
|
29066
|
+
# The severity associated with the signal. For more information about
|
29067
|
+
# severity, see [Severity levels for GuardDuty findings][1] in the
|
29068
|
+
# *Amazon GuardDuty User Guide*.
|
29069
|
+
#
|
29070
|
+
#
|
29071
|
+
#
|
29072
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_findings-severity.html
|
29073
|
+
# @return [Float]
|
29074
|
+
#
|
29075
|
+
# @!attribute [rw] count
|
29076
|
+
# The number of times this signal was observed.
|
29077
|
+
# @return [Integer]
|
29078
|
+
#
|
29079
|
+
# @!attribute [rw] actor_ids
|
29080
|
+
# The IDs of the threat actors involved in the signal.
|
29081
|
+
# @return [Array<String>]
|
29082
|
+
#
|
29083
|
+
# @!attribute [rw] endpoint_ids
|
29084
|
+
# Information about the endpoint IDs associated with this signal.
|
29085
|
+
# @return [Array<String>]
|
29086
|
+
#
|
29087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Signal AWS API Documentation
|
29088
|
+
#
|
29089
|
+
class Signal < Struct.new(
|
29090
|
+
:type,
|
29091
|
+
:id,
|
29092
|
+
:title,
|
29093
|
+
:product_arn,
|
29094
|
+
:resource_ids,
|
29095
|
+
:signal_indicators,
|
29096
|
+
:name,
|
29097
|
+
:created_at,
|
29098
|
+
:updated_at,
|
29099
|
+
:first_seen_at,
|
29100
|
+
:last_seen_at,
|
29101
|
+
:severity,
|
29102
|
+
:count,
|
29103
|
+
:actor_ids,
|
29104
|
+
:endpoint_ids)
|
29105
|
+
SENSITIVE = []
|
29106
|
+
include Aws::Structure
|
29107
|
+
end
|
29108
|
+
|
29740
29109
|
# Information about a software package.
|
29741
29110
|
#
|
29742
29111
|
# @!attribute [rw] name
|
@@ -30382,12 +29751,12 @@ module Aws::SecurityHub
|
|
30382
29751
|
#
|
30383
29752
|
# @!attribute [rw] reason_code
|
30384
29753
|
# A code that represents a reason for the control status. For the list
|
30385
|
-
# of status reason codes and their meanings, see [
|
30386
|
-
#
|
29754
|
+
# of status reason codes and their meanings, see [Compliance details
|
29755
|
+
# for control findings][1] in the *Security Hub User Guide*.
|
30387
29756
|
#
|
30388
29757
|
#
|
30389
29758
|
#
|
30390
|
-
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/
|
29759
|
+
# [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/controls-findings-create-update.html#control-findings-asff-compliance
|
30391
29760
|
# @return [String]
|
30392
29761
|
#
|
30393
29762
|
# @!attribute [rw] description
|
@@ -30687,25 +30056,12 @@ module Aws::SecurityHub
|
|
30687
30056
|
# Indicates when the most recent instance of a threat intelligence
|
30688
30057
|
# indicator was observed.
|
30689
30058
|
#
|
30690
|
-
#
|
30691
|
-
#
|
30692
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
30693
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
30694
|
-
# examples:
|
30059
|
+
# For more information about the validation and formatting of
|
30060
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
30695
30061
|
#
|
30696
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
30697
30062
|
#
|
30698
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
30699
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
30700
30063
|
#
|
30701
|
-
#
|
30702
|
-
# `2024-01-04T15:25:10+17:59`)
|
30703
|
-
#
|
30704
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
30705
|
-
# `2024-01-04T15:25:10-1759`)
|
30706
|
-
#
|
30707
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
30708
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
30064
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
30709
30065
|
# @return [String]
|
30710
30066
|
#
|
30711
30067
|
# @!attribute [rw] source
|
@@ -31352,6 +30708,16 @@ module Aws::SecurityHub
|
|
31352
30708
|
# By default, this is set to `true`, and new controls are enabled
|
31353
30709
|
# automatically. To not automatically enable new controls, set this to
|
31354
30710
|
# `false`.
|
30711
|
+
#
|
30712
|
+
# When you automatically enable new controls, you can interact with
|
30713
|
+
# the controls in the console and programmatically immediately after
|
30714
|
+
# release. However, automatically enabled controls have a temporary
|
30715
|
+
# default status of `DISABLED`. It can take up to several days for
|
30716
|
+
# Security Hub to process the control release and designate the
|
30717
|
+
# control as `ENABLED` in your account. During the processing period,
|
30718
|
+
# you can manually enable or disable a control, and Security Hub will
|
30719
|
+
# maintain that designation regardless of whether you have
|
30720
|
+
# `AutoEnableControls` set to `true`.
|
31355
30721
|
# @return [Boolean]
|
31356
30722
|
#
|
31357
30723
|
# @!attribute [rw] control_finding_generator
|
@@ -31410,6 +30776,36 @@ module Aws::SecurityHub
|
|
31410
30776
|
#
|
31411
30777
|
class UpdateStandardsControlResponse < Aws::EmptyStructure; end
|
31412
30778
|
|
30779
|
+
# Provides Amazon Web Services account information of the user involved
|
30780
|
+
# in an Amazon GuardDuty Extended Threat Detection attack sequence.
|
30781
|
+
# GuardDuty generates an attack sequence finding when multiple events
|
30782
|
+
# align to a potentially suspicious activity. To receive GuardDuty
|
30783
|
+
# attack sequence findings in Security Hub, you must have GuardDuty
|
30784
|
+
# enabled. For more information, see [GuardDuty Extended Threat
|
30785
|
+
# Detection ][1] in the *Amazon GuardDuty User Guide*.
|
30786
|
+
#
|
30787
|
+
#
|
30788
|
+
#
|
30789
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html
|
30790
|
+
#
|
30791
|
+
# @!attribute [rw] uid
|
30792
|
+
# The unique identifier of the user account involved in the attack
|
30793
|
+
# sequence.
|
30794
|
+
# @return [String]
|
30795
|
+
#
|
30796
|
+
# @!attribute [rw] name
|
30797
|
+
# The name of the user account involved in the attack sequence.
|
30798
|
+
# @return [String]
|
30799
|
+
#
|
30800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UserAccount AWS API Documentation
|
30801
|
+
#
|
30802
|
+
class UserAccount < Struct.new(
|
30803
|
+
:uid,
|
30804
|
+
:name)
|
30805
|
+
SENSITIVE = []
|
30806
|
+
include Aws::Structure
|
30807
|
+
end
|
30808
|
+
|
31413
30809
|
# Describes the mounting of a volume in a container.
|
31414
30810
|
#
|
31415
30811
|
# @!attribute [rw] name
|
@@ -31612,49 +31008,23 @@ module Aws::SecurityHub
|
|
31612
31008
|
# @!attribute [rw] vendor_created_at
|
31613
31009
|
# Indicates when the vulnerability advisory was created.
|
31614
31010
|
#
|
31615
|
-
#
|
31616
|
-
#
|
31617
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
31618
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
31619
|
-
# examples:
|
31620
|
-
#
|
31621
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
31011
|
+
# For more information about the validation and formatting of
|
31012
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
31622
31013
|
#
|
31623
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
31624
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
31625
31014
|
#
|
31626
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
31627
|
-
# `2024-01-04T15:25:10+17:59`)
|
31628
31015
|
#
|
31629
|
-
#
|
31630
|
-
# `2024-01-04T15:25:10-1759`)
|
31631
|
-
#
|
31632
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
31633
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
31016
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
31634
31017
|
# @return [String]
|
31635
31018
|
#
|
31636
31019
|
# @!attribute [rw] vendor_updated_at
|
31637
31020
|
# Indicates when the vulnerability advisory was last updated.
|
31638
31021
|
#
|
31639
|
-
#
|
31640
|
-
#
|
31641
|
-
# time-secfrac after seconds is limited to a maximum of 9 digits. The
|
31642
|
-
# offset is bounded by +/-18:00. Here are valid timestamp formats with
|
31643
|
-
# examples:
|
31644
|
-
#
|
31645
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
31646
|
-
#
|
31647
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
31648
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
31022
|
+
# For more information about the validation and formatting of
|
31023
|
+
# timestamp fields in Security Hub, see [Timestamps][1].
|
31649
31024
|
#
|
31650
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
31651
|
-
# `2024-01-04T15:25:10+17:59`)
|
31652
31025
|
#
|
31653
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example,
|
31654
|
-
# `2024-01-04T15:25:10-1759`)
|
31655
31026
|
#
|
31656
|
-
#
|
31657
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
31027
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
31658
31028
|
# @return [String]
|
31659
31029
|
#
|
31660
31030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/VulnerabilityVendor AWS API Documentation
|