@aws-sdk/client-guardduty 3.445.0 → 3.449.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.
- package/dist-cjs/models/models_0.js +10 -1
- package/dist-cjs/protocols/Aws_restJson1.js +123 -0
- package/dist-es/models/models_0.js +9 -0
- package/dist-es/protocols/Aws_restJson1.js +123 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +68 -0
- package/dist-types/commands/ListMembersCommand.d.ts +2 -1
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListPublishingDestinationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListThreatIntelSetsCommand.d.ts +1 -1
- package/dist-types/commands/StartMalwareScanCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +271 -173
- package/dist-types/models/models_1.d.ts +178 -1
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPublishingDestinationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListThreatIntelSetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMalwareScanCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +65 -42
- package/dist-types/ts3.4/models/models_1.d.ts +45 -0
- package/package.json +12 -12
|
@@ -603,6 +603,107 @@ export interface KubernetesApiCallAction {
|
|
|
603
603
|
* <p>Parameters related to the Kubernetes API call action.</p>
|
|
604
604
|
*/
|
|
605
605
|
Parameters?: string;
|
|
606
|
+
/**
|
|
607
|
+
* @public
|
|
608
|
+
* <p>The resource component in the Kubernetes API call action.</p>
|
|
609
|
+
*/
|
|
610
|
+
Resource?: string;
|
|
611
|
+
/**
|
|
612
|
+
* @public
|
|
613
|
+
* <p>The name of the sub-resource in the Kubernetes API call action.</p>
|
|
614
|
+
*/
|
|
615
|
+
Subresource?: string;
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
* <p>The name of the namespace where the Kubernetes API call action takes place.</p>
|
|
619
|
+
*/
|
|
620
|
+
Namespace?: string;
|
|
621
|
+
/**
|
|
622
|
+
* @public
|
|
623
|
+
* <p>The name of the resource in the Kubernetes API call action.</p>
|
|
624
|
+
*/
|
|
625
|
+
ResourceName?: string;
|
|
626
|
+
}
|
|
627
|
+
/**
|
|
628
|
+
* @public
|
|
629
|
+
* <p>Information about the Kubernetes API for which you check if you have permission to call.</p>
|
|
630
|
+
*/
|
|
631
|
+
export interface KubernetesPermissionCheckedDetails {
|
|
632
|
+
/**
|
|
633
|
+
* @public
|
|
634
|
+
* <p>The verb component of the Kubernetes API call. For example, when you check whether or not you have the permission
|
|
635
|
+
* to call the <code>CreatePod</code> API, the verb component will be <code>Create</code>.</p>
|
|
636
|
+
*/
|
|
637
|
+
Verb?: string;
|
|
638
|
+
/**
|
|
639
|
+
* @public
|
|
640
|
+
* <p>The Kubernetes resource with which your Kubernetes API call will interact.</p>
|
|
641
|
+
*/
|
|
642
|
+
Resource?: string;
|
|
643
|
+
/**
|
|
644
|
+
* @public
|
|
645
|
+
* <p>The namespace where the Kubernetes API action will take place.</p>
|
|
646
|
+
*/
|
|
647
|
+
Namespace?: string;
|
|
648
|
+
/**
|
|
649
|
+
* @public
|
|
650
|
+
* <p>Information whether the user has the permission to call the Kubernetes API.</p>
|
|
651
|
+
*/
|
|
652
|
+
Allowed?: boolean;
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* @public
|
|
656
|
+
* <p>Contains information about the role binding that grants the permission defined in a Kubernetes role.</p>
|
|
657
|
+
*/
|
|
658
|
+
export interface KubernetesRoleBindingDetails {
|
|
659
|
+
/**
|
|
660
|
+
* @public
|
|
661
|
+
* <p>The kind of the role. For role binding, this value will be <code>RoleBinding</code>.</p>
|
|
662
|
+
*/
|
|
663
|
+
Kind?: string;
|
|
664
|
+
/**
|
|
665
|
+
* @public
|
|
666
|
+
* <p>The name of the <code>RoleBinding</code>.</p>
|
|
667
|
+
*/
|
|
668
|
+
Name?: string;
|
|
669
|
+
/**
|
|
670
|
+
* @public
|
|
671
|
+
* <p>The unique identifier of the role binding.</p>
|
|
672
|
+
*/
|
|
673
|
+
Uid?: string;
|
|
674
|
+
/**
|
|
675
|
+
* @public
|
|
676
|
+
* <p>The name of the role being referenced. This must match the name of the <code>Role</code>
|
|
677
|
+
* or <code>ClusterRole</code> that you want to bind to.</p>
|
|
678
|
+
*/
|
|
679
|
+
RoleRefName?: string;
|
|
680
|
+
/**
|
|
681
|
+
* @public
|
|
682
|
+
* <p>The type of the role being referenced. This could be either <code>Role</code> or
|
|
683
|
+
* <code>ClusterRole</code>.</p>
|
|
684
|
+
*/
|
|
685
|
+
RoleRefKind?: string;
|
|
686
|
+
}
|
|
687
|
+
/**
|
|
688
|
+
* @public
|
|
689
|
+
* <p>Information about the Kubernetes role name and role type.</p>
|
|
690
|
+
*/
|
|
691
|
+
export interface KubernetesRoleDetails {
|
|
692
|
+
/**
|
|
693
|
+
* @public
|
|
694
|
+
* <p>The kind of role. For this API, the value of <code>kind</code> will be <code>Role</code>.</p>
|
|
695
|
+
*/
|
|
696
|
+
Kind?: string;
|
|
697
|
+
/**
|
|
698
|
+
* @public
|
|
699
|
+
* <p>The name of the Kubernetes role.</p>
|
|
700
|
+
*/
|
|
701
|
+
Name?: string;
|
|
702
|
+
/**
|
|
703
|
+
* @public
|
|
704
|
+
* <p>The unique identifier of the Kubernetes role name.</p>
|
|
705
|
+
*/
|
|
706
|
+
Uid?: string;
|
|
606
707
|
}
|
|
607
708
|
/**
|
|
608
709
|
* @public
|
|
@@ -810,6 +911,21 @@ export interface Action {
|
|
|
810
911
|
* <p>Information about <code>RDS_LOGIN_ATTEMPT</code> action described in this finding.</p>
|
|
811
912
|
*/
|
|
812
913
|
RdsLoginAttemptAction?: RdsLoginAttemptAction;
|
|
914
|
+
/**
|
|
915
|
+
* @public
|
|
916
|
+
* <p>Information whether the user has the permission to use a specific Kubernetes API.</p>
|
|
917
|
+
*/
|
|
918
|
+
KubernetesPermissionCheckedDetails?: KubernetesPermissionCheckedDetails;
|
|
919
|
+
/**
|
|
920
|
+
* @public
|
|
921
|
+
* <p>Information about the role binding that grants the permission defined in a Kubernetes role.</p>
|
|
922
|
+
*/
|
|
923
|
+
KubernetesRoleBindingDetails?: KubernetesRoleBindingDetails;
|
|
924
|
+
/**
|
|
925
|
+
* @public
|
|
926
|
+
* <p>Information about the Kubernetes role name and role type.</p>
|
|
927
|
+
*/
|
|
928
|
+
KubernetesRoleDetails?: KubernetesRoleDetails;
|
|
813
929
|
}
|
|
814
930
|
/**
|
|
815
931
|
* @public
|
|
@@ -883,6 +999,91 @@ export interface Administrator {
|
|
|
883
999
|
*/
|
|
884
1000
|
InvitedAt?: string;
|
|
885
1001
|
}
|
|
1002
|
+
/**
|
|
1003
|
+
* @public
|
|
1004
|
+
* <p>Contains information about the observed behavior.</p>
|
|
1005
|
+
*/
|
|
1006
|
+
export interface Observations {
|
|
1007
|
+
/**
|
|
1008
|
+
* @public
|
|
1009
|
+
* <p>The text that was unusual.</p>
|
|
1010
|
+
*/
|
|
1011
|
+
Text?: string[];
|
|
1012
|
+
}
|
|
1013
|
+
/**
|
|
1014
|
+
* @public
|
|
1015
|
+
* @enum
|
|
1016
|
+
*/
|
|
1017
|
+
export declare const ProfileSubtype: {
|
|
1018
|
+
readonly FREQUENT: "FREQUENT";
|
|
1019
|
+
readonly INFREQUENT: "INFREQUENT";
|
|
1020
|
+
readonly RARE: "RARE";
|
|
1021
|
+
readonly UNSEEN: "UNSEEN";
|
|
1022
|
+
};
|
|
1023
|
+
/**
|
|
1024
|
+
* @public
|
|
1025
|
+
*/
|
|
1026
|
+
export type ProfileSubtype = (typeof ProfileSubtype)[keyof typeof ProfileSubtype];
|
|
1027
|
+
/**
|
|
1028
|
+
* @public
|
|
1029
|
+
* @enum
|
|
1030
|
+
*/
|
|
1031
|
+
export declare const ProfileType: {
|
|
1032
|
+
readonly FREQUENCY: "FREQUENCY";
|
|
1033
|
+
};
|
|
1034
|
+
/**
|
|
1035
|
+
* @public
|
|
1036
|
+
*/
|
|
1037
|
+
export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
|
|
1038
|
+
/**
|
|
1039
|
+
* @public
|
|
1040
|
+
* <p>Contains information about the unusual anomalies.</p>
|
|
1041
|
+
*/
|
|
1042
|
+
export interface AnomalyObject {
|
|
1043
|
+
/**
|
|
1044
|
+
* @public
|
|
1045
|
+
* <p>The type of behavior of the profile.</p>
|
|
1046
|
+
*/
|
|
1047
|
+
ProfileType?: ProfileType;
|
|
1048
|
+
/**
|
|
1049
|
+
* @public
|
|
1050
|
+
* <p>The frequency of the anomaly.</p>
|
|
1051
|
+
*/
|
|
1052
|
+
ProfileSubtype?: ProfileSubtype;
|
|
1053
|
+
/**
|
|
1054
|
+
* @public
|
|
1055
|
+
* <p>The recorded value.</p>
|
|
1056
|
+
*/
|
|
1057
|
+
Observations?: Observations;
|
|
1058
|
+
}
|
|
1059
|
+
/**
|
|
1060
|
+
* @public
|
|
1061
|
+
* <p>Contains information about the behavior of the anomaly that is new to GuardDuty.</p>
|
|
1062
|
+
*/
|
|
1063
|
+
export interface AnomalyUnusual {
|
|
1064
|
+
/**
|
|
1065
|
+
* @public
|
|
1066
|
+
* <p>The behavior of the anomalous activity that caused GuardDuty to
|
|
1067
|
+
* generate the finding.</p>
|
|
1068
|
+
*/
|
|
1069
|
+
Behavior?: Record<string, Record<string, AnomalyObject>>;
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
* @public
|
|
1073
|
+
* <p>Contains information about the anomalies.</p>
|
|
1074
|
+
*/
|
|
1075
|
+
export interface Anomaly {
|
|
1076
|
+
/**
|
|
1077
|
+
* @public
|
|
1078
|
+
* <p>Information about the types of profiles.</p>
|
|
1079
|
+
*/
|
|
1080
|
+
Profiles?: Record<string, Record<string, AnomalyObject[]>>;
|
|
1081
|
+
/**
|
|
1082
|
+
* @public
|
|
1083
|
+
* <p>Information about the behavior of the anomalies.</p>
|
|
1084
|
+
*/
|
|
1085
|
+
Unusual?: AnomalyUnusual;
|
|
1086
|
+
}
|
|
886
1087
|
/**
|
|
887
1088
|
* @public
|
|
888
1089
|
*/
|
|
@@ -1104,6 +1305,11 @@ export interface SecurityContext {
|
|
|
1104
1305
|
* <p>Whether the container is privileged.</p>
|
|
1105
1306
|
*/
|
|
1106
1307
|
Privileged?: boolean;
|
|
1308
|
+
/**
|
|
1309
|
+
* @public
|
|
1310
|
+
* <p>Whether or not a container or a Kubernetes pod is allowed to gain more privileges than its parent process.</p>
|
|
1311
|
+
*/
|
|
1312
|
+
AllowPrivilegeEscalation?: boolean;
|
|
1107
1313
|
}
|
|
1108
1314
|
/**
|
|
1109
1315
|
* @public
|
|
@@ -1933,6 +2139,9 @@ export interface CreateFilterRequest {
|
|
|
1933
2139
|
* <p>service.action.dnsRequestAction.domain</p>
|
|
1934
2140
|
* </li>
|
|
1935
2141
|
* <li>
|
|
2142
|
+
* <p>service.action.dnsRequestAction.domainWithSuffix</p>
|
|
2143
|
+
* </li>
|
|
2144
|
+
* <li>
|
|
1936
2145
|
* <p>service.action.networkConnectionAction.blocked</p>
|
|
1937
2146
|
* </li>
|
|
1938
2147
|
* <li>
|
|
@@ -1969,9 +2178,18 @@ export interface CreateFilterRequest {
|
|
|
1969
2178
|
* <p>service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV4</p>
|
|
1970
2179
|
* </li>
|
|
1971
2180
|
* <li>
|
|
2181
|
+
* <p>service.action.kubernetesApiCallAction.namespace</p>
|
|
2182
|
+
* </li>
|
|
2183
|
+
* <li>
|
|
2184
|
+
* <p>service.action.kubernetesApiCallAction.remoteIpDetails.organization.asn</p>
|
|
2185
|
+
* </li>
|
|
2186
|
+
* <li>
|
|
1972
2187
|
* <p>service.action.kubernetesApiCallAction.requestUri</p>
|
|
1973
2188
|
* </li>
|
|
1974
2189
|
* <li>
|
|
2190
|
+
* <p>service.action.kubernetesApiCallAction.statusCode</p>
|
|
2191
|
+
* </li>
|
|
2192
|
+
* <li>
|
|
1975
2193
|
* <p>service.action.networkConnectionAction.localIpDetails.ipAddressV4</p>
|
|
1976
2194
|
* </li>
|
|
1977
2195
|
* <li>
|
|
@@ -3407,6 +3625,18 @@ export interface Destination {
|
|
|
3407
3625
|
*/
|
|
3408
3626
|
Status: PublishingStatus | undefined;
|
|
3409
3627
|
}
|
|
3628
|
+
/**
|
|
3629
|
+
* @public
|
|
3630
|
+
* <p>Contains information about the detected behavior.</p>
|
|
3631
|
+
*/
|
|
3632
|
+
export interface Detection {
|
|
3633
|
+
/**
|
|
3634
|
+
* @public
|
|
3635
|
+
* <p>The details about the anomalous activity that caused GuardDuty to
|
|
3636
|
+
* generate the finding.</p>
|
|
3637
|
+
*/
|
|
3638
|
+
Anomaly?: Anomaly;
|
|
3639
|
+
}
|
|
3410
3640
|
/**
|
|
3411
3641
|
* @public
|
|
3412
3642
|
* <p>Information about the additional configuration.</p>
|
|
@@ -4222,6 +4452,22 @@ export interface InstanceDetails {
|
|
|
4222
4452
|
*/
|
|
4223
4453
|
Tags?: Tag[];
|
|
4224
4454
|
}
|
|
4455
|
+
/**
|
|
4456
|
+
* @public
|
|
4457
|
+
* <p>Contains information about the impersonated user.</p>
|
|
4458
|
+
*/
|
|
4459
|
+
export interface ImpersonatedUser {
|
|
4460
|
+
/**
|
|
4461
|
+
* @public
|
|
4462
|
+
* <p>Information about the <code>username</code> that was being impersonated.</p>
|
|
4463
|
+
*/
|
|
4464
|
+
Username?: string;
|
|
4465
|
+
/**
|
|
4466
|
+
* @public
|
|
4467
|
+
* <p>The <code>group</code> to which the user name belongs.</p>
|
|
4468
|
+
*/
|
|
4469
|
+
Groups?: string[];
|
|
4470
|
+
}
|
|
4225
4471
|
/**
|
|
4226
4472
|
* @public
|
|
4227
4473
|
* <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
|
|
@@ -4248,6 +4494,11 @@ export interface KubernetesUserDetails {
|
|
|
4248
4494
|
* when Kubernetes RBAC permissions are assigned to that role.</p>
|
|
4249
4495
|
*/
|
|
4250
4496
|
SessionName?: string[];
|
|
4497
|
+
/**
|
|
4498
|
+
* @public
|
|
4499
|
+
* <p>Information about the impersonated user.</p>
|
|
4500
|
+
*/
|
|
4501
|
+
ImpersonatedUser?: ImpersonatedUser;
|
|
4251
4502
|
}
|
|
4252
4503
|
/**
|
|
4253
4504
|
* @public
|
|
@@ -4289,6 +4540,21 @@ export interface KubernetesWorkloadDetails {
|
|
|
4289
4540
|
* <p>Volumes used by the Kubernetes workload.</p>
|
|
4290
4541
|
*/
|
|
4291
4542
|
Volumes?: Volume[];
|
|
4543
|
+
/**
|
|
4544
|
+
* @public
|
|
4545
|
+
* <p>The service account name that is associated with a Kubernetes workload.</p>
|
|
4546
|
+
*/
|
|
4547
|
+
ServiceAccountName?: string;
|
|
4548
|
+
/**
|
|
4549
|
+
* @public
|
|
4550
|
+
* <p>Whether the host IPC flag is enabled for the pods in the workload.</p>
|
|
4551
|
+
*/
|
|
4552
|
+
HostIPC?: boolean;
|
|
4553
|
+
/**
|
|
4554
|
+
* @public
|
|
4555
|
+
* <p>Whether the host PID flag is enabled for the pods in the workload. </p>
|
|
4556
|
+
*/
|
|
4557
|
+
HostPID?: boolean;
|
|
4292
4558
|
}
|
|
4293
4559
|
/**
|
|
4294
4560
|
* @public
|
|
@@ -4964,6 +5230,11 @@ export interface Service {
|
|
|
4964
5230
|
* finding</p>
|
|
4965
5231
|
*/
|
|
4966
5232
|
RuntimeDetails?: RuntimeDetails;
|
|
5233
|
+
/**
|
|
5234
|
+
* @public
|
|
5235
|
+
* <p>Contains information about the detected unusual behavior.</p>
|
|
5236
|
+
*/
|
|
5237
|
+
Detection?: Detection;
|
|
4967
5238
|
}
|
|
4968
5239
|
/**
|
|
4969
5240
|
* @public
|
|
@@ -6515,176 +6786,3 @@ export interface ListMembersRequest {
|
|
|
6515
6786
|
*/
|
|
6516
6787
|
OnlyAssociated?: string;
|
|
6517
6788
|
}
|
|
6518
|
-
/**
|
|
6519
|
-
* @public
|
|
6520
|
-
*/
|
|
6521
|
-
export interface ListMembersResponse {
|
|
6522
|
-
/**
|
|
6523
|
-
* @public
|
|
6524
|
-
* <p>A list of members.</p>
|
|
6525
|
-
*/
|
|
6526
|
-
Members?: Member[];
|
|
6527
|
-
/**
|
|
6528
|
-
* @public
|
|
6529
|
-
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
6530
|
-
* items.</p>
|
|
6531
|
-
*/
|
|
6532
|
-
NextToken?: string;
|
|
6533
|
-
}
|
|
6534
|
-
/**
|
|
6535
|
-
* @public
|
|
6536
|
-
*/
|
|
6537
|
-
export interface ListOrganizationAdminAccountsRequest {
|
|
6538
|
-
/**
|
|
6539
|
-
* @public
|
|
6540
|
-
* <p>The maximum number of results to return in the response.</p>
|
|
6541
|
-
*/
|
|
6542
|
-
MaxResults?: number;
|
|
6543
|
-
/**
|
|
6544
|
-
* @public
|
|
6545
|
-
* <p>A token to use for paginating results that are returned in the response. Set the value of
|
|
6546
|
-
* this parameter to null for the first request to a list action. For subsequent calls, use the
|
|
6547
|
-
* <code>NextToken</code> value returned from the previous request to continue listing results
|
|
6548
|
-
* after the first page.</p>
|
|
6549
|
-
*/
|
|
6550
|
-
NextToken?: string;
|
|
6551
|
-
}
|
|
6552
|
-
/**
|
|
6553
|
-
* @public
|
|
6554
|
-
*/
|
|
6555
|
-
export interface ListOrganizationAdminAccountsResponse {
|
|
6556
|
-
/**
|
|
6557
|
-
* @public
|
|
6558
|
-
* <p>A list of accounts configured as GuardDuty delegated administrators.</p>
|
|
6559
|
-
*/
|
|
6560
|
-
AdminAccounts?: AdminAccount[];
|
|
6561
|
-
/**
|
|
6562
|
-
* @public
|
|
6563
|
-
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
6564
|
-
* items.</p>
|
|
6565
|
-
*/
|
|
6566
|
-
NextToken?: string;
|
|
6567
|
-
}
|
|
6568
|
-
/**
|
|
6569
|
-
* @public
|
|
6570
|
-
*/
|
|
6571
|
-
export interface ListPublishingDestinationsRequest {
|
|
6572
|
-
/**
|
|
6573
|
-
* @public
|
|
6574
|
-
* <p>The ID of the detector to retrieve publishing destinations for.</p>
|
|
6575
|
-
*/
|
|
6576
|
-
DetectorId: string | undefined;
|
|
6577
|
-
/**
|
|
6578
|
-
* @public
|
|
6579
|
-
* <p>The maximum number of results to return in the response.</p>
|
|
6580
|
-
*/
|
|
6581
|
-
MaxResults?: number;
|
|
6582
|
-
/**
|
|
6583
|
-
* @public
|
|
6584
|
-
* <p>A token to use for paginating results that are returned in the response. Set the value of
|
|
6585
|
-
* this parameter to null for the first request to a list action. For subsequent calls, use the
|
|
6586
|
-
* <code>NextToken</code> value returned from the previous request to continue listing results
|
|
6587
|
-
* after the first page.</p>
|
|
6588
|
-
*/
|
|
6589
|
-
NextToken?: string;
|
|
6590
|
-
}
|
|
6591
|
-
/**
|
|
6592
|
-
* @public
|
|
6593
|
-
*/
|
|
6594
|
-
export interface ListPublishingDestinationsResponse {
|
|
6595
|
-
/**
|
|
6596
|
-
* @public
|
|
6597
|
-
* <p>A <code>Destinations</code> object that includes information about each publishing
|
|
6598
|
-
* destination returned.</p>
|
|
6599
|
-
*/
|
|
6600
|
-
Destinations: Destination[] | undefined;
|
|
6601
|
-
/**
|
|
6602
|
-
* @public
|
|
6603
|
-
* <p>A token to use for paginating results that are returned in the response. Set the value of
|
|
6604
|
-
* this parameter to null for the first request to a list action. For subsequent calls, use the
|
|
6605
|
-
* <code>NextToken</code> value returned from the previous request to continue listing results
|
|
6606
|
-
* after the first page.</p>
|
|
6607
|
-
*/
|
|
6608
|
-
NextToken?: string;
|
|
6609
|
-
}
|
|
6610
|
-
/**
|
|
6611
|
-
* @public
|
|
6612
|
-
*/
|
|
6613
|
-
export interface ListTagsForResourceRequest {
|
|
6614
|
-
/**
|
|
6615
|
-
* @public
|
|
6616
|
-
* <p>The Amazon Resource Name (ARN) for the given GuardDuty resource. </p>
|
|
6617
|
-
*/
|
|
6618
|
-
ResourceArn: string | undefined;
|
|
6619
|
-
}
|
|
6620
|
-
/**
|
|
6621
|
-
* @public
|
|
6622
|
-
*/
|
|
6623
|
-
export interface ListTagsForResourceResponse {
|
|
6624
|
-
/**
|
|
6625
|
-
* @public
|
|
6626
|
-
* <p>The tags associated with the resource.</p>
|
|
6627
|
-
*/
|
|
6628
|
-
Tags?: Record<string, string>;
|
|
6629
|
-
}
|
|
6630
|
-
/**
|
|
6631
|
-
* @public
|
|
6632
|
-
*/
|
|
6633
|
-
export interface ListThreatIntelSetsRequest {
|
|
6634
|
-
/**
|
|
6635
|
-
* @public
|
|
6636
|
-
* <p>The unique ID of the detector that the threatIntelSet is associated with.</p>
|
|
6637
|
-
*/
|
|
6638
|
-
DetectorId: string | undefined;
|
|
6639
|
-
/**
|
|
6640
|
-
* @public
|
|
6641
|
-
* <p>You can use this parameter to indicate the maximum number of items that you want in the
|
|
6642
|
-
* response. The default value is 50. The maximum value is 50.</p>
|
|
6643
|
-
*/
|
|
6644
|
-
MaxResults?: number;
|
|
6645
|
-
/**
|
|
6646
|
-
* @public
|
|
6647
|
-
* <p>You can use this parameter to paginate results in the response. Set the value of this
|
|
6648
|
-
* parameter to null on your first call to the list action. For subsequent calls to the action,
|
|
6649
|
-
* fill nextToken in the request with the value of NextToken from the previous response to
|
|
6650
|
-
* continue listing data.</p>
|
|
6651
|
-
*/
|
|
6652
|
-
NextToken?: string;
|
|
6653
|
-
}
|
|
6654
|
-
/**
|
|
6655
|
-
* @public
|
|
6656
|
-
*/
|
|
6657
|
-
export interface ListThreatIntelSetsResponse {
|
|
6658
|
-
/**
|
|
6659
|
-
* @public
|
|
6660
|
-
* <p>The IDs of the ThreatIntelSet resources.</p>
|
|
6661
|
-
*/
|
|
6662
|
-
ThreatIntelSetIds: string[] | undefined;
|
|
6663
|
-
/**
|
|
6664
|
-
* @public
|
|
6665
|
-
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
6666
|
-
* items.</p>
|
|
6667
|
-
*/
|
|
6668
|
-
NextToken?: string;
|
|
6669
|
-
}
|
|
6670
|
-
/**
|
|
6671
|
-
* @public
|
|
6672
|
-
*/
|
|
6673
|
-
export interface StartMalwareScanRequest {
|
|
6674
|
-
/**
|
|
6675
|
-
* @public
|
|
6676
|
-
* <p>Amazon Resource Name (ARN) of the resource for which you invoked the API.</p>
|
|
6677
|
-
*/
|
|
6678
|
-
ResourceArn: string | undefined;
|
|
6679
|
-
}
|
|
6680
|
-
/**
|
|
6681
|
-
* @public
|
|
6682
|
-
*/
|
|
6683
|
-
export interface StartMalwareScanResponse {
|
|
6684
|
-
/**
|
|
6685
|
-
* @public
|
|
6686
|
-
* <p>A unique identifier that gets generated when you invoke the API without any error. Each malware scan has
|
|
6687
|
-
* a corresponding scan ID. Using this scan ID, you can monitor the status of your malware scan.</p>
|
|
6688
|
-
*/
|
|
6689
|
-
ScanId?: string;
|
|
6690
|
-
}
|
|
@@ -1,4 +1,181 @@
|
|
|
1
|
-
import { AutoEnableMembers, DataSourceConfigurations, DestinationProperties, DetectorFeatureConfiguration, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingCriteria, FindingPublishingFrequency, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, ScanResourceCriteria, UnprocessedAccount } from "./models_0";
|
|
1
|
+
import { AdminAccount, AutoEnableMembers, DataSourceConfigurations, Destination, DestinationProperties, DetectorFeatureConfiguration, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingCriteria, FindingPublishingFrequency, Member, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, ScanResourceCriteria, UnprocessedAccount } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ListMembersResponse {
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
* <p>A list of members.</p>
|
|
9
|
+
* <note>
|
|
10
|
+
* <p>The values for <code>email</code> and <code>invitedAt</code> are available
|
|
11
|
+
* only if the member accounts are added by invitation.</p>
|
|
12
|
+
* </note>
|
|
13
|
+
*/
|
|
14
|
+
Members?: Member[];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
18
|
+
* items.</p>
|
|
19
|
+
*/
|
|
20
|
+
NextToken?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export interface ListOrganizationAdminAccountsRequest {
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* <p>The maximum number of results to return in the response.</p>
|
|
29
|
+
*/
|
|
30
|
+
MaxResults?: number;
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* <p>A token to use for paginating results that are returned in the response. Set the value of
|
|
34
|
+
* this parameter to null for the first request to a list action. For subsequent calls, use the
|
|
35
|
+
* <code>NextToken</code> value returned from the previous request to continue listing results
|
|
36
|
+
* after the first page.</p>
|
|
37
|
+
*/
|
|
38
|
+
NextToken?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export interface ListOrganizationAdminAccountsResponse {
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
* <p>A list of accounts configured as GuardDuty delegated administrators.</p>
|
|
47
|
+
*/
|
|
48
|
+
AdminAccounts?: AdminAccount[];
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
52
|
+
* items.</p>
|
|
53
|
+
*/
|
|
54
|
+
NextToken?: string;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export interface ListPublishingDestinationsRequest {
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* <p>The ID of the detector to retrieve publishing destinations for.</p>
|
|
63
|
+
*/
|
|
64
|
+
DetectorId: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* <p>The maximum number of results to return in the response.</p>
|
|
68
|
+
*/
|
|
69
|
+
MaxResults?: number;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
* <p>A token to use for paginating results that are returned in the response. Set the value of
|
|
73
|
+
* this parameter to null for the first request to a list action. For subsequent calls, use the
|
|
74
|
+
* <code>NextToken</code> value returned from the previous request to continue listing results
|
|
75
|
+
* after the first page.</p>
|
|
76
|
+
*/
|
|
77
|
+
NextToken?: string;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export interface ListPublishingDestinationsResponse {
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
* <p>A <code>Destinations</code> object that includes information about each publishing
|
|
86
|
+
* destination returned.</p>
|
|
87
|
+
*/
|
|
88
|
+
Destinations: Destination[] | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
* <p>A token to use for paginating results that are returned in the response. Set the value of
|
|
92
|
+
* this parameter to null for the first request to a list action. For subsequent calls, use the
|
|
93
|
+
* <code>NextToken</code> value returned from the previous request to continue listing results
|
|
94
|
+
* after the first page.</p>
|
|
95
|
+
*/
|
|
96
|
+
NextToken?: string;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export interface ListTagsForResourceRequest {
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* <p>The Amazon Resource Name (ARN) for the given GuardDuty resource. </p>
|
|
105
|
+
*/
|
|
106
|
+
ResourceArn: string | undefined;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface ListTagsForResourceResponse {
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
* <p>The tags associated with the resource.</p>
|
|
115
|
+
*/
|
|
116
|
+
Tags?: Record<string, string>;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export interface ListThreatIntelSetsRequest {
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
* <p>The unique ID of the detector that the threatIntelSet is associated with.</p>
|
|
125
|
+
*/
|
|
126
|
+
DetectorId: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
* <p>You can use this parameter to indicate the maximum number of items that you want in the
|
|
130
|
+
* response. The default value is 50. The maximum value is 50.</p>
|
|
131
|
+
*/
|
|
132
|
+
MaxResults?: number;
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
* <p>You can use this parameter to paginate results in the response. Set the value of this
|
|
136
|
+
* parameter to null on your first call to the list action. For subsequent calls to the action,
|
|
137
|
+
* fill nextToken in the request with the value of NextToken from the previous response to
|
|
138
|
+
* continue listing data.</p>
|
|
139
|
+
*/
|
|
140
|
+
NextToken?: string;
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export interface ListThreatIntelSetsResponse {
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
* <p>The IDs of the ThreatIntelSet resources.</p>
|
|
149
|
+
*/
|
|
150
|
+
ThreatIntelSetIds: string[] | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
* <p>The pagination parameter to be used on the next list operation to retrieve more
|
|
154
|
+
* items.</p>
|
|
155
|
+
*/
|
|
156
|
+
NextToken?: string;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export interface StartMalwareScanRequest {
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
* <p>Amazon Resource Name (ARN) of the resource for which you invoked the API.</p>
|
|
165
|
+
*/
|
|
166
|
+
ResourceArn: string | undefined;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export interface StartMalwareScanResponse {
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* <p>A unique identifier that gets generated when you invoke the API without any error. Each malware scan has
|
|
175
|
+
* a corresponding scan ID. Using this scan ID, you can monitor the status of your malware scan.</p>
|
|
176
|
+
*/
|
|
177
|
+
ScanId?: string;
|
|
178
|
+
}
|
|
2
179
|
/**
|
|
3
180
|
* @public
|
|
4
181
|
*/
|