@aws-sdk/client-securityhub 3.696.0 → 3.703.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -896,6 +896,152 @@ export interface ActionTarget {
896
896
  */
897
897
  Description: string | undefined;
898
898
  }
899
+ /**
900
+ * @public
901
+ * @enum
902
+ */
903
+ export declare const ActorSessionMfaStatus: {
904
+ readonly DISABLED: "DISABLED";
905
+ readonly ENABLED: "ENABLED";
906
+ };
907
+ /**
908
+ * @public
909
+ */
910
+ export type ActorSessionMfaStatus = (typeof ActorSessionMfaStatus)[keyof typeof ActorSessionMfaStatus];
911
+ /**
912
+ * <p>
913
+ * Contains information about the authenticated session used by the threat actor identified in an Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty generates an attack
914
+ * sequence finding when multiple events align to a potentially suspicious activity. To receive GuardDuty attack sequence findings in Security Hub, you
915
+ * must have GuardDuty and GuardDuty S3 Protection enabled. For more information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html">GuardDuty Extended Threat Detection </a> in the <i>Amazon GuardDuty User Guide</i>.</p>
916
+ * @public
917
+ */
918
+ export interface ActorSession {
919
+ /**
920
+ * <p>
921
+ * Unique identifier of the session.
922
+ * </p>
923
+ * @public
924
+ */
925
+ Uid?: string | undefined;
926
+ /**
927
+ * <p>
928
+ * Indicates whether multi-factor authentication (MFA) was used for authentication during the session.</p>
929
+ * <p>In CloudTrail, you can find this value as <code>userIdentity.sessionContext.attributes.mfaAuthenticated</code>.</p>
930
+ * @public
931
+ */
932
+ MfaStatus?: ActorSessionMfaStatus | undefined;
933
+ /**
934
+ * <p>The timestamp for when the session was created.
935
+ * </p>
936
+ * <p>In CloudTrail, you can find this value as <code>userIdentity.sessionContext.attributes.creationDate</code>.</p>
937
+ * @public
938
+ */
939
+ CreatedTime?: number | undefined;
940
+ /**
941
+ * <p>
942
+ * The issuer of the session.
943
+ * </p>
944
+ * <p>In CloudTrail, you can find this value as <code>userIdentity.sessionContext.sessionIssuer.arn</code>.</p>
945
+ * @public
946
+ */
947
+ Issuer?: string | undefined;
948
+ }
949
+ /**
950
+ * <p>
951
+ * Provides Amazon Web Services account information of the user involved in an Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty generates an attack
952
+ * sequence finding when multiple events align to a potentially suspicious activity. To receive GuardDuty attack sequence findings in Security Hub, you
953
+ * must have GuardDuty and GuardDuty S3 Protection enabled. For more information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html">GuardDuty Extended Threat Detection </a> in the <i>Amazon GuardDuty User Guide</i>.
954
+ * </p>
955
+ * @public
956
+ */
957
+ export interface UserAccount {
958
+ /**
959
+ * <p>
960
+ * The unique identifier of the user account involved in the attack sequence.
961
+ * </p>
962
+ * @public
963
+ */
964
+ Uid?: string | undefined;
965
+ /**
966
+ * <p>
967
+ * The name of the user account involved in the attack sequence.
968
+ * </p>
969
+ * @public
970
+ */
971
+ Name?: string | undefined;
972
+ }
973
+ /**
974
+ * <p>
975
+ * Contains information about the credentials used by the threat actor identified in an Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty generates an attack
976
+ * sequence finding when multiple events align to a potentially suspicious activity. To receive GuardDuty attack sequence findings in Security Hub, you
977
+ * must have GuardDuty and GuardDuty S3 Protection enabled. For more information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html">GuardDuty Extended Threat Detection </a> in the <i>Amazon GuardDuty User Guide</i>.</p>
978
+ * @public
979
+ */
980
+ export interface ActorUser {
981
+ /**
982
+ * <p>
983
+ * The name of the threat actor.
984
+ * </p>
985
+ * @public
986
+ */
987
+ Name?: string | undefined;
988
+ /**
989
+ * <p>
990
+ * The unique identifier of the threat actor.
991
+ * </p>
992
+ * @public
993
+ */
994
+ Uid?: string | undefined;
995
+ /**
996
+ * <p>
997
+ * The type of user.
998
+ * </p>
999
+ * @public
1000
+ */
1001
+ Type?: string | undefined;
1002
+ /**
1003
+ * <p>
1004
+ * Unique identifier of the threat actor’s user credentials.
1005
+ * </p>
1006
+ * @public
1007
+ */
1008
+ CredentialUid?: string | undefined;
1009
+ /**
1010
+ * <p>
1011
+ * The account of the threat actor.
1012
+ * </p>
1013
+ * @public
1014
+ */
1015
+ Account?: UserAccount | undefined;
1016
+ }
1017
+ /**
1018
+ * <p>
1019
+ * Information about the threat actor identified in an Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty generates an attack
1020
+ * sequence finding when multiple events align to a potentially suspicious activity. To receive GuardDuty attack sequence findings in Security Hub, you
1021
+ * must have GuardDuty and GuardDuty S3 Protection enabled. For more information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty-extended-threat-detection.html">GuardDuty Extended Threat Detection </a> in the <i>Amazon GuardDuty User Guide</i>.</p>
1022
+ * @public
1023
+ */
1024
+ export interface Actor {
1025
+ /**
1026
+ * <p>
1027
+ * The ID of the threat actor.
1028
+ * </p>
1029
+ * @public
1030
+ */
1031
+ Id?: string | undefined;
1032
+ /**
1033
+ * <p>
1034
+ * Contains information about the user credentials used by the threat actor.</p>
1035
+ * @public
1036
+ */
1037
+ User?: ActorUser | undefined;
1038
+ /**
1039
+ * <p>
1040
+ * Contains information about the user session where the activity initiated.</p>
1041
+ * @public
1042
+ */
1043
+ Session?: ActorSession | undefined;
1044
+ }
899
1045
  /**
900
1046
  * <p>An adjustment to the CVSS metric.</p>
901
1047
  * @public
@@ -11978,165 +12124,3 @@ export interface AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails {
11978
12124
  */
11979
12125
  Protocol?: string | undefined;
11980
12126
  }
11981
- /**
11982
- * <p>The private repository authentication credentials to use.</p>
11983
- * @public
11984
- */
11985
- export interface AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails {
11986
- /**
11987
- * <p>The ARN of the secret that contains the private repository credentials.</p>
11988
- * @public
11989
- */
11990
- CredentialsParameter?: string | undefined;
11991
- }
11992
- /**
11993
- * <p>A resource to assign to a container.</p>
11994
- * @public
11995
- */
11996
- export interface AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails {
11997
- /**
11998
- * <p>The type of resource to assign to a container. Valid values are <code>GPU</code> or <code>InferenceAccelerator</code>.</p>
11999
- * @public
12000
- */
12001
- Type?: string | undefined;
12002
- /**
12003
- * <p>The value for the specified resource type.</p>
12004
- * <p>For <code>GPU</code>, the value is the number of physical GPUs the Amazon ECS container agent
12005
- * reserves for the container.</p>
12006
- * <p>For <code>InferenceAccelerator</code>, the value should match the <code>DeviceName</code>
12007
- * attribute of an entry in <code>InferenceAccelerators</code>.</p>
12008
- * @public
12009
- */
12010
- Value?: string | undefined;
12011
- }
12012
- /**
12013
- * <p>A secret to pass to the container.</p>
12014
- * @public
12015
- */
12016
- export interface AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails {
12017
- /**
12018
- * <p>The name of the secret.</p>
12019
- * @public
12020
- */
12021
- Name?: string | undefined;
12022
- /**
12023
- * <p>The secret to expose to the container. The value is either the full ARN of the Secrets Manager
12024
- * secret or the full ARN of the parameter in the Systems Manager Parameter Store.</p>
12025
- * @public
12026
- */
12027
- ValueFrom?: string | undefined;
12028
- }
12029
- /**
12030
- * <p>A namespaced kernel parameter to set in the container.</p>
12031
- * @public
12032
- */
12033
- export interface AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails {
12034
- /**
12035
- * <p>The namespaced kernel parameter for which to set a value.</p>
12036
- * @public
12037
- */
12038
- Namespace?: string | undefined;
12039
- /**
12040
- * <p>The value of the parameter.</p>
12041
- * @public
12042
- */
12043
- Value?: string | undefined;
12044
- }
12045
- /**
12046
- * <p>A ulimit to set in the container.</p>
12047
- * @public
12048
- */
12049
- export interface AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails {
12050
- /**
12051
- * <p>The hard limit for the ulimit type.</p>
12052
- * @public
12053
- */
12054
- HardLimit?: number | undefined;
12055
- /**
12056
- * <p>The type of the ulimit. Valid values are as follows:</p>
12057
- * <ul>
12058
- * <li>
12059
- * <p>
12060
- * <code>core</code>
12061
- * </p>
12062
- * </li>
12063
- * <li>
12064
- * <p>
12065
- * <code>cpu</code>
12066
- * </p>
12067
- * </li>
12068
- * <li>
12069
- * <p>
12070
- * <code>data</code>
12071
- * </p>
12072
- * </li>
12073
- * <li>
12074
- * <p>
12075
- * <code>fsize</code>
12076
- * </p>
12077
- * </li>
12078
- * <li>
12079
- * <p>
12080
- * <code>locks</code>
12081
- * </p>
12082
- * </li>
12083
- * <li>
12084
- * <p>
12085
- * <code>memlock</code>
12086
- * </p>
12087
- * </li>
12088
- * <li>
12089
- * <p>
12090
- * <code>msgqueue</code>
12091
- * </p>
12092
- * </li>
12093
- * <li>
12094
- * <p>
12095
- * <code>nice</code>
12096
- * </p>
12097
- * </li>
12098
- * <li>
12099
- * <p>
12100
- * <code>nofile</code>
12101
- * </p>
12102
- * </li>
12103
- * <li>
12104
- * <p>
12105
- * <code>nproc</code>
12106
- * </p>
12107
- * </li>
12108
- * <li>
12109
- * <p>
12110
- * <code>rss</code>
12111
- * </p>
12112
- * </li>
12113
- * <li>
12114
- * <p>
12115
- * <code>rtprio</code>
12116
- * </p>
12117
- * </li>
12118
- * <li>
12119
- * <p>
12120
- * <code>rttime</code>
12121
- * </p>
12122
- * </li>
12123
- * <li>
12124
- * <p>
12125
- * <code>sigpending</code>
12126
- * </p>
12127
- * </li>
12128
- * <li>
12129
- * <p>
12130
- * <code>stack</code>
12131
- * </p>
12132
- * </li>
12133
- * </ul>
12134
- * @public
12135
- */
12136
- Name?: string | undefined;
12137
- /**
12138
- * <p>The soft limit for the ulimit type.</p>
12139
- * @public
12140
- */
12141
- SoftLimit?: number | undefined;
12142
- }