@aws-sdk/client-guardduty 3.292.0 → 3.294.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 +111 -6
- package/dist-cjs/pagination/DescribeOrganizationConfigurationPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +226 -0
- package/dist-es/models/models_0.js +93 -0
- package/dist-es/pagination/DescribeOrganizationConfigurationPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +226 -0
- package/dist-types/GuardDuty.d.ts +2 -1
- package/dist-types/commands/CreateFilterCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +400 -5
- package/dist-types/pagination/DescribeOrganizationConfigurationPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +163 -2
- package/dist-types/ts3.4/pagination/DescribeOrganizationConfigurationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/package.json +7 -7
|
@@ -61,9 +61,23 @@ export interface DataSourcesFreeTrial {
|
|
|
61
61
|
Kubernetes?: KubernetesDataSourceFreeTrial;
|
|
62
62
|
MalwareProtection?: MalwareProtectionDataSourceFreeTrial;
|
|
63
63
|
}
|
|
64
|
+
export declare enum FreeTrialFeatureResult {
|
|
65
|
+
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
66
|
+
DNS_LOGS = "DNS_LOGS",
|
|
67
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
68
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
69
|
+
FLOW_LOGS = "FLOW_LOGS",
|
|
70
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
71
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS",
|
|
72
|
+
}
|
|
73
|
+
export interface FreeTrialFeatureConfigurationResult {
|
|
74
|
+
Name?: FreeTrialFeatureResult | string;
|
|
75
|
+
FreeTrialDaysRemaining?: number;
|
|
76
|
+
}
|
|
64
77
|
export interface AccountFreeTrialInfo {
|
|
65
78
|
AccountId?: string;
|
|
66
79
|
DataSources?: DataSourcesFreeTrial;
|
|
80
|
+
Features?: FreeTrialFeatureConfigurationResult[];
|
|
67
81
|
}
|
|
68
82
|
export interface BlockPublicAccess {
|
|
69
83
|
IgnorePublicAcls?: boolean;
|
|
@@ -159,6 +173,16 @@ export interface PortProbeAction {
|
|
|
159
173
|
Blocked?: boolean;
|
|
160
174
|
PortProbeDetails?: PortProbeDetail[];
|
|
161
175
|
}
|
|
176
|
+
export interface LoginAttribute {
|
|
177
|
+
User?: string;
|
|
178
|
+
Application?: string;
|
|
179
|
+
FailedLoginAttempts?: number;
|
|
180
|
+
SuccessfulLoginAttempts?: number;
|
|
181
|
+
}
|
|
182
|
+
export interface RdsLoginAttemptAction {
|
|
183
|
+
RemoteIpDetails?: RemoteIpDetails;
|
|
184
|
+
LoginAttributes?: LoginAttribute[];
|
|
185
|
+
}
|
|
162
186
|
export interface Action {
|
|
163
187
|
ActionType?: string;
|
|
164
188
|
AwsApiCallAction?: AwsApiCallAction;
|
|
@@ -166,6 +190,7 @@ export interface Action {
|
|
|
166
190
|
NetworkConnectionAction?: NetworkConnectionAction;
|
|
167
191
|
PortProbeAction?: PortProbeAction;
|
|
168
192
|
KubernetesApiCallAction?: KubernetesApiCallAction;
|
|
193
|
+
RdsLoginAttemptAction?: RdsLoginAttemptAction;
|
|
169
194
|
}
|
|
170
195
|
export declare enum AdminStatus {
|
|
171
196
|
DISABLE_IN_PROGRESS = "DISABLE_IN_PROGRESS",
|
|
@@ -252,6 +277,20 @@ export interface DataSourceConfigurations {
|
|
|
252
277
|
Kubernetes?: KubernetesConfiguration;
|
|
253
278
|
MalwareProtection?: MalwareProtectionConfiguration;
|
|
254
279
|
}
|
|
280
|
+
export declare enum DetectorFeature {
|
|
281
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
282
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
283
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
284
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS",
|
|
285
|
+
}
|
|
286
|
+
export declare enum FeatureStatus {
|
|
287
|
+
DISABLED = "DISABLED",
|
|
288
|
+
ENABLED = "ENABLED",
|
|
289
|
+
}
|
|
290
|
+
export interface DetectorFeatureConfiguration {
|
|
291
|
+
Name?: DetectorFeature | string;
|
|
292
|
+
Status?: FeatureStatus | string;
|
|
293
|
+
}
|
|
255
294
|
export declare enum FindingPublishingFrequency {
|
|
256
295
|
FIFTEEN_MINUTES = "FIFTEEN_MINUTES",
|
|
257
296
|
ONE_HOUR = "ONE_HOUR",
|
|
@@ -263,6 +302,7 @@ export interface CreateDetectorRequest {
|
|
|
263
302
|
FindingPublishingFrequency?: FindingPublishingFrequency | string;
|
|
264
303
|
DataSources?: DataSourceConfigurations;
|
|
265
304
|
Tags?: Record<string, string>;
|
|
305
|
+
Features?: DetectorFeatureConfiguration[];
|
|
266
306
|
}
|
|
267
307
|
export interface EbsVolumesResult {
|
|
268
308
|
Status?: DataSourceStatus | string;
|
|
@@ -537,6 +577,8 @@ export interface DescribeMalwareScansResponse {
|
|
|
537
577
|
}
|
|
538
578
|
export interface DescribeOrganizationConfigurationRequest {
|
|
539
579
|
DetectorId: string | undefined;
|
|
580
|
+
MaxResults?: number;
|
|
581
|
+
NextToken?: string;
|
|
540
582
|
}
|
|
541
583
|
export interface OrganizationKubernetesAuditLogsConfigurationResult {
|
|
542
584
|
AutoEnable: boolean | undefined;
|
|
@@ -561,10 +603,26 @@ export interface OrganizationDataSourceConfigurationsResult {
|
|
|
561
603
|
Kubernetes?: OrganizationKubernetesConfigurationResult;
|
|
562
604
|
MalwareProtection?: OrganizationMalwareProtectionConfigurationResult;
|
|
563
605
|
}
|
|
606
|
+
export declare enum OrgFeatureStatus {
|
|
607
|
+
NEW = "NEW",
|
|
608
|
+
NONE = "NONE",
|
|
609
|
+
}
|
|
610
|
+
export declare enum OrgFeature {
|
|
611
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
612
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
613
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
614
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS",
|
|
615
|
+
}
|
|
616
|
+
export interface OrganizationFeatureConfigurationResult {
|
|
617
|
+
Name?: OrgFeature | string;
|
|
618
|
+
AutoEnable?: OrgFeatureStatus | string;
|
|
619
|
+
}
|
|
564
620
|
export interface DescribeOrganizationConfigurationResponse {
|
|
565
621
|
AutoEnable: boolean | undefined;
|
|
566
622
|
MemberAccountLimitReached: boolean | undefined;
|
|
567
623
|
DataSources?: OrganizationDataSourceConfigurationsResult;
|
|
624
|
+
Features?: OrganizationFeatureConfigurationResult[];
|
|
625
|
+
NextToken?: string;
|
|
568
626
|
}
|
|
569
627
|
export interface DescribePublishingDestinationRequest {
|
|
570
628
|
DetectorId: string | undefined;
|
|
@@ -588,6 +646,20 @@ export interface Destination {
|
|
|
588
646
|
DestinationType: DestinationType | string | undefined;
|
|
589
647
|
Status: PublishingStatus | string | undefined;
|
|
590
648
|
}
|
|
649
|
+
export declare enum DetectorFeatureResult {
|
|
650
|
+
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
651
|
+
DNS_LOGS = "DNS_LOGS",
|
|
652
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
653
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
654
|
+
FLOW_LOGS = "FLOW_LOGS",
|
|
655
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
656
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS",
|
|
657
|
+
}
|
|
658
|
+
export interface DetectorFeatureConfigurationResult {
|
|
659
|
+
Name?: DetectorFeatureResult | string;
|
|
660
|
+
Status?: FeatureStatus | string;
|
|
661
|
+
UpdatedAt?: Date;
|
|
662
|
+
}
|
|
591
663
|
export declare enum DetectorStatus {
|
|
592
664
|
DISABLED = "DISABLED",
|
|
593
665
|
ENABLED = "ENABLED",
|
|
@@ -781,6 +853,21 @@ export interface KubernetesDetails {
|
|
|
781
853
|
KubernetesUserDetails?: KubernetesUserDetails;
|
|
782
854
|
KubernetesWorkloadDetails?: KubernetesWorkloadDetails;
|
|
783
855
|
}
|
|
856
|
+
export interface RdsDbInstanceDetails {
|
|
857
|
+
DbInstanceIdentifier?: string;
|
|
858
|
+
Engine?: string;
|
|
859
|
+
EngineVersion?: string;
|
|
860
|
+
DbClusterIdentifier?: string;
|
|
861
|
+
DbInstanceArn?: string;
|
|
862
|
+
Tags?: Tag[];
|
|
863
|
+
}
|
|
864
|
+
export interface RdsDbUserDetails {
|
|
865
|
+
User?: string;
|
|
866
|
+
Application?: string;
|
|
867
|
+
Database?: string;
|
|
868
|
+
Ssl?: string;
|
|
869
|
+
AuthMethod?: string;
|
|
870
|
+
}
|
|
784
871
|
export interface Owner {
|
|
785
872
|
Id?: string;
|
|
786
873
|
}
|
|
@@ -812,6 +899,8 @@ export interface Resource {
|
|
|
812
899
|
EbsVolumeDetails?: EbsVolumeDetails;
|
|
813
900
|
EcsClusterDetails?: EcsClusterDetails;
|
|
814
901
|
ContainerDetails?: Container;
|
|
902
|
+
RdsDbInstanceDetails?: RdsDbInstanceDetails;
|
|
903
|
+
RdsDbUserDetails?: RdsDbUserDetails;
|
|
815
904
|
}
|
|
816
905
|
export interface ServiceAdditionalInfo {
|
|
817
906
|
Value?: string;
|
|
@@ -872,6 +961,7 @@ export interface GetDetectorResponse {
|
|
|
872
961
|
UpdatedAt?: string;
|
|
873
962
|
DataSources?: DataSourceConfigurationsResult;
|
|
874
963
|
Tags?: Record<string, string>;
|
|
964
|
+
Features?: DetectorFeatureConfigurationResult[];
|
|
875
965
|
}
|
|
876
966
|
export interface GetFilterRequest {
|
|
877
967
|
DetectorId: string | undefined;
|
|
@@ -962,9 +1052,15 @@ export interface GetMemberDetectorsRequest {
|
|
|
962
1052
|
DetectorId: string | undefined;
|
|
963
1053
|
AccountIds: string[] | undefined;
|
|
964
1054
|
}
|
|
1055
|
+
export interface MemberFeaturesConfigurationResult {
|
|
1056
|
+
Name?: OrgFeature | string;
|
|
1057
|
+
Status?: FeatureStatus | string;
|
|
1058
|
+
UpdatedAt?: Date;
|
|
1059
|
+
}
|
|
965
1060
|
export interface MemberDataSourceConfiguration {
|
|
966
1061
|
AccountId: string | undefined;
|
|
967
|
-
DataSources
|
|
1062
|
+
DataSources?: DataSourceConfigurationsResult;
|
|
1063
|
+
Features?: MemberFeaturesConfigurationResult[];
|
|
968
1064
|
}
|
|
969
1065
|
export interface GetMemberDetectorsResponse {
|
|
970
1066
|
MemberDataSourceConfigurations: MemberDataSourceConfiguration[] | undefined;
|
|
@@ -1016,14 +1112,27 @@ export interface GetThreatIntelSetResponse {
|
|
|
1016
1112
|
Status: ThreatIntelSetStatus | string | undefined;
|
|
1017
1113
|
Tags?: Record<string, string>;
|
|
1018
1114
|
}
|
|
1115
|
+
export declare enum UsageFeature {
|
|
1116
|
+
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
1117
|
+
DNS_LOGS = "DNS_LOGS",
|
|
1118
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
1119
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
1120
|
+
EKS_RUNTIME_MONITORING = "EKS_RUNTIME_MONITORING",
|
|
1121
|
+
FLOW_LOGS = "FLOW_LOGS",
|
|
1122
|
+
LAMBDA_NETWORK_LOGS = "LAMBDA_NETWORK_LOGS",
|
|
1123
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
1124
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS",
|
|
1125
|
+
}
|
|
1019
1126
|
export interface UsageCriteria {
|
|
1020
1127
|
AccountIds?: string[];
|
|
1021
|
-
DataSources
|
|
1128
|
+
DataSources?: (DataSource | string)[];
|
|
1022
1129
|
Resources?: string[];
|
|
1130
|
+
Features?: (UsageFeature | string)[];
|
|
1023
1131
|
}
|
|
1024
1132
|
export declare enum UsageStatisticType {
|
|
1025
1133
|
SUM_BY_ACCOUNT = "SUM_BY_ACCOUNT",
|
|
1026
1134
|
SUM_BY_DATA_SOURCE = "SUM_BY_DATA_SOURCE",
|
|
1135
|
+
SUM_BY_FEATURES = "SUM_BY_FEATURES",
|
|
1027
1136
|
SUM_BY_RESOURCE = "SUM_BY_RESOURCE",
|
|
1028
1137
|
TOP_RESOURCES = "TOP_RESOURCES",
|
|
1029
1138
|
}
|
|
@@ -1047,6 +1156,10 @@ export interface UsageDataSourceResult {
|
|
|
1047
1156
|
DataSource?: DataSource | string;
|
|
1048
1157
|
Total?: Total;
|
|
1049
1158
|
}
|
|
1159
|
+
export interface UsageFeatureResult {
|
|
1160
|
+
Feature?: UsageFeature | string;
|
|
1161
|
+
Total?: Total;
|
|
1162
|
+
}
|
|
1050
1163
|
export interface UsageResourceResult {
|
|
1051
1164
|
Resource?: string;
|
|
1052
1165
|
Total?: Total;
|
|
@@ -1056,6 +1169,7 @@ export interface UsageStatistics {
|
|
|
1056
1169
|
SumByDataSource?: UsageDataSourceResult[];
|
|
1057
1170
|
SumByResource?: UsageResourceResult[];
|
|
1058
1171
|
TopResources?: UsageResourceResult[];
|
|
1172
|
+
SumByFeature?: UsageFeatureResult[];
|
|
1059
1173
|
}
|
|
1060
1174
|
export interface GetUsageStatisticsResponse {
|
|
1061
1175
|
UsageStatistics?: UsageStatistics;
|
|
@@ -1197,6 +1311,7 @@ export interface UpdateDetectorRequest {
|
|
|
1197
1311
|
Enable?: boolean;
|
|
1198
1312
|
FindingPublishingFrequency?: FindingPublishingFrequency | string;
|
|
1199
1313
|
DataSources?: DataSourceConfigurations;
|
|
1314
|
+
Features?: DetectorFeatureConfiguration[];
|
|
1200
1315
|
}
|
|
1201
1316
|
export interface UpdateDetectorResponse {}
|
|
1202
1317
|
export interface UpdateFilterRequest {
|
|
@@ -1231,10 +1346,15 @@ export interface UpdateMalwareScanSettingsRequest {
|
|
|
1231
1346
|
EbsSnapshotPreservation?: EbsSnapshotPreservation | string;
|
|
1232
1347
|
}
|
|
1233
1348
|
export interface UpdateMalwareScanSettingsResponse {}
|
|
1349
|
+
export interface MemberFeaturesConfiguration {
|
|
1350
|
+
Name?: OrgFeature | string;
|
|
1351
|
+
Status?: FeatureStatus | string;
|
|
1352
|
+
}
|
|
1234
1353
|
export interface UpdateMemberDetectorsRequest {
|
|
1235
1354
|
DetectorId: string | undefined;
|
|
1236
1355
|
AccountIds: string[] | undefined;
|
|
1237
1356
|
DataSources?: DataSourceConfigurations;
|
|
1357
|
+
Features?: MemberFeaturesConfiguration[];
|
|
1238
1358
|
}
|
|
1239
1359
|
export interface UpdateMemberDetectorsResponse {
|
|
1240
1360
|
UnprocessedAccounts: UnprocessedAccount[] | undefined;
|
|
@@ -1262,10 +1382,15 @@ export interface OrganizationDataSourceConfigurations {
|
|
|
1262
1382
|
Kubernetes?: OrganizationKubernetesConfiguration;
|
|
1263
1383
|
MalwareProtection?: OrganizationMalwareProtectionConfiguration;
|
|
1264
1384
|
}
|
|
1385
|
+
export interface OrganizationFeatureConfiguration {
|
|
1386
|
+
Name?: OrgFeature | string;
|
|
1387
|
+
AutoEnable?: OrgFeatureStatus | string;
|
|
1388
|
+
}
|
|
1265
1389
|
export interface UpdateOrganizationConfigurationRequest {
|
|
1266
1390
|
DetectorId: string | undefined;
|
|
1267
1391
|
AutoEnable: boolean | undefined;
|
|
1268
1392
|
DataSources?: OrganizationDataSourceConfigurations;
|
|
1393
|
+
Features?: OrganizationFeatureConfiguration[];
|
|
1269
1394
|
}
|
|
1270
1395
|
export interface UpdateOrganizationConfigurationResponse {}
|
|
1271
1396
|
export interface UpdatePublishingDestinationRequest {
|
|
@@ -1315,6 +1440,9 @@ export declare const MalwareProtectionDataSourceFreeTrialFilterSensitiveLog: (
|
|
|
1315
1440
|
export declare const DataSourcesFreeTrialFilterSensitiveLog: (
|
|
1316
1441
|
obj: DataSourcesFreeTrial
|
|
1317
1442
|
) => any;
|
|
1443
|
+
export declare const FreeTrialFeatureConfigurationResultFilterSensitiveLog: (
|
|
1444
|
+
obj: FreeTrialFeatureConfigurationResult
|
|
1445
|
+
) => any;
|
|
1318
1446
|
export declare const AccountFreeTrialInfoFilterSensitiveLog: (
|
|
1319
1447
|
obj: AccountFreeTrialInfo
|
|
1320
1448
|
) => any;
|
|
@@ -1364,6 +1492,12 @@ export declare const PortProbeDetailFilterSensitiveLog: (
|
|
|
1364
1492
|
export declare const PortProbeActionFilterSensitiveLog: (
|
|
1365
1493
|
obj: PortProbeAction
|
|
1366
1494
|
) => any;
|
|
1495
|
+
export declare const LoginAttributeFilterSensitiveLog: (
|
|
1496
|
+
obj: LoginAttribute
|
|
1497
|
+
) => any;
|
|
1498
|
+
export declare const RdsLoginAttemptActionFilterSensitiveLog: (
|
|
1499
|
+
obj: RdsLoginAttemptAction
|
|
1500
|
+
) => any;
|
|
1367
1501
|
export declare const ActionFilterSensitiveLog: (obj: Action) => any;
|
|
1368
1502
|
export declare const AdminAccountFilterSensitiveLog: (obj: AdminAccount) => any;
|
|
1369
1503
|
export declare const AdministratorFilterSensitiveLog: (
|
|
@@ -1406,6 +1540,9 @@ export declare const S3LogsConfigurationFilterSensitiveLog: (
|
|
|
1406
1540
|
export declare const DataSourceConfigurationsFilterSensitiveLog: (
|
|
1407
1541
|
obj: DataSourceConfigurations
|
|
1408
1542
|
) => any;
|
|
1543
|
+
export declare const DetectorFeatureConfigurationFilterSensitiveLog: (
|
|
1544
|
+
obj: DetectorFeatureConfiguration
|
|
1545
|
+
) => any;
|
|
1409
1546
|
export declare const CreateDetectorRequestFilterSensitiveLog: (
|
|
1410
1547
|
obj: CreateDetectorRequest
|
|
1411
1548
|
) => any;
|
|
@@ -1589,6 +1726,9 @@ export declare const OrganizationS3LogsConfigurationResultFilterSensitiveLog: (
|
|
|
1589
1726
|
export declare const OrganizationDataSourceConfigurationsResultFilterSensitiveLog: (
|
|
1590
1727
|
obj: OrganizationDataSourceConfigurationsResult
|
|
1591
1728
|
) => any;
|
|
1729
|
+
export declare const OrganizationFeatureConfigurationResultFilterSensitiveLog: (
|
|
1730
|
+
obj: OrganizationFeatureConfigurationResult
|
|
1731
|
+
) => any;
|
|
1592
1732
|
export declare const DescribeOrganizationConfigurationResponseFilterSensitiveLog: (
|
|
1593
1733
|
obj: DescribeOrganizationConfigurationResponse
|
|
1594
1734
|
) => any;
|
|
@@ -1599,6 +1739,9 @@ export declare const DescribePublishingDestinationResponseFilterSensitiveLog: (
|
|
|
1599
1739
|
obj: DescribePublishingDestinationResponse
|
|
1600
1740
|
) => any;
|
|
1601
1741
|
export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
|
|
1742
|
+
export declare const DetectorFeatureConfigurationResultFilterSensitiveLog: (
|
|
1743
|
+
obj: DetectorFeatureConfigurationResult
|
|
1744
|
+
) => any;
|
|
1602
1745
|
export declare const DisableOrganizationAdminAccountRequestFilterSensitiveLog: (
|
|
1603
1746
|
obj: DisableOrganizationAdminAccountRequest
|
|
1604
1747
|
) => any;
|
|
@@ -1695,6 +1838,12 @@ export declare const KubernetesWorkloadDetailsFilterSensitiveLog: (
|
|
|
1695
1838
|
export declare const KubernetesDetailsFilterSensitiveLog: (
|
|
1696
1839
|
obj: KubernetesDetails
|
|
1697
1840
|
) => any;
|
|
1841
|
+
export declare const RdsDbInstanceDetailsFilterSensitiveLog: (
|
|
1842
|
+
obj: RdsDbInstanceDetails
|
|
1843
|
+
) => any;
|
|
1844
|
+
export declare const RdsDbUserDetailsFilterSensitiveLog: (
|
|
1845
|
+
obj: RdsDbUserDetails
|
|
1846
|
+
) => any;
|
|
1698
1847
|
export declare const OwnerFilterSensitiveLog: (obj: Owner) => any;
|
|
1699
1848
|
export declare const PermissionConfigurationFilterSensitiveLog: (
|
|
1700
1849
|
obj: PermissionConfiguration
|
|
@@ -1779,6 +1928,9 @@ export declare const GetMasterAccountResponseFilterSensitiveLog: (
|
|
|
1779
1928
|
export declare const GetMemberDetectorsRequestFilterSensitiveLog: (
|
|
1780
1929
|
obj: GetMemberDetectorsRequest
|
|
1781
1930
|
) => any;
|
|
1931
|
+
export declare const MemberFeaturesConfigurationResultFilterSensitiveLog: (
|
|
1932
|
+
obj: MemberFeaturesConfigurationResult
|
|
1933
|
+
) => any;
|
|
1782
1934
|
export declare const MemberDataSourceConfigurationFilterSensitiveLog: (
|
|
1783
1935
|
obj: MemberDataSourceConfiguration
|
|
1784
1936
|
) => any;
|
|
@@ -1817,6 +1969,9 @@ export declare const UsageAccountResultFilterSensitiveLog: (
|
|
|
1817
1969
|
export declare const UsageDataSourceResultFilterSensitiveLog: (
|
|
1818
1970
|
obj: UsageDataSourceResult
|
|
1819
1971
|
) => any;
|
|
1972
|
+
export declare const UsageFeatureResultFilterSensitiveLog: (
|
|
1973
|
+
obj: UsageFeatureResult
|
|
1974
|
+
) => any;
|
|
1820
1975
|
export declare const UsageResourceResultFilterSensitiveLog: (
|
|
1821
1976
|
obj: UsageResourceResult
|
|
1822
1977
|
) => any;
|
|
@@ -1953,6 +2108,9 @@ export declare const UpdateMalwareScanSettingsRequestFilterSensitiveLog: (
|
|
|
1953
2108
|
export declare const UpdateMalwareScanSettingsResponseFilterSensitiveLog: (
|
|
1954
2109
|
obj: UpdateMalwareScanSettingsResponse
|
|
1955
2110
|
) => any;
|
|
2111
|
+
export declare const MemberFeaturesConfigurationFilterSensitiveLog: (
|
|
2112
|
+
obj: MemberFeaturesConfiguration
|
|
2113
|
+
) => any;
|
|
1956
2114
|
export declare const UpdateMemberDetectorsRequestFilterSensitiveLog: (
|
|
1957
2115
|
obj: UpdateMemberDetectorsRequest
|
|
1958
2116
|
) => any;
|
|
@@ -1980,6 +2138,9 @@ export declare const OrganizationS3LogsConfigurationFilterSensitiveLog: (
|
|
|
1980
2138
|
export declare const OrganizationDataSourceConfigurationsFilterSensitiveLog: (
|
|
1981
2139
|
obj: OrganizationDataSourceConfigurations
|
|
1982
2140
|
) => any;
|
|
2141
|
+
export declare const OrganizationFeatureConfigurationFilterSensitiveLog: (
|
|
2142
|
+
obj: OrganizationFeatureConfiguration
|
|
2143
|
+
) => any;
|
|
1983
2144
|
export declare const UpdateOrganizationConfigurationRequestFilterSensitiveLog: (
|
|
1984
2145
|
obj: UpdateOrganizationConfigurationRequest
|
|
1985
2146
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeOrganizationConfigurationCommandInput,
|
|
4
|
+
DescribeOrganizationConfigurationCommandOutput,
|
|
5
|
+
} from "../commands/DescribeOrganizationConfigurationCommand";
|
|
6
|
+
import { GuardDutyPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeOrganizationConfiguration(
|
|
8
|
+
config: GuardDutyPaginationConfiguration,
|
|
9
|
+
input: DescribeOrganizationConfigurationCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeOrganizationConfigurationCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-guardduty",
|
|
3
3
|
"description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.294.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.294.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.294.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.292.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.293.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
36
|
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.293.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.292.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.293.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.292.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.293.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|