@aws-sdk/client-guardduty 3.427.0 → 3.429.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.
|
@@ -281,7 +281,7 @@ export interface FreeTrialFeatureConfigurationResult {
|
|
|
281
281
|
* @public
|
|
282
282
|
* <p>The name of the feature for which the free trial is configured.</p>
|
|
283
283
|
*/
|
|
284
|
-
Name?: FreeTrialFeatureResult
|
|
284
|
+
Name?: FreeTrialFeatureResult;
|
|
285
285
|
/**
|
|
286
286
|
* @public
|
|
287
287
|
* <p>The number of the remaining free trial days for the feature.</p>
|
|
@@ -848,7 +848,7 @@ export interface AdminAccount {
|
|
|
848
848
|
* @public
|
|
849
849
|
* <p>Indicates whether the account is enabled as the delegated administrator.</p>
|
|
850
850
|
*/
|
|
851
|
-
AdminStatus?: AdminStatus
|
|
851
|
+
AdminStatus?: AdminStatus;
|
|
852
852
|
}
|
|
853
853
|
/**
|
|
854
854
|
* @public
|
|
@@ -972,7 +972,7 @@ export interface CloudTrailConfigurationResult {
|
|
|
972
972
|
* @public
|
|
973
973
|
* <p>Describes whether CloudTrail is enabled as a data source for the detector.</p>
|
|
974
974
|
*/
|
|
975
|
-
Status: DataSourceStatus |
|
|
975
|
+
Status: DataSourceStatus | undefined;
|
|
976
976
|
}
|
|
977
977
|
/**
|
|
978
978
|
* @public
|
|
@@ -1228,7 +1228,7 @@ export interface CoverageEksClusterDetails {
|
|
|
1228
1228
|
* <code>MANUAL</code> indicates that you are responsible to deploy, update, and manage
|
|
1229
1229
|
* the Amazon EKS add-on GuardDuty agent for this resource.</p>
|
|
1230
1230
|
*/
|
|
1231
|
-
ManagementType?: ManagementType
|
|
1231
|
+
ManagementType?: ManagementType;
|
|
1232
1232
|
}
|
|
1233
1233
|
/**
|
|
1234
1234
|
* @public
|
|
@@ -1280,7 +1280,7 @@ export interface CoverageFilterCriterion {
|
|
|
1280
1280
|
* <code>CLUSTER_NAME</code> has been deprecated.</p>
|
|
1281
1281
|
* </note>
|
|
1282
1282
|
*/
|
|
1283
|
-
CriterionKey?: CoverageFilterCriterionKey
|
|
1283
|
+
CriterionKey?: CoverageFilterCriterionKey;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* @public
|
|
1286
1286
|
* <p>Contains information about the condition.</p>
|
|
@@ -1313,7 +1313,7 @@ export interface CoverageResourceDetails {
|
|
|
1313
1313
|
* @public
|
|
1314
1314
|
* <p>The type of Amazon Web Services resource.</p>
|
|
1315
1315
|
*/
|
|
1316
|
-
ResourceType?: ResourceType
|
|
1316
|
+
ResourceType?: ResourceType;
|
|
1317
1317
|
}
|
|
1318
1318
|
/**
|
|
1319
1319
|
* @public
|
|
@@ -1344,7 +1344,7 @@ export interface CoverageResource {
|
|
|
1344
1344
|
* @public
|
|
1345
1345
|
* <p>Represents the status of the EKS cluster coverage.</p>
|
|
1346
1346
|
*/
|
|
1347
|
-
CoverageStatus?: CoverageStatus
|
|
1347
|
+
CoverageStatus?: CoverageStatus;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* @public
|
|
1350
1350
|
* <p>Represents the reason why a coverage status was <code>UNHEALTHY</code> for the EKS
|
|
@@ -1400,12 +1400,12 @@ export interface CoverageSortCriteria {
|
|
|
1400
1400
|
* <code>CLUSTER_NAME</code> has been deprecated.</p>
|
|
1401
1401
|
* </note>
|
|
1402
1402
|
*/
|
|
1403
|
-
AttributeName?: CoverageSortKey
|
|
1403
|
+
AttributeName?: CoverageSortKey;
|
|
1404
1404
|
/**
|
|
1405
1405
|
* @public
|
|
1406
1406
|
* <p>The order in which the sorted findings are to be displayed.</p>
|
|
1407
1407
|
*/
|
|
1408
|
-
OrderBy?: OrderBy
|
|
1408
|
+
OrderBy?: OrderBy;
|
|
1409
1409
|
}
|
|
1410
1410
|
/**
|
|
1411
1411
|
* @public
|
|
@@ -1416,12 +1416,12 @@ export interface CoverageStatistics {
|
|
|
1416
1416
|
* @public
|
|
1417
1417
|
* <p>Represents coverage statistics for EKS clusters aggregated by resource type.</p>
|
|
1418
1418
|
*/
|
|
1419
|
-
CountByResourceType?: Record<
|
|
1419
|
+
CountByResourceType?: Record<ResourceType, number>;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* @public
|
|
1422
1422
|
* <p>Represents coverage statistics for EKS clusters aggregated by coverage status.</p>
|
|
1423
1423
|
*/
|
|
1424
|
-
CountByCoverageStatus?: Record<
|
|
1424
|
+
CountByCoverageStatus?: Record<CoverageStatus, number>;
|
|
1425
1425
|
}
|
|
1426
1426
|
/**
|
|
1427
1427
|
* @public
|
|
@@ -1544,12 +1544,12 @@ export interface DetectorAdditionalConfiguration {
|
|
|
1544
1544
|
* @public
|
|
1545
1545
|
* <p>Name of the additional configuration.</p>
|
|
1546
1546
|
*/
|
|
1547
|
-
Name?: FeatureAdditionalConfiguration
|
|
1547
|
+
Name?: FeatureAdditionalConfiguration;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* @public
|
|
1550
1550
|
* <p>Status of the additional configuration.</p>
|
|
1551
1551
|
*/
|
|
1552
|
-
Status?: FeatureStatus
|
|
1552
|
+
Status?: FeatureStatus;
|
|
1553
1553
|
}
|
|
1554
1554
|
/**
|
|
1555
1555
|
* @public
|
|
@@ -1576,12 +1576,12 @@ export interface DetectorFeatureConfiguration {
|
|
|
1576
1576
|
* @public
|
|
1577
1577
|
* <p>The name of the feature.</p>
|
|
1578
1578
|
*/
|
|
1579
|
-
Name?: DetectorFeature
|
|
1579
|
+
Name?: DetectorFeature;
|
|
1580
1580
|
/**
|
|
1581
1581
|
* @public
|
|
1582
1582
|
* <p>The status of the feature.</p>
|
|
1583
1583
|
*/
|
|
1584
|
-
Status?: FeatureStatus
|
|
1584
|
+
Status?: FeatureStatus;
|
|
1585
1585
|
/**
|
|
1586
1586
|
* @public
|
|
1587
1587
|
* <p>Additional configuration for a resource.</p>
|
|
@@ -1619,7 +1619,7 @@ export interface CreateDetectorRequest {
|
|
|
1619
1619
|
* @public
|
|
1620
1620
|
* <p>A value that specifies how frequently updated findings are exported.</p>
|
|
1621
1621
|
*/
|
|
1622
|
-
FindingPublishingFrequency?: FindingPublishingFrequency
|
|
1622
|
+
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
1623
1623
|
/**
|
|
1624
1624
|
* @public
|
|
1625
1625
|
* @deprecated
|
|
@@ -1650,7 +1650,7 @@ export interface EbsVolumesResult {
|
|
|
1650
1650
|
* @public
|
|
1651
1651
|
* <p>Describes whether scanning EBS volumes is enabled as a data source.</p>
|
|
1652
1652
|
*/
|
|
1653
|
-
Status?: DataSourceStatus
|
|
1653
|
+
Status?: DataSourceStatus;
|
|
1654
1654
|
/**
|
|
1655
1655
|
* @public
|
|
1656
1656
|
* <p>Specifies the reason why scanning EBS volumes (Malware Protection) was not enabled as a
|
|
@@ -1767,7 +1767,7 @@ export interface CreateFilterRequest {
|
|
|
1767
1767
|
* @public
|
|
1768
1768
|
* <p>Specifies the action that is to be applied to the findings that match the filter.</p>
|
|
1769
1769
|
*/
|
|
1770
|
-
Action?: FilterAction
|
|
1770
|
+
Action?: FilterAction;
|
|
1771
1771
|
/**
|
|
1772
1772
|
* @public
|
|
1773
1773
|
* <p>Specifies the position of the filter in the list of current filters. Also specifies the
|
|
@@ -2124,7 +2124,7 @@ export interface CreateIPSetRequest {
|
|
|
2124
2124
|
* @public
|
|
2125
2125
|
* <p>The format of the file that contains the IPSet.</p>
|
|
2126
2126
|
*/
|
|
2127
|
-
Format: IpSetFormat |
|
|
2127
|
+
Format: IpSetFormat | undefined;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* @public
|
|
2130
2130
|
* <p>The URI of the file that contains the IPSet. </p>
|
|
@@ -2246,7 +2246,7 @@ export interface CreatePublishingDestinationRequest {
|
|
|
2246
2246
|
* <p>The type of resource for the publishing destination. Currently only Amazon S3 buckets are
|
|
2247
2247
|
* supported.</p>
|
|
2248
2248
|
*/
|
|
2249
|
-
DestinationType: DestinationType |
|
|
2249
|
+
DestinationType: DestinationType | undefined;
|
|
2250
2250
|
/**
|
|
2251
2251
|
* @public
|
|
2252
2252
|
* <p>The properties of the publishing destination, including the ARNs for the destination and
|
|
@@ -2325,7 +2325,7 @@ export interface CreateThreatIntelSetRequest {
|
|
|
2325
2325
|
* @public
|
|
2326
2326
|
* <p>The format of the file that contains the ThreatIntelSet.</p>
|
|
2327
2327
|
*/
|
|
2328
|
-
Format: ThreatIntelSetFormat |
|
|
2328
|
+
Format: ThreatIntelSetFormat | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* @public
|
|
2331
2331
|
* <p>The URI of the file that contains the ThreatIntelSet. </p>
|
|
@@ -2400,7 +2400,7 @@ export interface DNSLogsConfigurationResult {
|
|
|
2400
2400
|
* @public
|
|
2401
2401
|
* <p>Denotes whether DNS logs is enabled as a data source.</p>
|
|
2402
2402
|
*/
|
|
2403
|
-
Status: DataSourceStatus |
|
|
2403
|
+
Status: DataSourceStatus | undefined;
|
|
2404
2404
|
}
|
|
2405
2405
|
/**
|
|
2406
2406
|
* @public
|
|
@@ -2411,7 +2411,7 @@ export interface FlowLogsConfigurationResult {
|
|
|
2411
2411
|
* @public
|
|
2412
2412
|
* <p>Denotes whether VPC flow logs is enabled as a data source.</p>
|
|
2413
2413
|
*/
|
|
2414
|
-
Status: DataSourceStatus |
|
|
2414
|
+
Status: DataSourceStatus | undefined;
|
|
2415
2415
|
}
|
|
2416
2416
|
/**
|
|
2417
2417
|
* @public
|
|
@@ -2422,7 +2422,7 @@ export interface KubernetesAuditLogsConfigurationResult {
|
|
|
2422
2422
|
* @public
|
|
2423
2423
|
* <p>A value that describes whether Kubernetes audit logs are enabled as a data source.</p>
|
|
2424
2424
|
*/
|
|
2425
|
-
Status: DataSourceStatus |
|
|
2425
|
+
Status: DataSourceStatus | undefined;
|
|
2426
2426
|
}
|
|
2427
2427
|
/**
|
|
2428
2428
|
* @public
|
|
@@ -2445,7 +2445,7 @@ export interface S3LogsConfigurationResult {
|
|
|
2445
2445
|
* <p>A value that describes whether S3 data event logs are automatically enabled for new
|
|
2446
2446
|
* members of the organization.</p>
|
|
2447
2447
|
*/
|
|
2448
|
-
Status: DataSourceStatus |
|
|
2448
|
+
Status: DataSourceStatus | undefined;
|
|
2449
2449
|
}
|
|
2450
2450
|
/**
|
|
2451
2451
|
* @public
|
|
@@ -2711,7 +2711,7 @@ export interface FilterCriterion {
|
|
|
2711
2711
|
* <code>CLUSTER_NAME</code> has been deprecated.</p>
|
|
2712
2712
|
* </note>
|
|
2713
2713
|
*/
|
|
2714
|
-
CriterionKey?: CriterionKey
|
|
2714
|
+
CriterionKey?: CriterionKey;
|
|
2715
2715
|
/**
|
|
2716
2716
|
* @public
|
|
2717
2717
|
* <p>Contains information about the condition.</p>
|
|
@@ -2745,7 +2745,7 @@ export interface SortCriteria {
|
|
|
2745
2745
|
* @public
|
|
2746
2746
|
* <p>The order by which the sorted findings are to be displayed.</p>
|
|
2747
2747
|
*/
|
|
2748
|
-
OrderBy?: OrderBy
|
|
2748
|
+
OrderBy?: OrderBy;
|
|
2749
2749
|
}
|
|
2750
2750
|
/**
|
|
2751
2751
|
* @public
|
|
@@ -2857,7 +2857,7 @@ export interface ScanResultDetails {
|
|
|
2857
2857
|
* @public
|
|
2858
2858
|
* <p>An enum value representing possible scan results.</p>
|
|
2859
2859
|
*/
|
|
2860
|
-
ScanResult?: ScanResult
|
|
2860
|
+
ScanResult?: ScanResult;
|
|
2861
2861
|
}
|
|
2862
2862
|
/**
|
|
2863
2863
|
* @public
|
|
@@ -2927,7 +2927,7 @@ export interface Scan {
|
|
|
2927
2927
|
* @public
|
|
2928
2928
|
* <p>An enum value representing possible scan statuses.</p>
|
|
2929
2929
|
*/
|
|
2930
|
-
ScanStatus?: ScanStatus
|
|
2930
|
+
ScanStatus?: ScanStatus;
|
|
2931
2931
|
/**
|
|
2932
2932
|
* @public
|
|
2933
2933
|
* <p>Represents the reason for FAILED scan status.</p>
|
|
@@ -2982,7 +2982,7 @@ export interface Scan {
|
|
|
2982
2982
|
* @public
|
|
2983
2983
|
* <p>Specifies the scan type that invoked the malware scan.</p>
|
|
2984
2984
|
*/
|
|
2985
|
-
ScanType?: ScanType
|
|
2985
|
+
ScanType?: ScanType;
|
|
2986
2986
|
}
|
|
2987
2987
|
/**
|
|
2988
2988
|
* @public
|
|
@@ -3157,7 +3157,7 @@ export interface OrganizationAdditionalConfigurationResult {
|
|
|
3157
3157
|
* <p>The name of the additional configuration that is configured for the member accounts within
|
|
3158
3158
|
* the organization.</p>
|
|
3159
3159
|
*/
|
|
3160
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
3160
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* @public
|
|
3163
3163
|
* <p>Describes the status of the additional configuration that is configured for the
|
|
@@ -3187,7 +3187,7 @@ export interface OrganizationAdditionalConfigurationResult {
|
|
|
3187
3187
|
* </li>
|
|
3188
3188
|
* </ul>
|
|
3189
3189
|
*/
|
|
3190
|
-
AutoEnable?: OrgFeatureStatus
|
|
3190
|
+
AutoEnable?: OrgFeatureStatus;
|
|
3191
3191
|
}
|
|
3192
3192
|
/**
|
|
3193
3193
|
* @public
|
|
@@ -3215,7 +3215,7 @@ export interface OrganizationFeatureConfigurationResult {
|
|
|
3215
3215
|
* <p>The name of the feature that is configured for the member accounts within the
|
|
3216
3216
|
* organization.</p>
|
|
3217
3217
|
*/
|
|
3218
|
-
Name?: OrgFeature
|
|
3218
|
+
Name?: OrgFeature;
|
|
3219
3219
|
/**
|
|
3220
3220
|
* @public
|
|
3221
3221
|
* <p>Describes the status of the feature that is configured for the member accounts within
|
|
@@ -3242,7 +3242,7 @@ export interface OrganizationFeatureConfigurationResult {
|
|
|
3242
3242
|
* </li>
|
|
3243
3243
|
* </ul>
|
|
3244
3244
|
*/
|
|
3245
|
-
AutoEnable?: OrgFeatureStatus
|
|
3245
|
+
AutoEnable?: OrgFeatureStatus;
|
|
3246
3246
|
/**
|
|
3247
3247
|
* @public
|
|
3248
3248
|
* <p>The additional configuration that is configured for the member accounts within the
|
|
@@ -3313,7 +3313,7 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
3313
3313
|
* </li>
|
|
3314
3314
|
* </ul>
|
|
3315
3315
|
*/
|
|
3316
|
-
AutoEnableOrganizationMembers?: AutoEnableMembers
|
|
3316
|
+
AutoEnableOrganizationMembers?: AutoEnableMembers;
|
|
3317
3317
|
}
|
|
3318
3318
|
/**
|
|
3319
3319
|
* @public
|
|
@@ -3359,12 +3359,12 @@ export interface DescribePublishingDestinationResponse {
|
|
|
3359
3359
|
* <p>The type of publishing destination. Currently, only Amazon S3 buckets are
|
|
3360
3360
|
* supported.</p>
|
|
3361
3361
|
*/
|
|
3362
|
-
DestinationType: DestinationType |
|
|
3362
|
+
DestinationType: DestinationType | undefined;
|
|
3363
3363
|
/**
|
|
3364
3364
|
* @public
|
|
3365
3365
|
* <p>The status of the publishing destination.</p>
|
|
3366
3366
|
*/
|
|
3367
|
-
Status: PublishingStatus |
|
|
3367
|
+
Status: PublishingStatus | undefined;
|
|
3368
3368
|
/**
|
|
3369
3369
|
* @public
|
|
3370
3370
|
* <p>The time, in epoch millisecond format, at which GuardDuty was first unable to publish
|
|
@@ -3394,12 +3394,12 @@ export interface Destination {
|
|
|
3394
3394
|
* <p>The type of resource used for the publishing destination. Currently, only Amazon S3
|
|
3395
3395
|
* buckets are supported.</p>
|
|
3396
3396
|
*/
|
|
3397
|
-
DestinationType: DestinationType |
|
|
3397
|
+
DestinationType: DestinationType | undefined;
|
|
3398
3398
|
/**
|
|
3399
3399
|
* @public
|
|
3400
3400
|
* <p>The status of the publishing destination.</p>
|
|
3401
3401
|
*/
|
|
3402
|
-
Status: PublishingStatus |
|
|
3402
|
+
Status: PublishingStatus | undefined;
|
|
3403
3403
|
}
|
|
3404
3404
|
/**
|
|
3405
3405
|
* @public
|
|
@@ -3410,12 +3410,12 @@ export interface DetectorAdditionalConfigurationResult {
|
|
|
3410
3410
|
* @public
|
|
3411
3411
|
* <p>Name of the additional configuration.</p>
|
|
3412
3412
|
*/
|
|
3413
|
-
Name?: FeatureAdditionalConfiguration
|
|
3413
|
+
Name?: FeatureAdditionalConfiguration;
|
|
3414
3414
|
/**
|
|
3415
3415
|
* @public
|
|
3416
3416
|
* <p>Status of the additional configuration.</p>
|
|
3417
3417
|
*/
|
|
3418
|
-
Status?: FeatureStatus
|
|
3418
|
+
Status?: FeatureStatus;
|
|
3419
3419
|
/**
|
|
3420
3420
|
* @public
|
|
3421
3421
|
* <p>The timestamp at which the additional configuration was last updated. This is in UTC
|
|
@@ -3451,12 +3451,12 @@ export interface DetectorFeatureConfigurationResult {
|
|
|
3451
3451
|
* @public
|
|
3452
3452
|
* <p>Indicates the name of the feature that can be enabled for the detector.</p>
|
|
3453
3453
|
*/
|
|
3454
|
-
Name?: DetectorFeatureResult
|
|
3454
|
+
Name?: DetectorFeatureResult;
|
|
3455
3455
|
/**
|
|
3456
3456
|
* @public
|
|
3457
3457
|
* <p>Indicates the status of the feature that is enabled for the detector.</p>
|
|
3458
3458
|
*/
|
|
3459
|
-
Status?: FeatureStatus
|
|
3459
|
+
Status?: FeatureStatus;
|
|
3460
3460
|
/**
|
|
3461
3461
|
* @public
|
|
3462
3462
|
* <p>The timestamp at which the feature object was updated.</p>
|
|
@@ -3782,7 +3782,7 @@ export interface EbsVolumeScanDetails {
|
|
|
3782
3782
|
* @public
|
|
3783
3783
|
* <p>Specifies the scan type that invoked the malware scan.</p>
|
|
3784
3784
|
*/
|
|
3785
|
-
ScanType?: ScanType
|
|
3785
|
+
ScanType?: ScanType;
|
|
3786
3786
|
}
|
|
3787
3787
|
/**
|
|
3788
3788
|
* @public
|
|
@@ -5102,7 +5102,7 @@ export interface GetCoverageStatisticsRequest {
|
|
|
5102
5102
|
* @public
|
|
5103
5103
|
* <p>Represents the statistics type used to aggregate the coverage details.</p>
|
|
5104
5104
|
*/
|
|
5105
|
-
StatisticsType:
|
|
5105
|
+
StatisticsType: CoverageStatisticsType[] | undefined;
|
|
5106
5106
|
}
|
|
5107
5107
|
/**
|
|
5108
5108
|
* @public
|
|
@@ -5138,7 +5138,7 @@ export interface GetDetectorResponse {
|
|
|
5138
5138
|
* @public
|
|
5139
5139
|
* <p>The publishing frequency of the finding.</p>
|
|
5140
5140
|
*/
|
|
5141
|
-
FindingPublishingFrequency?: FindingPublishingFrequency
|
|
5141
|
+
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
5142
5142
|
/**
|
|
5143
5143
|
* @public
|
|
5144
5144
|
* <p>The GuardDuty service role.</p>
|
|
@@ -5148,7 +5148,7 @@ export interface GetDetectorResponse {
|
|
|
5148
5148
|
* @public
|
|
5149
5149
|
* <p>The detector status.</p>
|
|
5150
5150
|
*/
|
|
5151
|
-
Status: DetectorStatus |
|
|
5151
|
+
Status: DetectorStatus | undefined;
|
|
5152
5152
|
/**
|
|
5153
5153
|
* @public
|
|
5154
5154
|
* <p>The last-updated timestamp for the detector.</p>
|
|
@@ -5205,7 +5205,7 @@ export interface GetFilterResponse {
|
|
|
5205
5205
|
* @public
|
|
5206
5206
|
* <p>Specifies the action that is to be applied to the findings that match the filter.</p>
|
|
5207
5207
|
*/
|
|
5208
|
-
Action: FilterAction |
|
|
5208
|
+
Action: FilterAction | undefined;
|
|
5209
5209
|
/**
|
|
5210
5210
|
* @public
|
|
5211
5211
|
* <p>Specifies the position of the filter in the list of current filters. Also specifies the
|
|
@@ -5268,7 +5268,7 @@ export interface GetFindingsStatisticsRequest {
|
|
|
5268
5268
|
* @public
|
|
5269
5269
|
* <p>The types of finding statistics to retrieve.</p>
|
|
5270
5270
|
*/
|
|
5271
|
-
FindingStatisticTypes:
|
|
5271
|
+
FindingStatisticTypes: FindingStatisticType[] | undefined;
|
|
5272
5272
|
/**
|
|
5273
5273
|
* @public
|
|
5274
5274
|
* <p>Represents the criteria that is used for querying findings.</p>
|
|
@@ -5345,7 +5345,7 @@ export interface GetIPSetResponse {
|
|
|
5345
5345
|
* @public
|
|
5346
5346
|
* <p>The format of the file that contains the IPSet.</p>
|
|
5347
5347
|
*/
|
|
5348
|
-
Format: IpSetFormat |
|
|
5348
|
+
Format: IpSetFormat | undefined;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* @public
|
|
5351
5351
|
* <p>The URI of the file that contains the IPSet.</p>
|
|
@@ -5355,7 +5355,7 @@ export interface GetIPSetResponse {
|
|
|
5355
5355
|
* @public
|
|
5356
5356
|
* <p>The status of IPSet file that was uploaded.</p>
|
|
5357
5357
|
*/
|
|
5358
|
-
Status: IpSetStatus |
|
|
5358
|
+
Status: IpSetStatus | undefined;
|
|
5359
5359
|
/**
|
|
5360
5360
|
* @public
|
|
5361
5361
|
* <p>The tags of the IPSet resource.</p>
|
|
@@ -5425,13 +5425,13 @@ export interface ScanResourceCriteria {
|
|
|
5425
5425
|
* <p>Represents condition that when matched will allow a malware scan for a certain
|
|
5426
5426
|
* resource.</p>
|
|
5427
5427
|
*/
|
|
5428
|
-
Include?: Record<
|
|
5428
|
+
Include?: Record<ScanCriterionKey, ScanCondition>;
|
|
5429
5429
|
/**
|
|
5430
5430
|
* @public
|
|
5431
5431
|
* <p>Represents condition that when matched will prevent a malware scan for a certain
|
|
5432
5432
|
* resource.</p>
|
|
5433
5433
|
*/
|
|
5434
|
-
Exclude?: Record<
|
|
5434
|
+
Exclude?: Record<ScanCriterionKey, ScanCondition>;
|
|
5435
5435
|
}
|
|
5436
5436
|
/**
|
|
5437
5437
|
* @public
|
|
@@ -5446,7 +5446,7 @@ export interface GetMalwareScanSettingsResponse {
|
|
|
5446
5446
|
* @public
|
|
5447
5447
|
* <p>An enum value representing possible snapshot preservation settings.</p>
|
|
5448
5448
|
*/
|
|
5449
|
-
EbsSnapshotPreservation?: EbsSnapshotPreservation
|
|
5449
|
+
EbsSnapshotPreservation?: EbsSnapshotPreservation;
|
|
5450
5450
|
}
|
|
5451
5451
|
/**
|
|
5452
5452
|
* @public
|
|
@@ -5519,13 +5519,13 @@ export interface MemberAdditionalConfigurationResult {
|
|
|
5519
5519
|
* <p>Indicates the name of the additional configuration that is set for the member
|
|
5520
5520
|
* account.</p>
|
|
5521
5521
|
*/
|
|
5522
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
5522
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
5523
5523
|
/**
|
|
5524
5524
|
* @public
|
|
5525
5525
|
* <p>Indicates the status of the additional configuration that is set for the member
|
|
5526
5526
|
* account.</p>
|
|
5527
5527
|
*/
|
|
5528
|
-
Status?: FeatureStatus
|
|
5528
|
+
Status?: FeatureStatus;
|
|
5529
5529
|
/**
|
|
5530
5530
|
* @public
|
|
5531
5531
|
* <p>The timestamp at which the additional configuration was set for the member account. This
|
|
@@ -5542,12 +5542,12 @@ export interface MemberFeaturesConfigurationResult {
|
|
|
5542
5542
|
* @public
|
|
5543
5543
|
* <p>Indicates the name of the feature that is enabled for the detector.</p>
|
|
5544
5544
|
*/
|
|
5545
|
-
Name?: OrgFeature
|
|
5545
|
+
Name?: OrgFeature;
|
|
5546
5546
|
/**
|
|
5547
5547
|
* @public
|
|
5548
5548
|
* <p>Indicates the status of the feature that is enabled for the detector.</p>
|
|
5549
5549
|
*/
|
|
5550
|
-
Status?: FeatureStatus
|
|
5550
|
+
Status?: FeatureStatus;
|
|
5551
5551
|
/**
|
|
5552
5552
|
* @public
|
|
5553
5553
|
* <p>The timestamp at which the feature object was updated.</p>
|
|
@@ -5755,7 +5755,7 @@ export interface GetThreatIntelSetResponse {
|
|
|
5755
5755
|
* @public
|
|
5756
5756
|
* <p>The format of the threatIntelSet.</p>
|
|
5757
5757
|
*/
|
|
5758
|
-
Format: ThreatIntelSetFormat |
|
|
5758
|
+
Format: ThreatIntelSetFormat | undefined;
|
|
5759
5759
|
/**
|
|
5760
5760
|
* @public
|
|
5761
5761
|
* <p>The URI of the file that contains the ThreatIntelSet. </p>
|
|
@@ -5765,7 +5765,7 @@ export interface GetThreatIntelSetResponse {
|
|
|
5765
5765
|
* @public
|
|
5766
5766
|
* <p>The status of threatIntelSet file uploaded.</p>
|
|
5767
5767
|
*/
|
|
5768
|
-
Status: ThreatIntelSetStatus |
|
|
5768
|
+
Status: ThreatIntelSetStatus | undefined;
|
|
5769
5769
|
/**
|
|
5770
5770
|
* @public
|
|
5771
5771
|
* <p>The tags of the threat list resource.</p>
|
|
@@ -5807,7 +5807,7 @@ export interface UsageCriteria {
|
|
|
5807
5807
|
*
|
|
5808
5808
|
* <p>The data sources to aggregate usage statistics from.</p>
|
|
5809
5809
|
*/
|
|
5810
|
-
DataSources?:
|
|
5810
|
+
DataSources?: DataSource[];
|
|
5811
5811
|
/**
|
|
5812
5812
|
* @public
|
|
5813
5813
|
* <p>The resources to aggregate usage statistics from. Only accepts exact resource
|
|
@@ -5818,7 +5818,7 @@ export interface UsageCriteria {
|
|
|
5818
5818
|
* @public
|
|
5819
5819
|
* <p>The features to aggregate usage statistics from.</p>
|
|
5820
5820
|
*/
|
|
5821
|
-
Features?:
|
|
5821
|
+
Features?: UsageFeature[];
|
|
5822
5822
|
}
|
|
5823
5823
|
/**
|
|
5824
5824
|
* @public
|
|
@@ -5849,7 +5849,7 @@ export interface GetUsageStatisticsRequest {
|
|
|
5849
5849
|
* @public
|
|
5850
5850
|
* <p>The type of usage statistics to retrieve.</p>
|
|
5851
5851
|
*/
|
|
5852
|
-
UsageStatisticType: UsageStatisticType |
|
|
5852
|
+
UsageStatisticType: UsageStatisticType | undefined;
|
|
5853
5853
|
/**
|
|
5854
5854
|
* @public
|
|
5855
5855
|
* <p>Represents the criteria used for querying usage.</p>
|
|
@@ -5916,7 +5916,7 @@ export interface UsageDataSourceResult {
|
|
|
5916
5916
|
* @public
|
|
5917
5917
|
* <p>The data source type that generated usage.</p>
|
|
5918
5918
|
*/
|
|
5919
|
-
DataSource?: DataSource
|
|
5919
|
+
DataSource?: DataSource;
|
|
5920
5920
|
/**
|
|
5921
5921
|
* @public
|
|
5922
5922
|
* <p>Represents the total of usage for the specified data source.</p>
|
|
@@ -5932,7 +5932,7 @@ export interface UsageFeatureResult {
|
|
|
5932
5932
|
* @public
|
|
5933
5933
|
* <p>The feature that generated the usage cost.</p>
|
|
5934
5934
|
*/
|
|
5935
|
-
Feature?: UsageFeature
|
|
5935
|
+
Feature?: UsageFeature;
|
|
5936
5936
|
/**
|
|
5937
5937
|
* @public
|
|
5938
5938
|
* <p>Contains the total usage with the corresponding currency unit for that value.</p>
|
|
@@ -132,7 +132,7 @@ export interface UpdateDetectorRequest {
|
|
|
132
132
|
* <p>An enum value that specifies how frequently findings are exported, such as to CloudWatch
|
|
133
133
|
* Events.</p>
|
|
134
134
|
*/
|
|
135
|
-
FindingPublishingFrequency?: FindingPublishingFrequency
|
|
135
|
+
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
136
136
|
/**
|
|
137
137
|
* @public
|
|
138
138
|
* @deprecated
|
|
@@ -181,7 +181,7 @@ export interface UpdateFilterRequest {
|
|
|
181
181
|
* @public
|
|
182
182
|
* <p>Specifies the action that is to be applied to the findings that match the filter.</p>
|
|
183
183
|
*/
|
|
184
|
-
Action?: FilterAction
|
|
184
|
+
Action?: FilterAction;
|
|
185
185
|
/**
|
|
186
186
|
* @public
|
|
187
187
|
* <p>Specifies the position of the filter in the list of current filters. Also specifies the
|
|
@@ -222,7 +222,7 @@ export interface UpdateFindingsFeedbackRequest {
|
|
|
222
222
|
* @public
|
|
223
223
|
* <p>The feedback for the finding.</p>
|
|
224
224
|
*/
|
|
225
|
-
Feedback: Feedback |
|
|
225
|
+
Feedback: Feedback | undefined;
|
|
226
226
|
/**
|
|
227
227
|
* @public
|
|
228
228
|
* <p>Additional feedback about the GuardDuty findings.</p>
|
|
@@ -288,7 +288,7 @@ export interface UpdateMalwareScanSettingsRequest {
|
|
|
288
288
|
* @public
|
|
289
289
|
* <p>An enum value representing possible snapshot preservation settings.</p>
|
|
290
290
|
*/
|
|
291
|
-
EbsSnapshotPreservation?: EbsSnapshotPreservation
|
|
291
|
+
EbsSnapshotPreservation?: EbsSnapshotPreservation;
|
|
292
292
|
}
|
|
293
293
|
/**
|
|
294
294
|
* @public
|
|
@@ -304,12 +304,12 @@ export interface MemberAdditionalConfiguration {
|
|
|
304
304
|
* @public
|
|
305
305
|
* <p>Name of the additional configuration.</p>
|
|
306
306
|
*/
|
|
307
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
307
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
310
310
|
* <p>Status of the additional configuration.</p>
|
|
311
311
|
*/
|
|
312
|
-
Status?: FeatureStatus
|
|
312
|
+
Status?: FeatureStatus;
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
315
|
* @public
|
|
@@ -320,12 +320,12 @@ export interface MemberFeaturesConfiguration {
|
|
|
320
320
|
* @public
|
|
321
321
|
* <p>The name of the feature.</p>
|
|
322
322
|
*/
|
|
323
|
-
Name?: OrgFeature
|
|
323
|
+
Name?: OrgFeature;
|
|
324
324
|
/**
|
|
325
325
|
* @public
|
|
326
326
|
* <p>The status of the feature.</p>
|
|
327
327
|
*/
|
|
328
|
-
Status?: FeatureStatus
|
|
328
|
+
Status?: FeatureStatus;
|
|
329
329
|
/**
|
|
330
330
|
* @public
|
|
331
331
|
* <p>Additional configuration of the feature for the member account.</p>
|
|
@@ -478,7 +478,7 @@ export interface OrganizationAdditionalConfiguration {
|
|
|
478
478
|
* <p>The name of the additional configuration that will be configured for the
|
|
479
479
|
* organization.</p>
|
|
480
480
|
*/
|
|
481
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
481
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
482
482
|
/**
|
|
483
483
|
* @public
|
|
484
484
|
* <p>The status of the additional configuration that will be configured for the
|
|
@@ -508,7 +508,7 @@ export interface OrganizationAdditionalConfiguration {
|
|
|
508
508
|
* </li>
|
|
509
509
|
* </ul>
|
|
510
510
|
*/
|
|
511
|
-
AutoEnable?: OrgFeatureStatus
|
|
511
|
+
AutoEnable?: OrgFeatureStatus;
|
|
512
512
|
}
|
|
513
513
|
/**
|
|
514
514
|
* @public
|
|
@@ -519,7 +519,7 @@ export interface OrganizationFeatureConfiguration {
|
|
|
519
519
|
* @public
|
|
520
520
|
* <p>The name of the feature that will be configured for the organization.</p>
|
|
521
521
|
*/
|
|
522
|
-
Name?: OrgFeature
|
|
522
|
+
Name?: OrgFeature;
|
|
523
523
|
/**
|
|
524
524
|
* @public
|
|
525
525
|
* <p>Describes the status of the feature that is configured for the
|
|
@@ -548,7 +548,7 @@ export interface OrganizationFeatureConfiguration {
|
|
|
548
548
|
* </li>
|
|
549
549
|
* </ul>
|
|
550
550
|
*/
|
|
551
|
-
AutoEnable?: OrgFeatureStatus
|
|
551
|
+
AutoEnable?: OrgFeatureStatus;
|
|
552
552
|
/**
|
|
553
553
|
* @public
|
|
554
554
|
* <p>The additional information that will be configured for the organization.</p>
|
|
@@ -613,7 +613,7 @@ export interface UpdateOrganizationConfigurationRequest {
|
|
|
613
613
|
* </li>
|
|
614
614
|
* </ul>
|
|
615
615
|
*/
|
|
616
|
-
AutoEnableOrganizationMembers?: AutoEnableMembers
|
|
616
|
+
AutoEnableOrganizationMembers?: AutoEnableMembers;
|
|
617
617
|
}
|
|
618
618
|
/**
|
|
619
619
|
* @public
|
|
@@ -84,7 +84,7 @@ export declare const FreeTrialFeatureResult: {
|
|
|
84
84
|
export type FreeTrialFeatureResult =
|
|
85
85
|
(typeof FreeTrialFeatureResult)[keyof typeof FreeTrialFeatureResult];
|
|
86
86
|
export interface FreeTrialFeatureConfigurationResult {
|
|
87
|
-
Name?: FreeTrialFeatureResult
|
|
87
|
+
Name?: FreeTrialFeatureResult;
|
|
88
88
|
FreeTrialDaysRemaining?: number;
|
|
89
89
|
}
|
|
90
90
|
export interface AccountFreeTrialInfo {
|
|
@@ -216,7 +216,7 @@ export declare const AdminStatus: {
|
|
|
216
216
|
export type AdminStatus = (typeof AdminStatus)[keyof typeof AdminStatus];
|
|
217
217
|
export interface AdminAccount {
|
|
218
218
|
AdminAccountId?: string;
|
|
219
|
-
AdminStatus?: AdminStatus
|
|
219
|
+
AdminStatus?: AdminStatus;
|
|
220
220
|
}
|
|
221
221
|
export interface Administrator {
|
|
222
222
|
AccountId?: string;
|
|
@@ -252,7 +252,7 @@ export declare const DataSourceStatus: {
|
|
|
252
252
|
export type DataSourceStatus =
|
|
253
253
|
(typeof DataSourceStatus)[keyof typeof DataSourceStatus];
|
|
254
254
|
export interface CloudTrailConfigurationResult {
|
|
255
|
-
Status: DataSourceStatus |
|
|
255
|
+
Status: DataSourceStatus | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface Condition {
|
|
258
258
|
Eq?: string[];
|
|
@@ -312,7 +312,7 @@ export interface CoverageEksClusterDetails {
|
|
|
312
312
|
CoveredNodes?: number;
|
|
313
313
|
CompatibleNodes?: number;
|
|
314
314
|
AddonDetails?: AddonDetails;
|
|
315
|
-
ManagementType?: ManagementType
|
|
315
|
+
ManagementType?: ManagementType;
|
|
316
316
|
}
|
|
317
317
|
export interface CoverageFilterCondition {
|
|
318
318
|
Equals?: string[];
|
|
@@ -330,7 +330,7 @@ export declare const CoverageFilterCriterionKey: {
|
|
|
330
330
|
export type CoverageFilterCriterionKey =
|
|
331
331
|
(typeof CoverageFilterCriterionKey)[keyof typeof CoverageFilterCriterionKey];
|
|
332
332
|
export interface CoverageFilterCriterion {
|
|
333
|
-
CriterionKey?: CoverageFilterCriterionKey
|
|
333
|
+
CriterionKey?: CoverageFilterCriterionKey;
|
|
334
334
|
FilterCondition?: CoverageFilterCondition;
|
|
335
335
|
}
|
|
336
336
|
export interface CoverageFilterCriteria {
|
|
@@ -338,14 +338,14 @@ export interface CoverageFilterCriteria {
|
|
|
338
338
|
}
|
|
339
339
|
export interface CoverageResourceDetails {
|
|
340
340
|
EksClusterDetails?: CoverageEksClusterDetails;
|
|
341
|
-
ResourceType?: ResourceType
|
|
341
|
+
ResourceType?: ResourceType;
|
|
342
342
|
}
|
|
343
343
|
export interface CoverageResource {
|
|
344
344
|
ResourceId?: string;
|
|
345
345
|
DetectorId?: string;
|
|
346
346
|
AccountId?: string;
|
|
347
347
|
ResourceDetails?: CoverageResourceDetails;
|
|
348
|
-
CoverageStatus?: CoverageStatus
|
|
348
|
+
CoverageStatus?: CoverageStatus;
|
|
349
349
|
Issue?: string;
|
|
350
350
|
UpdatedAt?: Date;
|
|
351
351
|
}
|
|
@@ -366,12 +366,12 @@ export declare const OrderBy: {
|
|
|
366
366
|
};
|
|
367
367
|
export type OrderBy = (typeof OrderBy)[keyof typeof OrderBy];
|
|
368
368
|
export interface CoverageSortCriteria {
|
|
369
|
-
AttributeName?: CoverageSortKey
|
|
370
|
-
OrderBy?: OrderBy
|
|
369
|
+
AttributeName?: CoverageSortKey;
|
|
370
|
+
OrderBy?: OrderBy;
|
|
371
371
|
}
|
|
372
372
|
export interface CoverageStatistics {
|
|
373
|
-
CountByResourceType?: Record<
|
|
374
|
-
CountByCoverageStatus?: Record<
|
|
373
|
+
CountByResourceType?: Record<ResourceType, number>;
|
|
374
|
+
CountByCoverageStatus?: Record<CoverageStatus, number>;
|
|
375
375
|
}
|
|
376
376
|
export declare const CoverageStatisticsType: {
|
|
377
377
|
readonly COUNT_BY_COVERAGE_STATUS: "COUNT_BY_COVERAGE_STATUS";
|
|
@@ -410,8 +410,8 @@ export declare const FeatureStatus: {
|
|
|
410
410
|
};
|
|
411
411
|
export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
|
|
412
412
|
export interface DetectorAdditionalConfiguration {
|
|
413
|
-
Name?: FeatureAdditionalConfiguration
|
|
414
|
-
Status?: FeatureStatus
|
|
413
|
+
Name?: FeatureAdditionalConfiguration;
|
|
414
|
+
Status?: FeatureStatus;
|
|
415
415
|
}
|
|
416
416
|
export declare const DetectorFeature: {
|
|
417
417
|
readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
|
|
@@ -424,8 +424,8 @@ export declare const DetectorFeature: {
|
|
|
424
424
|
export type DetectorFeature =
|
|
425
425
|
(typeof DetectorFeature)[keyof typeof DetectorFeature];
|
|
426
426
|
export interface DetectorFeatureConfiguration {
|
|
427
|
-
Name?: DetectorFeature
|
|
428
|
-
Status?: FeatureStatus
|
|
427
|
+
Name?: DetectorFeature;
|
|
428
|
+
Status?: FeatureStatus;
|
|
429
429
|
AdditionalConfiguration?: DetectorAdditionalConfiguration[];
|
|
430
430
|
}
|
|
431
431
|
export declare const FindingPublishingFrequency: {
|
|
@@ -438,13 +438,13 @@ export type FindingPublishingFrequency =
|
|
|
438
438
|
export interface CreateDetectorRequest {
|
|
439
439
|
Enable: boolean | undefined;
|
|
440
440
|
ClientToken?: string;
|
|
441
|
-
FindingPublishingFrequency?: FindingPublishingFrequency
|
|
441
|
+
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
442
442
|
DataSources?: DataSourceConfigurations;
|
|
443
443
|
Tags?: Record<string, string>;
|
|
444
444
|
Features?: DetectorFeatureConfiguration[];
|
|
445
445
|
}
|
|
446
446
|
export interface EbsVolumesResult {
|
|
447
|
-
Status?: DataSourceStatus
|
|
447
|
+
Status?: DataSourceStatus;
|
|
448
448
|
Reason?: string;
|
|
449
449
|
}
|
|
450
450
|
export interface ScanEc2InstanceWithFindingsResult {
|
|
@@ -473,7 +473,7 @@ export interface CreateFilterRequest {
|
|
|
473
473
|
DetectorId: string | undefined;
|
|
474
474
|
Name: string | undefined;
|
|
475
475
|
Description?: string;
|
|
476
|
-
Action?: FilterAction
|
|
476
|
+
Action?: FilterAction;
|
|
477
477
|
Rank?: number;
|
|
478
478
|
FindingCriteria: FindingCriteria | undefined;
|
|
479
479
|
ClientToken?: string;
|
|
@@ -494,7 +494,7 @@ export type IpSetFormat = (typeof IpSetFormat)[keyof typeof IpSetFormat];
|
|
|
494
494
|
export interface CreateIPSetRequest {
|
|
495
495
|
DetectorId: string | undefined;
|
|
496
496
|
Name: string | undefined;
|
|
497
|
-
Format: IpSetFormat |
|
|
497
|
+
Format: IpSetFormat | undefined;
|
|
498
498
|
Location: string | undefined;
|
|
499
499
|
Activate: boolean | undefined;
|
|
500
500
|
ClientToken?: string;
|
|
@@ -525,7 +525,7 @@ export type DestinationType =
|
|
|
525
525
|
(typeof DestinationType)[keyof typeof DestinationType];
|
|
526
526
|
export interface CreatePublishingDestinationRequest {
|
|
527
527
|
DetectorId: string | undefined;
|
|
528
|
-
DestinationType: DestinationType |
|
|
528
|
+
DestinationType: DestinationType | undefined;
|
|
529
529
|
DestinationProperties: DestinationProperties | undefined;
|
|
530
530
|
ClientToken?: string;
|
|
531
531
|
}
|
|
@@ -550,7 +550,7 @@ export type ThreatIntelSetFormat =
|
|
|
550
550
|
export interface CreateThreatIntelSetRequest {
|
|
551
551
|
DetectorId: string | undefined;
|
|
552
552
|
Name: string | undefined;
|
|
553
|
-
Format: ThreatIntelSetFormat |
|
|
553
|
+
Format: ThreatIntelSetFormat | undefined;
|
|
554
554
|
Location: string | undefined;
|
|
555
555
|
Activate: boolean | undefined;
|
|
556
556
|
ClientToken?: string;
|
|
@@ -579,19 +579,19 @@ export declare const DataSource: {
|
|
|
579
579
|
};
|
|
580
580
|
export type DataSource = (typeof DataSource)[keyof typeof DataSource];
|
|
581
581
|
export interface DNSLogsConfigurationResult {
|
|
582
|
-
Status: DataSourceStatus |
|
|
582
|
+
Status: DataSourceStatus | undefined;
|
|
583
583
|
}
|
|
584
584
|
export interface FlowLogsConfigurationResult {
|
|
585
|
-
Status: DataSourceStatus |
|
|
585
|
+
Status: DataSourceStatus | undefined;
|
|
586
586
|
}
|
|
587
587
|
export interface KubernetesAuditLogsConfigurationResult {
|
|
588
|
-
Status: DataSourceStatus |
|
|
588
|
+
Status: DataSourceStatus | undefined;
|
|
589
589
|
}
|
|
590
590
|
export interface KubernetesConfigurationResult {
|
|
591
591
|
AuditLogs: KubernetesAuditLogsConfigurationResult | undefined;
|
|
592
592
|
}
|
|
593
593
|
export interface S3LogsConfigurationResult {
|
|
594
|
-
Status: DataSourceStatus |
|
|
594
|
+
Status: DataSourceStatus | undefined;
|
|
595
595
|
}
|
|
596
596
|
export interface DataSourceConfigurationsResult {
|
|
597
597
|
CloudTrail: CloudTrailConfigurationResult | undefined;
|
|
@@ -654,7 +654,7 @@ export interface FilterCondition {
|
|
|
654
654
|
LessThan?: number;
|
|
655
655
|
}
|
|
656
656
|
export interface FilterCriterion {
|
|
657
|
-
CriterionKey?: CriterionKey
|
|
657
|
+
CriterionKey?: CriterionKey;
|
|
658
658
|
FilterCondition?: FilterCondition;
|
|
659
659
|
}
|
|
660
660
|
export interface FilterCriteria {
|
|
@@ -662,7 +662,7 @@ export interface FilterCriteria {
|
|
|
662
662
|
}
|
|
663
663
|
export interface SortCriteria {
|
|
664
664
|
AttributeName?: string;
|
|
665
|
-
OrderBy?: OrderBy
|
|
665
|
+
OrderBy?: OrderBy;
|
|
666
666
|
}
|
|
667
667
|
export interface DescribeMalwareScansRequest {
|
|
668
668
|
DetectorId: string | undefined;
|
|
@@ -689,7 +689,7 @@ export declare const ScanResult: {
|
|
|
689
689
|
};
|
|
690
690
|
export type ScanResult = (typeof ScanResult)[keyof typeof ScanResult];
|
|
691
691
|
export interface ScanResultDetails {
|
|
692
|
-
ScanResult?: ScanResult
|
|
692
|
+
ScanResult?: ScanResult;
|
|
693
693
|
}
|
|
694
694
|
export declare const ScanStatus: {
|
|
695
695
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -711,7 +711,7 @@ export interface Scan {
|
|
|
711
711
|
DetectorId?: string;
|
|
712
712
|
AdminDetectorId?: string;
|
|
713
713
|
ScanId?: string;
|
|
714
|
-
ScanStatus?: ScanStatus
|
|
714
|
+
ScanStatus?: ScanStatus;
|
|
715
715
|
FailureReason?: string;
|
|
716
716
|
ScanStartTime?: Date;
|
|
717
717
|
ScanEndTime?: Date;
|
|
@@ -722,7 +722,7 @@ export interface Scan {
|
|
|
722
722
|
TotalBytes?: number;
|
|
723
723
|
FileCount?: number;
|
|
724
724
|
AttachedVolumes?: VolumeDetail[];
|
|
725
|
-
ScanType?: ScanType
|
|
725
|
+
ScanType?: ScanType;
|
|
726
726
|
}
|
|
727
727
|
export interface DescribeMalwareScansResponse {
|
|
728
728
|
Scans: Scan[] | undefined;
|
|
@@ -769,8 +769,8 @@ export declare const OrgFeatureAdditionalConfiguration: {
|
|
|
769
769
|
export type OrgFeatureAdditionalConfiguration =
|
|
770
770
|
(typeof OrgFeatureAdditionalConfiguration)[keyof typeof OrgFeatureAdditionalConfiguration];
|
|
771
771
|
export interface OrganizationAdditionalConfigurationResult {
|
|
772
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
773
|
-
AutoEnable?: OrgFeatureStatus
|
|
772
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
773
|
+
AutoEnable?: OrgFeatureStatus;
|
|
774
774
|
}
|
|
775
775
|
export declare const OrgFeature: {
|
|
776
776
|
readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
|
|
@@ -782,8 +782,8 @@ export declare const OrgFeature: {
|
|
|
782
782
|
};
|
|
783
783
|
export type OrgFeature = (typeof OrgFeature)[keyof typeof OrgFeature];
|
|
784
784
|
export interface OrganizationFeatureConfigurationResult {
|
|
785
|
-
Name?: OrgFeature
|
|
786
|
-
AutoEnable?: OrgFeatureStatus
|
|
785
|
+
Name?: OrgFeature;
|
|
786
|
+
AutoEnable?: OrgFeatureStatus;
|
|
787
787
|
AdditionalConfiguration?: OrganizationAdditionalConfigurationResult[];
|
|
788
788
|
}
|
|
789
789
|
export interface DescribeOrganizationConfigurationResponse {
|
|
@@ -792,7 +792,7 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
792
792
|
DataSources?: OrganizationDataSourceConfigurationsResult;
|
|
793
793
|
Features?: OrganizationFeatureConfigurationResult[];
|
|
794
794
|
NextToken?: string;
|
|
795
|
-
AutoEnableOrganizationMembers?: AutoEnableMembers
|
|
795
|
+
AutoEnableOrganizationMembers?: AutoEnableMembers;
|
|
796
796
|
}
|
|
797
797
|
export interface DescribePublishingDestinationRequest {
|
|
798
798
|
DetectorId: string | undefined;
|
|
@@ -808,19 +808,19 @@ export type PublishingStatus =
|
|
|
808
808
|
(typeof PublishingStatus)[keyof typeof PublishingStatus];
|
|
809
809
|
export interface DescribePublishingDestinationResponse {
|
|
810
810
|
DestinationId: string | undefined;
|
|
811
|
-
DestinationType: DestinationType |
|
|
812
|
-
Status: PublishingStatus |
|
|
811
|
+
DestinationType: DestinationType | undefined;
|
|
812
|
+
Status: PublishingStatus | undefined;
|
|
813
813
|
PublishingFailureStartTimestamp: number | undefined;
|
|
814
814
|
DestinationProperties: DestinationProperties | undefined;
|
|
815
815
|
}
|
|
816
816
|
export interface Destination {
|
|
817
817
|
DestinationId: string | undefined;
|
|
818
|
-
DestinationType: DestinationType |
|
|
819
|
-
Status: PublishingStatus |
|
|
818
|
+
DestinationType: DestinationType | undefined;
|
|
819
|
+
Status: PublishingStatus | undefined;
|
|
820
820
|
}
|
|
821
821
|
export interface DetectorAdditionalConfigurationResult {
|
|
822
|
-
Name?: FeatureAdditionalConfiguration
|
|
823
|
-
Status?: FeatureStatus
|
|
822
|
+
Name?: FeatureAdditionalConfiguration;
|
|
823
|
+
Status?: FeatureStatus;
|
|
824
824
|
UpdatedAt?: Date;
|
|
825
825
|
}
|
|
826
826
|
export declare const DetectorFeatureResult: {
|
|
@@ -837,8 +837,8 @@ export declare const DetectorFeatureResult: {
|
|
|
837
837
|
export type DetectorFeatureResult =
|
|
838
838
|
(typeof DetectorFeatureResult)[keyof typeof DetectorFeatureResult];
|
|
839
839
|
export interface DetectorFeatureConfigurationResult {
|
|
840
|
-
Name?: DetectorFeatureResult
|
|
841
|
-
Status?: FeatureStatus
|
|
840
|
+
Name?: DetectorFeatureResult;
|
|
841
|
+
Status?: FeatureStatus;
|
|
842
842
|
UpdatedAt?: Date;
|
|
843
843
|
AdditionalConfiguration?: DetectorAdditionalConfigurationResult[];
|
|
844
844
|
}
|
|
@@ -921,7 +921,7 @@ export interface EbsVolumeScanDetails {
|
|
|
921
921
|
TriggerFindingId?: string;
|
|
922
922
|
Sources?: string[];
|
|
923
923
|
ScanDetections?: ScanDetections;
|
|
924
|
-
ScanType?: ScanType
|
|
924
|
+
ScanType?: ScanType;
|
|
925
925
|
}
|
|
926
926
|
export interface Tag {
|
|
927
927
|
Key?: string;
|
|
@@ -1214,7 +1214,7 @@ export interface GetAdministratorAccountResponse {
|
|
|
1214
1214
|
export interface GetCoverageStatisticsRequest {
|
|
1215
1215
|
DetectorId: string | undefined;
|
|
1216
1216
|
FilterCriteria?: CoverageFilterCriteria;
|
|
1217
|
-
StatisticsType:
|
|
1217
|
+
StatisticsType: CoverageStatisticsType[] | undefined;
|
|
1218
1218
|
}
|
|
1219
1219
|
export interface GetCoverageStatisticsResponse {
|
|
1220
1220
|
CoverageStatistics?: CoverageStatistics;
|
|
@@ -1224,9 +1224,9 @@ export interface GetDetectorRequest {
|
|
|
1224
1224
|
}
|
|
1225
1225
|
export interface GetDetectorResponse {
|
|
1226
1226
|
CreatedAt?: string;
|
|
1227
|
-
FindingPublishingFrequency?: FindingPublishingFrequency
|
|
1227
|
+
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
1228
1228
|
ServiceRole: string | undefined;
|
|
1229
|
-
Status: DetectorStatus |
|
|
1229
|
+
Status: DetectorStatus | undefined;
|
|
1230
1230
|
UpdatedAt?: string;
|
|
1231
1231
|
DataSources?: DataSourceConfigurationsResult;
|
|
1232
1232
|
Tags?: Record<string, string>;
|
|
@@ -1239,7 +1239,7 @@ export interface GetFilterRequest {
|
|
|
1239
1239
|
export interface GetFilterResponse {
|
|
1240
1240
|
Name: string | undefined;
|
|
1241
1241
|
Description?: string;
|
|
1242
|
-
Action: FilterAction |
|
|
1242
|
+
Action: FilterAction | undefined;
|
|
1243
1243
|
Rank?: number;
|
|
1244
1244
|
FindingCriteria: FindingCriteria | undefined;
|
|
1245
1245
|
Tags?: Record<string, string>;
|
|
@@ -1254,7 +1254,7 @@ export interface GetFindingsResponse {
|
|
|
1254
1254
|
}
|
|
1255
1255
|
export interface GetFindingsStatisticsRequest {
|
|
1256
1256
|
DetectorId: string | undefined;
|
|
1257
|
-
FindingStatisticTypes:
|
|
1257
|
+
FindingStatisticTypes: FindingStatisticType[] | undefined;
|
|
1258
1258
|
FindingCriteria?: FindingCriteria;
|
|
1259
1259
|
}
|
|
1260
1260
|
export interface GetFindingsStatisticsResponse {
|
|
@@ -1280,9 +1280,9 @@ export declare const IpSetStatus: {
|
|
|
1280
1280
|
export type IpSetStatus = (typeof IpSetStatus)[keyof typeof IpSetStatus];
|
|
1281
1281
|
export interface GetIPSetResponse {
|
|
1282
1282
|
Name: string | undefined;
|
|
1283
|
-
Format: IpSetFormat |
|
|
1283
|
+
Format: IpSetFormat | undefined;
|
|
1284
1284
|
Location: string | undefined;
|
|
1285
|
-
Status: IpSetStatus |
|
|
1285
|
+
Status: IpSetStatus | undefined;
|
|
1286
1286
|
Tags?: Record<string, string>;
|
|
1287
1287
|
}
|
|
1288
1288
|
export interface GetMalwareScanSettingsRequest {
|
|
@@ -1301,12 +1301,12 @@ export interface ScanCondition {
|
|
|
1301
1301
|
MapEquals: ScanConditionPair[] | undefined;
|
|
1302
1302
|
}
|
|
1303
1303
|
export interface ScanResourceCriteria {
|
|
1304
|
-
Include?: Record<
|
|
1305
|
-
Exclude?: Record<
|
|
1304
|
+
Include?: Record<ScanCriterionKey, ScanCondition>;
|
|
1305
|
+
Exclude?: Record<ScanCriterionKey, ScanCondition>;
|
|
1306
1306
|
}
|
|
1307
1307
|
export interface GetMalwareScanSettingsResponse {
|
|
1308
1308
|
ScanResourceCriteria?: ScanResourceCriteria;
|
|
1309
|
-
EbsSnapshotPreservation?: EbsSnapshotPreservation
|
|
1309
|
+
EbsSnapshotPreservation?: EbsSnapshotPreservation;
|
|
1310
1310
|
}
|
|
1311
1311
|
export interface GetMasterAccountRequest {
|
|
1312
1312
|
DetectorId: string | undefined;
|
|
@@ -1325,13 +1325,13 @@ export interface GetMemberDetectorsRequest {
|
|
|
1325
1325
|
AccountIds: string[] | undefined;
|
|
1326
1326
|
}
|
|
1327
1327
|
export interface MemberAdditionalConfigurationResult {
|
|
1328
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
1329
|
-
Status?: FeatureStatus
|
|
1328
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
1329
|
+
Status?: FeatureStatus;
|
|
1330
1330
|
UpdatedAt?: Date;
|
|
1331
1331
|
}
|
|
1332
1332
|
export interface MemberFeaturesConfigurationResult {
|
|
1333
|
-
Name?: OrgFeature
|
|
1334
|
-
Status?: FeatureStatus
|
|
1333
|
+
Name?: OrgFeature;
|
|
1334
|
+
Status?: FeatureStatus;
|
|
1335
1335
|
UpdatedAt?: Date;
|
|
1336
1336
|
AdditionalConfiguration?: MemberAdditionalConfigurationResult[];
|
|
1337
1337
|
}
|
|
@@ -1387,9 +1387,9 @@ export type ThreatIntelSetStatus =
|
|
|
1387
1387
|
(typeof ThreatIntelSetStatus)[keyof typeof ThreatIntelSetStatus];
|
|
1388
1388
|
export interface GetThreatIntelSetResponse {
|
|
1389
1389
|
Name: string | undefined;
|
|
1390
|
-
Format: ThreatIntelSetFormat |
|
|
1390
|
+
Format: ThreatIntelSetFormat | undefined;
|
|
1391
1391
|
Location: string | undefined;
|
|
1392
|
-
Status: ThreatIntelSetStatus |
|
|
1392
|
+
Status: ThreatIntelSetStatus | undefined;
|
|
1393
1393
|
Tags?: Record<string, string>;
|
|
1394
1394
|
}
|
|
1395
1395
|
export declare const UsageFeature: {
|
|
@@ -1406,9 +1406,9 @@ export declare const UsageFeature: {
|
|
|
1406
1406
|
export type UsageFeature = (typeof UsageFeature)[keyof typeof UsageFeature];
|
|
1407
1407
|
export interface UsageCriteria {
|
|
1408
1408
|
AccountIds?: string[];
|
|
1409
|
-
DataSources?:
|
|
1409
|
+
DataSources?: DataSource[];
|
|
1410
1410
|
Resources?: string[];
|
|
1411
|
-
Features?:
|
|
1411
|
+
Features?: UsageFeature[];
|
|
1412
1412
|
}
|
|
1413
1413
|
export declare const UsageStatisticType: {
|
|
1414
1414
|
readonly SUM_BY_ACCOUNT: "SUM_BY_ACCOUNT";
|
|
@@ -1421,7 +1421,7 @@ export type UsageStatisticType =
|
|
|
1421
1421
|
(typeof UsageStatisticType)[keyof typeof UsageStatisticType];
|
|
1422
1422
|
export interface GetUsageStatisticsRequest {
|
|
1423
1423
|
DetectorId: string | undefined;
|
|
1424
|
-
UsageStatisticType: UsageStatisticType |
|
|
1424
|
+
UsageStatisticType: UsageStatisticType | undefined;
|
|
1425
1425
|
UsageCriteria: UsageCriteria | undefined;
|
|
1426
1426
|
Unit?: string;
|
|
1427
1427
|
MaxResults?: number;
|
|
@@ -1436,11 +1436,11 @@ export interface UsageAccountResult {
|
|
|
1436
1436
|
Total?: Total;
|
|
1437
1437
|
}
|
|
1438
1438
|
export interface UsageDataSourceResult {
|
|
1439
|
-
DataSource?: DataSource
|
|
1439
|
+
DataSource?: DataSource;
|
|
1440
1440
|
Total?: Total;
|
|
1441
1441
|
}
|
|
1442
1442
|
export interface UsageFeatureResult {
|
|
1443
|
-
Feature?: UsageFeature
|
|
1443
|
+
Feature?: UsageFeature;
|
|
1444
1444
|
Total?: Total;
|
|
1445
1445
|
}
|
|
1446
1446
|
export interface UsageResourceResult {
|
|
@@ -47,7 +47,7 @@ export interface UntagResourceResponse {}
|
|
|
47
47
|
export interface UpdateDetectorRequest {
|
|
48
48
|
DetectorId: string | undefined;
|
|
49
49
|
Enable?: boolean;
|
|
50
|
-
FindingPublishingFrequency?: FindingPublishingFrequency
|
|
50
|
+
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
51
51
|
DataSources?: DataSourceConfigurations;
|
|
52
52
|
Features?: DetectorFeatureConfiguration[];
|
|
53
53
|
}
|
|
@@ -56,7 +56,7 @@ export interface UpdateFilterRequest {
|
|
|
56
56
|
DetectorId: string | undefined;
|
|
57
57
|
FilterName: string | undefined;
|
|
58
58
|
Description?: string;
|
|
59
|
-
Action?: FilterAction
|
|
59
|
+
Action?: FilterAction;
|
|
60
60
|
Rank?: number;
|
|
61
61
|
FindingCriteria?: FindingCriteria;
|
|
62
62
|
}
|
|
@@ -66,7 +66,7 @@ export interface UpdateFilterResponse {
|
|
|
66
66
|
export interface UpdateFindingsFeedbackRequest {
|
|
67
67
|
DetectorId: string | undefined;
|
|
68
68
|
FindingIds: string[] | undefined;
|
|
69
|
-
Feedback: Feedback |
|
|
69
|
+
Feedback: Feedback | undefined;
|
|
70
70
|
Comments?: string;
|
|
71
71
|
}
|
|
72
72
|
export interface UpdateFindingsFeedbackResponse {}
|
|
@@ -81,16 +81,16 @@ export interface UpdateIPSetResponse {}
|
|
|
81
81
|
export interface UpdateMalwareScanSettingsRequest {
|
|
82
82
|
DetectorId: string | undefined;
|
|
83
83
|
ScanResourceCriteria?: ScanResourceCriteria;
|
|
84
|
-
EbsSnapshotPreservation?: EbsSnapshotPreservation
|
|
84
|
+
EbsSnapshotPreservation?: EbsSnapshotPreservation;
|
|
85
85
|
}
|
|
86
86
|
export interface UpdateMalwareScanSettingsResponse {}
|
|
87
87
|
export interface MemberAdditionalConfiguration {
|
|
88
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
89
|
-
Status?: FeatureStatus
|
|
88
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
89
|
+
Status?: FeatureStatus;
|
|
90
90
|
}
|
|
91
91
|
export interface MemberFeaturesConfiguration {
|
|
92
|
-
Name?: OrgFeature
|
|
93
|
-
Status?: FeatureStatus
|
|
92
|
+
Name?: OrgFeature;
|
|
93
|
+
Status?: FeatureStatus;
|
|
94
94
|
AdditionalConfiguration?: MemberAdditionalConfiguration[];
|
|
95
95
|
}
|
|
96
96
|
export interface UpdateMemberDetectorsRequest {
|
|
@@ -126,12 +126,12 @@ export interface OrganizationDataSourceConfigurations {
|
|
|
126
126
|
MalwareProtection?: OrganizationMalwareProtectionConfiguration;
|
|
127
127
|
}
|
|
128
128
|
export interface OrganizationAdditionalConfiguration {
|
|
129
|
-
Name?: OrgFeatureAdditionalConfiguration
|
|
130
|
-
AutoEnable?: OrgFeatureStatus
|
|
129
|
+
Name?: OrgFeatureAdditionalConfiguration;
|
|
130
|
+
AutoEnable?: OrgFeatureStatus;
|
|
131
131
|
}
|
|
132
132
|
export interface OrganizationFeatureConfiguration {
|
|
133
|
-
Name?: OrgFeature
|
|
134
|
-
AutoEnable?: OrgFeatureStatus
|
|
133
|
+
Name?: OrgFeature;
|
|
134
|
+
AutoEnable?: OrgFeatureStatus;
|
|
135
135
|
AdditionalConfiguration?: OrganizationAdditionalConfiguration[];
|
|
136
136
|
}
|
|
137
137
|
export interface UpdateOrganizationConfigurationRequest {
|
|
@@ -139,7 +139,7 @@ export interface UpdateOrganizationConfigurationRequest {
|
|
|
139
139
|
AutoEnable?: boolean;
|
|
140
140
|
DataSources?: OrganizationDataSourceConfigurations;
|
|
141
141
|
Features?: OrganizationFeatureConfiguration[];
|
|
142
|
-
AutoEnableOrganizationMembers?: AutoEnableMembers
|
|
142
|
+
AutoEnableOrganizationMembers?: AutoEnableMembers;
|
|
143
143
|
}
|
|
144
144
|
export interface UpdateOrganizationConfigurationResponse {}
|
|
145
145
|
export interface UpdatePublishingDestinationRequest {
|
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.429.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|