@aws-sdk/client-macie2 3.301.0 → 3.306.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 +304 -358
- package/dist-cjs/models/models_1.js +6 -7
- package/dist-es/models/models_0.js +304 -358
- package/dist-es/models/models_1.js +6 -7
- package/dist-types/models/models_0.d.ts +574 -304
- package/dist-types/models/models_1.d.ts +11 -6
- package/dist-types/ts3.4/models/models_0.d.ts +392 -304
- package/dist-types/ts3.4/models/models_1.d.ts +8 -6
- package/package.json +35 -35
|
@@ -2,11 +2,16 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { Macie2ServiceException as __BaseException } from "./Macie2ServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
DISABLING_IN_PROGRESS
|
|
8
|
-
ENABLED
|
|
9
|
-
}
|
|
7
|
+
export declare const AdminStatus: {
|
|
8
|
+
readonly DISABLING_IN_PROGRESS: "DISABLING_IN_PROGRESS";
|
|
9
|
+
readonly ENABLED: "ENABLED";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type AdminStatus = (typeof AdminStatus)[keyof typeof AdminStatus];
|
|
10
15
|
/**
|
|
11
16
|
* @public
|
|
12
17
|
* <p>Provides information about the delegated Amazon Macie administrator account for an organization in Organizations.</p>
|
|
@@ -83,34 +88,54 @@ export interface BatchGetCustomDataIdentifierSummary {
|
|
|
83
88
|
}
|
|
84
89
|
/**
|
|
85
90
|
* @public
|
|
91
|
+
* @enum
|
|
86
92
|
*/
|
|
87
|
-
export declare
|
|
88
|
-
FALSE
|
|
89
|
-
TRUE
|
|
90
|
-
UNKNOWN
|
|
91
|
-
}
|
|
93
|
+
export declare const AllowsUnencryptedObjectUploads: {
|
|
94
|
+
readonly FALSE: "FALSE";
|
|
95
|
+
readonly TRUE: "TRUE";
|
|
96
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
97
|
+
};
|
|
92
98
|
/**
|
|
93
99
|
* @public
|
|
94
100
|
*/
|
|
95
|
-
export
|
|
96
|
-
ACCESS_DENIED = "ACCESS_DENIED"
|
|
97
|
-
}
|
|
101
|
+
export type AllowsUnencryptedObjectUploads = (typeof AllowsUnencryptedObjectUploads)[keyof typeof AllowsUnencryptedObjectUploads];
|
|
98
102
|
/**
|
|
99
103
|
* @public
|
|
104
|
+
* @enum
|
|
100
105
|
*/
|
|
101
|
-
export declare
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
UNKNOWN = "UNKNOWN"
|
|
105
|
-
}
|
|
106
|
+
export declare const BucketMetadataErrorCode: {
|
|
107
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
108
|
+
};
|
|
106
109
|
/**
|
|
107
110
|
* @public
|
|
108
111
|
*/
|
|
109
|
-
export
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
export type BucketMetadataErrorCode = (typeof BucketMetadataErrorCode)[keyof typeof BucketMetadataErrorCode];
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
* @enum
|
|
116
|
+
*/
|
|
117
|
+
export declare const IsDefinedInJob: {
|
|
118
|
+
readonly FALSE: "FALSE";
|
|
119
|
+
readonly TRUE: "TRUE";
|
|
120
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type IsDefinedInJob = (typeof IsDefinedInJob)[keyof typeof IsDefinedInJob];
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* @enum
|
|
129
|
+
*/
|
|
130
|
+
export declare const IsMonitoredByJob: {
|
|
131
|
+
readonly FALSE: "FALSE";
|
|
132
|
+
readonly TRUE: "TRUE";
|
|
133
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
export type IsMonitoredByJob = (typeof IsMonitoredByJob)[keyof typeof IsMonitoredByJob];
|
|
114
139
|
/**
|
|
115
140
|
* @public
|
|
116
141
|
* <p>Specifies whether any one-time or recurring classification jobs are configured to analyze data in an S3 bucket, and, if so, the details of the job that ran most recently.</p>
|
|
@@ -161,12 +186,17 @@ export interface ObjectCountByEncryptionType {
|
|
|
161
186
|
}
|
|
162
187
|
/**
|
|
163
188
|
* @public
|
|
189
|
+
* @enum
|
|
164
190
|
*/
|
|
165
|
-
export declare
|
|
166
|
-
NOT_PUBLIC
|
|
167
|
-
PUBLIC
|
|
168
|
-
UNKNOWN
|
|
169
|
-
}
|
|
191
|
+
export declare const EffectivePermission: {
|
|
192
|
+
readonly NOT_PUBLIC: "NOT_PUBLIC";
|
|
193
|
+
readonly PUBLIC: "PUBLIC";
|
|
194
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export type EffectivePermission = (typeof EffectivePermission)[keyof typeof EffectivePermission];
|
|
170
200
|
/**
|
|
171
201
|
* @public
|
|
172
202
|
* <p>Provides information about the block public access settings for an S3 bucket. These settings can apply to a bucket at the account or bucket level. For detailed information about each setting, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-control-block-public-access.html">Blocking public access to your Amazon S3 storage</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
|
|
@@ -293,12 +323,17 @@ export interface ReplicationDetails {
|
|
|
293
323
|
}
|
|
294
324
|
/**
|
|
295
325
|
* @public
|
|
326
|
+
* @enum
|
|
296
327
|
*/
|
|
297
|
-
export declare
|
|
298
|
-
AES256
|
|
299
|
-
NONE
|
|
300
|
-
aws_kms
|
|
301
|
-
}
|
|
328
|
+
export declare const Type: {
|
|
329
|
+
readonly AES256: "AES256";
|
|
330
|
+
readonly NONE: "NONE";
|
|
331
|
+
readonly aws_kms: "aws:kms";
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
302
337
|
/**
|
|
303
338
|
* @public
|
|
304
339
|
* <p>Provides information about the default server-side encryption settings for an S3 bucket. For detailed information about these settings, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-encryption.html">Setting default server-side encryption behavior for Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
|
|
@@ -315,13 +350,18 @@ export interface BucketServerSideEncryption {
|
|
|
315
350
|
}
|
|
316
351
|
/**
|
|
317
352
|
* @public
|
|
353
|
+
* @enum
|
|
318
354
|
*/
|
|
319
|
-
export declare
|
|
320
|
-
EXTERNAL
|
|
321
|
-
INTERNAL
|
|
322
|
-
NOT_SHARED
|
|
323
|
-
UNKNOWN
|
|
324
|
-
}
|
|
355
|
+
export declare const SharedAccess: {
|
|
356
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
357
|
+
readonly INTERNAL: "INTERNAL";
|
|
358
|
+
readonly NOT_SHARED: "NOT_SHARED";
|
|
359
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
364
|
+
export type SharedAccess = (typeof SharedAccess)[keyof typeof SharedAccess];
|
|
325
365
|
/**
|
|
326
366
|
* @public
|
|
327
367
|
* <p>Provides information about the tags that are associated with an S3 bucket or object. Each tag consists of a required tag key and an associated tag value.</p>
|
|
@@ -480,26 +520,36 @@ export interface ClassificationScopeSummary {
|
|
|
480
520
|
}
|
|
481
521
|
/**
|
|
482
522
|
* @public
|
|
523
|
+
* @enum
|
|
483
524
|
*/
|
|
484
|
-
export declare
|
|
485
|
-
CONTAINS
|
|
486
|
-
EQ
|
|
487
|
-
GT
|
|
488
|
-
GTE
|
|
489
|
-
LT
|
|
490
|
-
LTE
|
|
491
|
-
NE
|
|
492
|
-
STARTS_WITH
|
|
493
|
-
}
|
|
525
|
+
export declare const JobComparator: {
|
|
526
|
+
readonly CONTAINS: "CONTAINS";
|
|
527
|
+
readonly EQ: "EQ";
|
|
528
|
+
readonly GT: "GT";
|
|
529
|
+
readonly GTE: "GTE";
|
|
530
|
+
readonly LT: "LT";
|
|
531
|
+
readonly LTE: "LTE";
|
|
532
|
+
readonly NE: "NE";
|
|
533
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
534
|
+
};
|
|
494
535
|
/**
|
|
495
536
|
* @public
|
|
496
537
|
*/
|
|
497
|
-
export
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
538
|
+
export type JobComparator = (typeof JobComparator)[keyof typeof JobComparator];
|
|
539
|
+
/**
|
|
540
|
+
* @public
|
|
541
|
+
* @enum
|
|
542
|
+
*/
|
|
543
|
+
export declare const SimpleCriterionKeyForJob: {
|
|
544
|
+
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
545
|
+
readonly S3_BUCKET_EFFECTIVE_PERMISSION: "S3_BUCKET_EFFECTIVE_PERMISSION";
|
|
546
|
+
readonly S3_BUCKET_NAME: "S3_BUCKET_NAME";
|
|
547
|
+
readonly S3_BUCKET_SHARED_ACCESS: "S3_BUCKET_SHARED_ACCESS";
|
|
548
|
+
};
|
|
549
|
+
/**
|
|
550
|
+
* @public
|
|
551
|
+
*/
|
|
552
|
+
export type SimpleCriterionKeyForJob = (typeof SimpleCriterionKeyForJob)[keyof typeof SimpleCriterionKeyForJob];
|
|
503
553
|
/**
|
|
504
554
|
* @public
|
|
505
555
|
* <p>Specifies a property-based condition that determines whether an S3 bucket is included or excluded from a classification job.</p>
|
|
@@ -598,11 +648,16 @@ export interface DetectedDataDetails {
|
|
|
598
648
|
}
|
|
599
649
|
/**
|
|
600
650
|
* @public
|
|
651
|
+
* @enum
|
|
601
652
|
*/
|
|
602
|
-
export declare
|
|
603
|
-
CUSTOM
|
|
604
|
-
MANAGED
|
|
605
|
-
}
|
|
653
|
+
export declare const DataIdentifierType: {
|
|
654
|
+
readonly CUSTOM: "CUSTOM";
|
|
655
|
+
readonly MANAGED: "MANAGED";
|
|
656
|
+
};
|
|
657
|
+
/**
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
660
|
+
export type DataIdentifierType = (typeof DataIdentifierType)[keyof typeof DataIdentifierType];
|
|
606
661
|
/**
|
|
607
662
|
* @public
|
|
608
663
|
* <p>Provides information about a type of sensitive data that Amazon Macie found in an S3 bucket while performing automated sensitive data discovery for the bucket. The information also specifies the custom data identifier or managed data identifier that detected the data. This information is available only if automated sensitive data discovery is currently enabled for your account.</p>
|
|
@@ -635,18 +690,28 @@ export interface Detection {
|
|
|
635
690
|
}
|
|
636
691
|
/**
|
|
637
692
|
* @public
|
|
693
|
+
* @enum
|
|
638
694
|
*/
|
|
639
|
-
export declare
|
|
640
|
-
CLASSIFICATION
|
|
641
|
-
POLICY
|
|
642
|
-
}
|
|
695
|
+
export declare const FindingCategory: {
|
|
696
|
+
readonly CLASSIFICATION: "CLASSIFICATION";
|
|
697
|
+
readonly POLICY: "POLICY";
|
|
698
|
+
};
|
|
643
699
|
/**
|
|
644
700
|
* @public
|
|
645
701
|
*/
|
|
646
|
-
export
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
702
|
+
export type FindingCategory = (typeof FindingCategory)[keyof typeof FindingCategory];
|
|
703
|
+
/**
|
|
704
|
+
* @public
|
|
705
|
+
* @enum
|
|
706
|
+
*/
|
|
707
|
+
export declare const OriginType: {
|
|
708
|
+
readonly AUTOMATED_SENSITIVE_DATA_DISCOVERY: "AUTOMATED_SENSITIVE_DATA_DISCOVERY";
|
|
709
|
+
readonly SENSITIVE_DATA_DISCOVERY_JOB: "SENSITIVE_DATA_DISCOVERY_JOB";
|
|
710
|
+
};
|
|
711
|
+
/**
|
|
712
|
+
* @public
|
|
713
|
+
*/
|
|
714
|
+
export type OriginType = (typeof OriginType)[keyof typeof OriginType];
|
|
650
715
|
/**
|
|
651
716
|
* @public
|
|
652
717
|
* <p>Specifies the location of an occurrence of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file.</p>
|
|
@@ -783,13 +848,18 @@ export interface CustomDataIdentifiers {
|
|
|
783
848
|
}
|
|
784
849
|
/**
|
|
785
850
|
* @public
|
|
851
|
+
* @enum
|
|
786
852
|
*/
|
|
787
|
-
export declare
|
|
788
|
-
CREDENTIALS
|
|
789
|
-
CUSTOM_IDENTIFIER
|
|
790
|
-
FINANCIAL_INFORMATION
|
|
791
|
-
PERSONAL_INFORMATION
|
|
792
|
-
}
|
|
853
|
+
export declare const SensitiveDataItemCategory: {
|
|
854
|
+
readonly CREDENTIALS: "CREDENTIALS";
|
|
855
|
+
readonly CUSTOM_IDENTIFIER: "CUSTOM_IDENTIFIER";
|
|
856
|
+
readonly FINANCIAL_INFORMATION: "FINANCIAL_INFORMATION";
|
|
857
|
+
readonly PERSONAL_INFORMATION: "PERSONAL_INFORMATION";
|
|
858
|
+
};
|
|
859
|
+
/**
|
|
860
|
+
* @public
|
|
861
|
+
*/
|
|
862
|
+
export type SensitiveDataItemCategory = (typeof SensitiveDataItemCategory)[keyof typeof SensitiveDataItemCategory];
|
|
793
863
|
/**
|
|
794
864
|
* @public
|
|
795
865
|
* <p>Provides information about a type of sensitive data that was detected by a managed data identifier and produced a sensitive data finding.</p>
|
|
@@ -898,10 +968,15 @@ export interface ClassificationDetails {
|
|
|
898
968
|
}
|
|
899
969
|
/**
|
|
900
970
|
* @public
|
|
971
|
+
* @enum
|
|
901
972
|
*/
|
|
902
|
-
export declare
|
|
903
|
-
AWS_API_CALL
|
|
904
|
-
}
|
|
973
|
+
export declare const FindingActionType: {
|
|
974
|
+
readonly AWS_API_CALL: "AWS_API_CALL";
|
|
975
|
+
};
|
|
976
|
+
/**
|
|
977
|
+
* @public
|
|
978
|
+
*/
|
|
979
|
+
export type FindingActionType = (typeof FindingActionType)[keyof typeof FindingActionType];
|
|
905
980
|
/**
|
|
906
981
|
* @public
|
|
907
982
|
* <p>Provides information about an API operation that an entity invoked for an affected resource.</p>
|
|
@@ -1206,15 +1281,20 @@ export interface UserIdentityRoot {
|
|
|
1206
1281
|
}
|
|
1207
1282
|
/**
|
|
1208
1283
|
* @public
|
|
1284
|
+
* @enum
|
|
1209
1285
|
*/
|
|
1210
|
-
export declare
|
|
1211
|
-
AWSAccount
|
|
1212
|
-
AWSService
|
|
1213
|
-
AssumedRole
|
|
1214
|
-
FederatedUser
|
|
1215
|
-
IAMUser
|
|
1216
|
-
Root
|
|
1217
|
-
}
|
|
1286
|
+
export declare const UserIdentityType: {
|
|
1287
|
+
readonly AWSAccount: "AWSAccount";
|
|
1288
|
+
readonly AWSService: "AWSService";
|
|
1289
|
+
readonly AssumedRole: "AssumedRole";
|
|
1290
|
+
readonly FederatedUser: "FederatedUser";
|
|
1291
|
+
readonly IAMUser: "IAMUser";
|
|
1292
|
+
readonly Root: "Root";
|
|
1293
|
+
};
|
|
1294
|
+
/**
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
export type UserIdentityType = (typeof UserIdentityType)[keyof typeof UserIdentityType];
|
|
1218
1298
|
/**
|
|
1219
1299
|
* @public
|
|
1220
1300
|
* <p>Provides information about the type and other characteristics of an entity that performed an action on an affected resource.</p>
|
|
@@ -1283,13 +1363,18 @@ export interface PolicyDetails {
|
|
|
1283
1363
|
}
|
|
1284
1364
|
/**
|
|
1285
1365
|
* @public
|
|
1366
|
+
* @enum
|
|
1286
1367
|
*/
|
|
1287
|
-
export declare
|
|
1288
|
-
AES256
|
|
1289
|
-
NONE
|
|
1290
|
-
UNKNOWN
|
|
1291
|
-
aws_kms
|
|
1292
|
-
}
|
|
1368
|
+
export declare const EncryptionType: {
|
|
1369
|
+
readonly AES256: "AES256";
|
|
1370
|
+
readonly NONE: "NONE";
|
|
1371
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1372
|
+
readonly aws_kms: "aws:kms";
|
|
1373
|
+
};
|
|
1374
|
+
/**
|
|
1375
|
+
* @public
|
|
1376
|
+
*/
|
|
1377
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
1293
1378
|
/**
|
|
1294
1379
|
* @public
|
|
1295
1380
|
* <p>Provides information about the default server-side encryption settings for an S3 bucket or the encryption settings for an S3 object.</p>
|
|
@@ -1358,18 +1443,23 @@ export interface S3Bucket {
|
|
|
1358
1443
|
}
|
|
1359
1444
|
/**
|
|
1360
1445
|
* @public
|
|
1446
|
+
* @enum
|
|
1361
1447
|
*/
|
|
1362
|
-
export declare
|
|
1363
|
-
DEEP_ARCHIVE
|
|
1364
|
-
GLACIER
|
|
1365
|
-
GLACIER_IR
|
|
1366
|
-
INTELLIGENT_TIERING
|
|
1367
|
-
ONEZONE_IA
|
|
1368
|
-
OUTPOSTS
|
|
1369
|
-
REDUCED_REDUNDANCY
|
|
1370
|
-
STANDARD
|
|
1371
|
-
STANDARD_IA
|
|
1372
|
-
}
|
|
1448
|
+
export declare const StorageClass: {
|
|
1449
|
+
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
1450
|
+
readonly GLACIER: "GLACIER";
|
|
1451
|
+
readonly GLACIER_IR: "GLACIER_IR";
|
|
1452
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
1453
|
+
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
1454
|
+
readonly OUTPOSTS: "OUTPOSTS";
|
|
1455
|
+
readonly REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY";
|
|
1456
|
+
readonly STANDARD: "STANDARD";
|
|
1457
|
+
readonly STANDARD_IA: "STANDARD_IA";
|
|
1458
|
+
};
|
|
1459
|
+
/**
|
|
1460
|
+
* @public
|
|
1461
|
+
*/
|
|
1462
|
+
export type StorageClass = (typeof StorageClass)[keyof typeof StorageClass];
|
|
1373
1463
|
/**
|
|
1374
1464
|
* @public
|
|
1375
1465
|
* <p>Provides information about the S3 object that a finding applies to.</p>
|
|
@@ -1440,12 +1530,17 @@ export interface ResourcesAffected {
|
|
|
1440
1530
|
}
|
|
1441
1531
|
/**
|
|
1442
1532
|
* @public
|
|
1533
|
+
* @enum
|
|
1443
1534
|
*/
|
|
1444
|
-
export declare
|
|
1445
|
-
High
|
|
1446
|
-
Low
|
|
1447
|
-
Medium
|
|
1448
|
-
}
|
|
1535
|
+
export declare const SeverityDescription: {
|
|
1536
|
+
readonly High: "High";
|
|
1537
|
+
readonly Low: "Low";
|
|
1538
|
+
readonly Medium: "Medium";
|
|
1539
|
+
};
|
|
1540
|
+
/**
|
|
1541
|
+
* @public
|
|
1542
|
+
*/
|
|
1543
|
+
export type SeverityDescription = (typeof SeverityDescription)[keyof typeof SeverityDescription];
|
|
1449
1544
|
/**
|
|
1450
1545
|
* @public
|
|
1451
1546
|
* <p>Provides the numerical and qualitative representations of a finding's severity.</p>
|
|
@@ -1462,20 +1557,25 @@ export interface Severity {
|
|
|
1462
1557
|
}
|
|
1463
1558
|
/**
|
|
1464
1559
|
* @public
|
|
1560
|
+
* @enum
|
|
1465
1561
|
*/
|
|
1466
|
-
export declare
|
|
1467
|
-
Policy_IAMUser_S3BlockPublicAccessDisabled
|
|
1468
|
-
Policy_IAMUser_S3BucketEncryptionDisabled
|
|
1469
|
-
Policy_IAMUser_S3BucketPublic
|
|
1470
|
-
Policy_IAMUser_S3BucketReplicatedExternally
|
|
1471
|
-
Policy_IAMUser_S3BucketSharedExternally
|
|
1472
|
-
Policy_IAMUser_S3BucketSharedWithCloudFront
|
|
1473
|
-
SensitiveData_S3Object_Credentials
|
|
1474
|
-
SensitiveData_S3Object_CustomIdentifier
|
|
1475
|
-
SensitiveData_S3Object_Financial
|
|
1476
|
-
SensitiveData_S3Object_Multiple
|
|
1477
|
-
SensitiveData_S3Object_Personal
|
|
1478
|
-
}
|
|
1562
|
+
export declare const FindingType: {
|
|
1563
|
+
readonly Policy_IAMUser_S3BlockPublicAccessDisabled: "Policy:IAMUser/S3BlockPublicAccessDisabled";
|
|
1564
|
+
readonly Policy_IAMUser_S3BucketEncryptionDisabled: "Policy:IAMUser/S3BucketEncryptionDisabled";
|
|
1565
|
+
readonly Policy_IAMUser_S3BucketPublic: "Policy:IAMUser/S3BucketPublic";
|
|
1566
|
+
readonly Policy_IAMUser_S3BucketReplicatedExternally: "Policy:IAMUser/S3BucketReplicatedExternally";
|
|
1567
|
+
readonly Policy_IAMUser_S3BucketSharedExternally: "Policy:IAMUser/S3BucketSharedExternally";
|
|
1568
|
+
readonly Policy_IAMUser_S3BucketSharedWithCloudFront: "Policy:IAMUser/S3BucketSharedWithCloudFront";
|
|
1569
|
+
readonly SensitiveData_S3Object_Credentials: "SensitiveData:S3Object/Credentials";
|
|
1570
|
+
readonly SensitiveData_S3Object_CustomIdentifier: "SensitiveData:S3Object/CustomIdentifier";
|
|
1571
|
+
readonly SensitiveData_S3Object_Financial: "SensitiveData:S3Object/Financial";
|
|
1572
|
+
readonly SensitiveData_S3Object_Multiple: "SensitiveData:S3Object/Multiple";
|
|
1573
|
+
readonly SensitiveData_S3Object_Personal: "SensitiveData:S3Object/Personal";
|
|
1574
|
+
};
|
|
1575
|
+
/**
|
|
1576
|
+
* @public
|
|
1577
|
+
*/
|
|
1578
|
+
export type FindingType = (typeof FindingType)[keyof typeof FindingType];
|
|
1479
1579
|
/**
|
|
1480
1580
|
* @public
|
|
1481
1581
|
* <p>Provides the details of a finding.</p>
|
|
@@ -1556,11 +1656,16 @@ export interface Finding {
|
|
|
1556
1656
|
}
|
|
1557
1657
|
/**
|
|
1558
1658
|
* @public
|
|
1659
|
+
* @enum
|
|
1559
1660
|
*/
|
|
1560
|
-
export declare
|
|
1561
|
-
ARCHIVE
|
|
1562
|
-
NOOP
|
|
1563
|
-
}
|
|
1661
|
+
export declare const FindingsFilterAction: {
|
|
1662
|
+
readonly ARCHIVE: "ARCHIVE";
|
|
1663
|
+
readonly NOOP: "NOOP";
|
|
1664
|
+
};
|
|
1665
|
+
/**
|
|
1666
|
+
* @public
|
|
1667
|
+
*/
|
|
1668
|
+
export type FindingsFilterAction = (typeof FindingsFilterAction)[keyof typeof FindingsFilterAction];
|
|
1564
1669
|
/**
|
|
1565
1670
|
* @public
|
|
1566
1671
|
* <p>Provides information about a findings filter.</p>
|
|
@@ -1603,19 +1708,24 @@ export interface GroupCount {
|
|
|
1603
1708
|
}
|
|
1604
1709
|
/**
|
|
1605
1710
|
* @public
|
|
1711
|
+
* @enum
|
|
1606
1712
|
*/
|
|
1607
|
-
export declare
|
|
1608
|
-
AccountSuspended
|
|
1609
|
-
Created
|
|
1610
|
-
EmailVerificationFailed
|
|
1611
|
-
EmailVerificationInProgress
|
|
1612
|
-
Enabled
|
|
1613
|
-
Invited
|
|
1614
|
-
Paused
|
|
1615
|
-
RegionDisabled
|
|
1616
|
-
Removed
|
|
1617
|
-
Resigned
|
|
1618
|
-
}
|
|
1713
|
+
export declare const RelationshipStatus: {
|
|
1714
|
+
readonly AccountSuspended: "AccountSuspended";
|
|
1715
|
+
readonly Created: "Created";
|
|
1716
|
+
readonly EmailVerificationFailed: "EmailVerificationFailed";
|
|
1717
|
+
readonly EmailVerificationInProgress: "EmailVerificationInProgress";
|
|
1718
|
+
readonly Enabled: "Enabled";
|
|
1719
|
+
readonly Invited: "Invited";
|
|
1720
|
+
readonly Paused: "Paused";
|
|
1721
|
+
readonly RegionDisabled: "RegionDisabled";
|
|
1722
|
+
readonly Removed: "Removed";
|
|
1723
|
+
readonly Resigned: "Resigned";
|
|
1724
|
+
};
|
|
1725
|
+
/**
|
|
1726
|
+
* @public
|
|
1727
|
+
*/
|
|
1728
|
+
export type RelationshipStatus = (typeof RelationshipStatus)[keyof typeof RelationshipStatus];
|
|
1619
1729
|
/**
|
|
1620
1730
|
* @public
|
|
1621
1731
|
* <p>Provides information about an Amazon Macie membership invitation.</p>
|
|
@@ -1640,13 +1750,18 @@ export interface Invitation {
|
|
|
1640
1750
|
}
|
|
1641
1751
|
/**
|
|
1642
1752
|
* @public
|
|
1753
|
+
* @enum
|
|
1643
1754
|
*/
|
|
1644
|
-
export declare
|
|
1645
|
-
OBJECT_EXTENSION
|
|
1646
|
-
OBJECT_KEY
|
|
1647
|
-
OBJECT_LAST_MODIFIED_DATE
|
|
1648
|
-
OBJECT_SIZE
|
|
1649
|
-
}
|
|
1755
|
+
export declare const ScopeFilterKey: {
|
|
1756
|
+
readonly OBJECT_EXTENSION: "OBJECT_EXTENSION";
|
|
1757
|
+
readonly OBJECT_KEY: "OBJECT_KEY";
|
|
1758
|
+
readonly OBJECT_LAST_MODIFIED_DATE: "OBJECT_LAST_MODIFIED_DATE";
|
|
1759
|
+
readonly OBJECT_SIZE: "OBJECT_SIZE";
|
|
1760
|
+
};
|
|
1761
|
+
/**
|
|
1762
|
+
* @public
|
|
1763
|
+
*/
|
|
1764
|
+
export type ScopeFilterKey = (typeof ScopeFilterKey)[keyof typeof ScopeFilterKey];
|
|
1650
1765
|
/**
|
|
1651
1766
|
* @public
|
|
1652
1767
|
* <p>Specifies a property-based condition that determines whether an S3 object is included or excluded from a classification job.</p>
|
|
@@ -1681,10 +1796,15 @@ export interface TagValuePair {
|
|
|
1681
1796
|
}
|
|
1682
1797
|
/**
|
|
1683
1798
|
* @public
|
|
1799
|
+
* @enum
|
|
1684
1800
|
*/
|
|
1685
|
-
export declare
|
|
1686
|
-
S3_OBJECT
|
|
1687
|
-
}
|
|
1801
|
+
export declare const TagTarget: {
|
|
1802
|
+
readonly S3_OBJECT: "S3_OBJECT";
|
|
1803
|
+
};
|
|
1804
|
+
/**
|
|
1805
|
+
* @public
|
|
1806
|
+
*/
|
|
1807
|
+
export type TagTarget = (typeof TagTarget)[keyof typeof TagTarget];
|
|
1688
1808
|
/**
|
|
1689
1809
|
* @public
|
|
1690
1810
|
* <p>Specifies a tag-based condition that determines whether an S3 object is included or excluded from a classification job.</p>
|
|
@@ -1761,29 +1881,44 @@ export interface S3BucketDefinitionForJob {
|
|
|
1761
1881
|
}
|
|
1762
1882
|
/**
|
|
1763
1883
|
* @public
|
|
1884
|
+
* @enum
|
|
1764
1885
|
*/
|
|
1765
|
-
export declare
|
|
1766
|
-
CANCELLED
|
|
1767
|
-
COMPLETE
|
|
1768
|
-
IDLE
|
|
1769
|
-
PAUSED
|
|
1770
|
-
RUNNING
|
|
1771
|
-
USER_PAUSED
|
|
1772
|
-
}
|
|
1886
|
+
export declare const JobStatus: {
|
|
1887
|
+
readonly CANCELLED: "CANCELLED";
|
|
1888
|
+
readonly COMPLETE: "COMPLETE";
|
|
1889
|
+
readonly IDLE: "IDLE";
|
|
1890
|
+
readonly PAUSED: "PAUSED";
|
|
1891
|
+
readonly RUNNING: "RUNNING";
|
|
1892
|
+
readonly USER_PAUSED: "USER_PAUSED";
|
|
1893
|
+
};
|
|
1773
1894
|
/**
|
|
1774
1895
|
* @public
|
|
1775
1896
|
*/
|
|
1776
|
-
export
|
|
1777
|
-
ONE_TIME = "ONE_TIME",
|
|
1778
|
-
SCHEDULED = "SCHEDULED"
|
|
1779
|
-
}
|
|
1897
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
1780
1898
|
/**
|
|
1781
1899
|
* @public
|
|
1900
|
+
* @enum
|
|
1782
1901
|
*/
|
|
1783
|
-
export declare
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
}
|
|
1902
|
+
export declare const JobType: {
|
|
1903
|
+
readonly ONE_TIME: "ONE_TIME";
|
|
1904
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1905
|
+
};
|
|
1906
|
+
/**
|
|
1907
|
+
* @public
|
|
1908
|
+
*/
|
|
1909
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
1910
|
+
/**
|
|
1911
|
+
* @public
|
|
1912
|
+
* @enum
|
|
1913
|
+
*/
|
|
1914
|
+
export declare const LastRunErrorStatusCode: {
|
|
1915
|
+
readonly ERROR: "ERROR";
|
|
1916
|
+
readonly NONE: "NONE";
|
|
1917
|
+
};
|
|
1918
|
+
/**
|
|
1919
|
+
* @public
|
|
1920
|
+
*/
|
|
1921
|
+
export type LastRunErrorStatusCode = (typeof LastRunErrorStatusCode)[keyof typeof LastRunErrorStatusCode];
|
|
1787
1922
|
/**
|
|
1788
1923
|
* @public
|
|
1789
1924
|
* <p>Specifies whether any account- or bucket-level access errors occurred when a classification job ran. For information about using logging data to investigate these errors, see <a href="https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-monitor-cw-logs.html">Monitoring sensitive data discovery jobs</a> in the <i>Amazon Macie User Guide</i>.</p>
|
|
@@ -1856,13 +1991,18 @@ export interface JobSummary {
|
|
|
1856
1991
|
}
|
|
1857
1992
|
/**
|
|
1858
1993
|
* @public
|
|
1994
|
+
* @enum
|
|
1859
1995
|
*/
|
|
1860
|
-
export declare
|
|
1861
|
-
createdAt
|
|
1862
|
-
jobStatus
|
|
1863
|
-
jobType
|
|
1864
|
-
name
|
|
1865
|
-
}
|
|
1996
|
+
export declare const ListJobsFilterKey: {
|
|
1997
|
+
readonly createdAt: "createdAt";
|
|
1998
|
+
readonly jobStatus: "jobStatus";
|
|
1999
|
+
readonly jobType: "jobType";
|
|
2000
|
+
readonly name: "name";
|
|
2001
|
+
};
|
|
2002
|
+
/**
|
|
2003
|
+
* @public
|
|
2004
|
+
*/
|
|
2005
|
+
export type ListJobsFilterKey = (typeof ListJobsFilterKey)[keyof typeof ListJobsFilterKey];
|
|
1866
2006
|
/**
|
|
1867
2007
|
* @public
|
|
1868
2008
|
* <p>Specifies a condition that filters the results of a request for information about classification jobs. Each condition consists of a property, an operator, and one or more values.</p>
|
|
@@ -2033,20 +2173,30 @@ export interface ResourceProfileArtifact {
|
|
|
2033
2173
|
}
|
|
2034
2174
|
/**
|
|
2035
2175
|
* @public
|
|
2176
|
+
* @enum
|
|
2036
2177
|
*/
|
|
2037
|
-
export declare
|
|
2038
|
-
EQ
|
|
2039
|
-
NE
|
|
2040
|
-
}
|
|
2178
|
+
export declare const SearchResourcesComparator: {
|
|
2179
|
+
readonly EQ: "EQ";
|
|
2180
|
+
readonly NE: "NE";
|
|
2181
|
+
};
|
|
2041
2182
|
/**
|
|
2042
2183
|
* @public
|
|
2043
2184
|
*/
|
|
2044
|
-
export
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2185
|
+
export type SearchResourcesComparator = (typeof SearchResourcesComparator)[keyof typeof SearchResourcesComparator];
|
|
2186
|
+
/**
|
|
2187
|
+
* @public
|
|
2188
|
+
* @enum
|
|
2189
|
+
*/
|
|
2190
|
+
export declare const SearchResourcesSimpleCriterionKey: {
|
|
2191
|
+
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
2192
|
+
readonly S3_BUCKET_EFFECTIVE_PERMISSION: "S3_BUCKET_EFFECTIVE_PERMISSION";
|
|
2193
|
+
readonly S3_BUCKET_NAME: "S3_BUCKET_NAME";
|
|
2194
|
+
readonly S3_BUCKET_SHARED_ACCESS: "S3_BUCKET_SHARED_ACCESS";
|
|
2195
|
+
};
|
|
2196
|
+
/**
|
|
2197
|
+
* @public
|
|
2198
|
+
*/
|
|
2199
|
+
export type SearchResourcesSimpleCriterionKey = (typeof SearchResourcesSimpleCriterionKey)[keyof typeof SearchResourcesSimpleCriterionKey];
|
|
2050
2200
|
/**
|
|
2051
2201
|
* @public
|
|
2052
2202
|
* <p>Specifies a property-based filter condition that determines which Amazon Web Services resources are included or excluded from the query results.</p>
|
|
@@ -2137,21 +2287,31 @@ export interface SuppressDataIdentifier {
|
|
|
2137
2287
|
}
|
|
2138
2288
|
/**
|
|
2139
2289
|
* @public
|
|
2290
|
+
* @enum
|
|
2140
2291
|
*/
|
|
2141
|
-
export declare
|
|
2142
|
-
INVALID_CLASSIFICATION_RESULT
|
|
2143
|
-
OBJECT_EXCEEDS_SIZE_QUOTA
|
|
2144
|
-
OBJECT_UNAVAILABLE
|
|
2145
|
-
UNSUPPORTED_FINDING_TYPE
|
|
2146
|
-
UNSUPPORTED_OBJECT_TYPE
|
|
2147
|
-
}
|
|
2292
|
+
export declare const UnavailabilityReasonCode: {
|
|
2293
|
+
readonly INVALID_CLASSIFICATION_RESULT: "INVALID_CLASSIFICATION_RESULT";
|
|
2294
|
+
readonly OBJECT_EXCEEDS_SIZE_QUOTA: "OBJECT_EXCEEDS_SIZE_QUOTA";
|
|
2295
|
+
readonly OBJECT_UNAVAILABLE: "OBJECT_UNAVAILABLE";
|
|
2296
|
+
readonly UNSUPPORTED_FINDING_TYPE: "UNSUPPORTED_FINDING_TYPE";
|
|
2297
|
+
readonly UNSUPPORTED_OBJECT_TYPE: "UNSUPPORTED_OBJECT_TYPE";
|
|
2298
|
+
};
|
|
2148
2299
|
/**
|
|
2149
2300
|
* @public
|
|
2150
2301
|
*/
|
|
2151
|
-
export
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2302
|
+
export type UnavailabilityReasonCode = (typeof UnavailabilityReasonCode)[keyof typeof UnavailabilityReasonCode];
|
|
2303
|
+
/**
|
|
2304
|
+
* @public
|
|
2305
|
+
* @enum
|
|
2306
|
+
*/
|
|
2307
|
+
export declare const ErrorCode: {
|
|
2308
|
+
readonly ClientError: "ClientError";
|
|
2309
|
+
readonly InternalError: "InternalError";
|
|
2310
|
+
};
|
|
2311
|
+
/**
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
2155
2315
|
/**
|
|
2156
2316
|
* @public
|
|
2157
2317
|
* <p>Provides information about an account-related request that hasn't been processed.</p>
|
|
@@ -2172,16 +2332,26 @@ export interface UnprocessedAccount {
|
|
|
2172
2332
|
}
|
|
2173
2333
|
/**
|
|
2174
2334
|
* @public
|
|
2335
|
+
* @enum
|
|
2175
2336
|
*/
|
|
2176
|
-
export declare
|
|
2177
|
-
USD
|
|
2178
|
-
}
|
|
2337
|
+
export declare const Currency: {
|
|
2338
|
+
readonly USD: "USD";
|
|
2339
|
+
};
|
|
2179
2340
|
/**
|
|
2180
2341
|
* @public
|
|
2181
2342
|
*/
|
|
2182
|
-
export
|
|
2183
|
-
|
|
2184
|
-
|
|
2343
|
+
export type Currency = (typeof Currency)[keyof typeof Currency];
|
|
2344
|
+
/**
|
|
2345
|
+
* @public
|
|
2346
|
+
* @enum
|
|
2347
|
+
*/
|
|
2348
|
+
export declare const Unit: {
|
|
2349
|
+
readonly TERABYTES: "TERABYTES";
|
|
2350
|
+
};
|
|
2351
|
+
/**
|
|
2352
|
+
* @public
|
|
2353
|
+
*/
|
|
2354
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
2185
2355
|
/**
|
|
2186
2356
|
* @public
|
|
2187
2357
|
* <p>Specifies a current quota for an Amazon Macie account.</p>
|
|
@@ -2202,13 +2372,18 @@ export interface ServiceLimit {
|
|
|
2202
2372
|
}
|
|
2203
2373
|
/**
|
|
2204
2374
|
* @public
|
|
2375
|
+
* @enum
|
|
2205
2376
|
*/
|
|
2206
|
-
export declare
|
|
2207
|
-
AUTOMATED_OBJECT_MONITORING
|
|
2208
|
-
AUTOMATED_SENSITIVE_DATA_DISCOVERY
|
|
2209
|
-
DATA_INVENTORY_EVALUATION
|
|
2210
|
-
SENSITIVE_DATA_DISCOVERY
|
|
2211
|
-
}
|
|
2377
|
+
export declare const UsageType: {
|
|
2378
|
+
readonly AUTOMATED_OBJECT_MONITORING: "AUTOMATED_OBJECT_MONITORING";
|
|
2379
|
+
readonly AUTOMATED_SENSITIVE_DATA_DISCOVERY: "AUTOMATED_SENSITIVE_DATA_DISCOVERY";
|
|
2380
|
+
readonly DATA_INVENTORY_EVALUATION: "DATA_INVENTORY_EVALUATION";
|
|
2381
|
+
readonly SENSITIVE_DATA_DISCOVERY: "SENSITIVE_DATA_DISCOVERY";
|
|
2382
|
+
};
|
|
2383
|
+
/**
|
|
2384
|
+
* @public
|
|
2385
|
+
*/
|
|
2386
|
+
export type UsageType = (typeof UsageType)[keyof typeof UsageType];
|
|
2212
2387
|
/**
|
|
2213
2388
|
* @public
|
|
2214
2389
|
* <p>Provides data for a specific usage metric and the corresponding quota for an Amazon Macie account.</p>
|
|
@@ -2255,25 +2430,35 @@ export interface UsageRecord {
|
|
|
2255
2430
|
}
|
|
2256
2431
|
/**
|
|
2257
2432
|
* @public
|
|
2433
|
+
* @enum
|
|
2258
2434
|
*/
|
|
2259
|
-
export declare
|
|
2260
|
-
CONTAINS
|
|
2261
|
-
EQ
|
|
2262
|
-
GT
|
|
2263
|
-
GTE
|
|
2264
|
-
LT
|
|
2265
|
-
LTE
|
|
2266
|
-
NE
|
|
2267
|
-
}
|
|
2435
|
+
export declare const UsageStatisticsFilterComparator: {
|
|
2436
|
+
readonly CONTAINS: "CONTAINS";
|
|
2437
|
+
readonly EQ: "EQ";
|
|
2438
|
+
readonly GT: "GT";
|
|
2439
|
+
readonly GTE: "GTE";
|
|
2440
|
+
readonly LT: "LT";
|
|
2441
|
+
readonly LTE: "LTE";
|
|
2442
|
+
readonly NE: "NE";
|
|
2443
|
+
};
|
|
2268
2444
|
/**
|
|
2269
2445
|
* @public
|
|
2270
2446
|
*/
|
|
2271
|
-
export
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2447
|
+
export type UsageStatisticsFilterComparator = (typeof UsageStatisticsFilterComparator)[keyof typeof UsageStatisticsFilterComparator];
|
|
2448
|
+
/**
|
|
2449
|
+
* @public
|
|
2450
|
+
* @enum
|
|
2451
|
+
*/
|
|
2452
|
+
export declare const UsageStatisticsFilterKey: {
|
|
2453
|
+
readonly accountId: "accountId";
|
|
2454
|
+
readonly freeTrialStartDate: "freeTrialStartDate";
|
|
2455
|
+
readonly serviceLimit: "serviceLimit";
|
|
2456
|
+
readonly total: "total";
|
|
2457
|
+
};
|
|
2458
|
+
/**
|
|
2459
|
+
* @public
|
|
2460
|
+
*/
|
|
2461
|
+
export type UsageStatisticsFilterKey = (typeof UsageStatisticsFilterKey)[keyof typeof UsageStatisticsFilterKey];
|
|
2277
2462
|
/**
|
|
2278
2463
|
* @public
|
|
2279
2464
|
* <p>Specifies a condition for filtering the results of a query for quota and usage data for one or more Amazon Macie accounts.</p>
|
|
@@ -2460,17 +2645,22 @@ export interface AllowListCriteria {
|
|
|
2460
2645
|
}
|
|
2461
2646
|
/**
|
|
2462
2647
|
* @public
|
|
2648
|
+
* @enum
|
|
2463
2649
|
*/
|
|
2464
|
-
export declare
|
|
2465
|
-
OK
|
|
2466
|
-
S3_OBJECT_ACCESS_DENIED
|
|
2467
|
-
S3_OBJECT_EMPTY
|
|
2468
|
-
S3_OBJECT_NOT_FOUND
|
|
2469
|
-
S3_OBJECT_OVERSIZE
|
|
2470
|
-
S3_THROTTLED
|
|
2471
|
-
S3_USER_ACCESS_DENIED
|
|
2472
|
-
UNKNOWN_ERROR
|
|
2473
|
-
}
|
|
2650
|
+
export declare const AllowListStatusCode: {
|
|
2651
|
+
readonly OK: "OK";
|
|
2652
|
+
readonly S3_OBJECT_ACCESS_DENIED: "S3_OBJECT_ACCESS_DENIED";
|
|
2653
|
+
readonly S3_OBJECT_EMPTY: "S3_OBJECT_EMPTY";
|
|
2654
|
+
readonly S3_OBJECT_NOT_FOUND: "S3_OBJECT_NOT_FOUND";
|
|
2655
|
+
readonly S3_OBJECT_OVERSIZE: "S3_OBJECT_OVERSIZE";
|
|
2656
|
+
readonly S3_THROTTLED: "S3_THROTTLED";
|
|
2657
|
+
readonly S3_USER_ACCESS_DENIED: "S3_USER_ACCESS_DENIED";
|
|
2658
|
+
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
2659
|
+
};
|
|
2660
|
+
/**
|
|
2661
|
+
* @public
|
|
2662
|
+
*/
|
|
2663
|
+
export type AllowListStatusCode = (typeof AllowListStatusCode)[keyof typeof AllowListStatusCode];
|
|
2474
2664
|
/**
|
|
2475
2665
|
* @public
|
|
2476
2666
|
* <p>Provides information about the current status of an allow list, which indicates whether Amazon Macie can access and use the list's criteria.</p>
|
|
@@ -2487,18 +2677,28 @@ export interface AllowListStatus {
|
|
|
2487
2677
|
}
|
|
2488
2678
|
/**
|
|
2489
2679
|
* @public
|
|
2680
|
+
* @enum
|
|
2490
2681
|
*/
|
|
2491
|
-
export declare
|
|
2492
|
-
DISABLED
|
|
2493
|
-
ENABLED
|
|
2494
|
-
}
|
|
2682
|
+
export declare const AutomatedDiscoveryStatus: {
|
|
2683
|
+
readonly DISABLED: "DISABLED";
|
|
2684
|
+
readonly ENABLED: "ENABLED";
|
|
2685
|
+
};
|
|
2495
2686
|
/**
|
|
2496
2687
|
* @public
|
|
2497
2688
|
*/
|
|
2498
|
-
export
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2689
|
+
export type AutomatedDiscoveryStatus = (typeof AutomatedDiscoveryStatus)[keyof typeof AutomatedDiscoveryStatus];
|
|
2690
|
+
/**
|
|
2691
|
+
* @public
|
|
2692
|
+
* @enum
|
|
2693
|
+
*/
|
|
2694
|
+
export declare const AvailabilityCode: {
|
|
2695
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
2696
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
2697
|
+
};
|
|
2698
|
+
/**
|
|
2699
|
+
* @public
|
|
2700
|
+
*/
|
|
2701
|
+
export type AvailabilityCode = (typeof AvailabilityCode)[keyof typeof AvailabilityCode];
|
|
2502
2702
|
/**
|
|
2503
2703
|
* @public
|
|
2504
2704
|
*/
|
|
@@ -2641,11 +2841,16 @@ export interface BucketCriteriaAdditionalProperties {
|
|
|
2641
2841
|
}
|
|
2642
2842
|
/**
|
|
2643
2843
|
* @public
|
|
2844
|
+
* @enum
|
|
2644
2845
|
*/
|
|
2645
|
-
export declare
|
|
2646
|
-
ASC
|
|
2647
|
-
DESC
|
|
2648
|
-
}
|
|
2846
|
+
export declare const OrderBy: {
|
|
2847
|
+
readonly ASC: "ASC";
|
|
2848
|
+
readonly DESC: "DESC";
|
|
2849
|
+
};
|
|
2850
|
+
/**
|
|
2851
|
+
* @public
|
|
2852
|
+
*/
|
|
2853
|
+
export type OrderBy = (typeof OrderBy)[keyof typeof OrderBy];
|
|
2649
2854
|
/**
|
|
2650
2855
|
* @public
|
|
2651
2856
|
* <p>Specifies criteria for sorting the results of a query for information about S3 buckets.</p>
|
|
@@ -2734,12 +2939,17 @@ export interface ClassificationExportConfiguration {
|
|
|
2734
2939
|
}
|
|
2735
2940
|
/**
|
|
2736
2941
|
* @public
|
|
2942
|
+
* @enum
|
|
2737
2943
|
*/
|
|
2738
|
-
export declare
|
|
2739
|
-
ADD
|
|
2740
|
-
REMOVE
|
|
2741
|
-
REPLACE
|
|
2742
|
-
}
|
|
2944
|
+
export declare const ClassificationScopeUpdateOperation: {
|
|
2945
|
+
readonly ADD: "ADD";
|
|
2946
|
+
readonly REMOVE: "REMOVE";
|
|
2947
|
+
readonly REPLACE: "REPLACE";
|
|
2948
|
+
};
|
|
2949
|
+
/**
|
|
2950
|
+
* @public
|
|
2951
|
+
*/
|
|
2952
|
+
export type ClassificationScopeUpdateOperation = (typeof ClassificationScopeUpdateOperation)[keyof typeof ClassificationScopeUpdateOperation];
|
|
2743
2953
|
/**
|
|
2744
2954
|
* @public
|
|
2745
2955
|
*/
|
|
@@ -2780,13 +2990,18 @@ export interface CreateAllowListResponse {
|
|
|
2780
2990
|
}
|
|
2781
2991
|
/**
|
|
2782
2992
|
* @public
|
|
2993
|
+
* @enum
|
|
2783
2994
|
*/
|
|
2784
|
-
export declare
|
|
2785
|
-
ALL
|
|
2786
|
-
EXCLUDE
|
|
2787
|
-
INCLUDE
|
|
2788
|
-
NONE
|
|
2789
|
-
}
|
|
2995
|
+
export declare const ManagedDataIdentifierSelector: {
|
|
2996
|
+
readonly ALL: "ALL";
|
|
2997
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
2998
|
+
readonly INCLUDE: "INCLUDE";
|
|
2999
|
+
readonly NONE: "NONE";
|
|
3000
|
+
};
|
|
3001
|
+
/**
|
|
3002
|
+
* @public
|
|
3003
|
+
*/
|
|
3004
|
+
export type ManagedDataIdentifierSelector = (typeof ManagedDataIdentifierSelector)[keyof typeof ManagedDataIdentifierSelector];
|
|
2790
3005
|
/**
|
|
2791
3006
|
* @public
|
|
2792
3007
|
* <p>Specifies one or more property- and tag-based conditions that define criteria for including or excluding S3 objects from a classification job.</p>
|
|
@@ -2847,16 +3062,21 @@ export interface MonthlySchedule {
|
|
|
2847
3062
|
}
|
|
2848
3063
|
/**
|
|
2849
3064
|
* @public
|
|
3065
|
+
* @enum
|
|
2850
3066
|
*/
|
|
2851
|
-
export declare
|
|
2852
|
-
FRIDAY
|
|
2853
|
-
MONDAY
|
|
2854
|
-
SATURDAY
|
|
2855
|
-
SUNDAY
|
|
2856
|
-
THURSDAY
|
|
2857
|
-
TUESDAY
|
|
2858
|
-
WEDNESDAY
|
|
2859
|
-
}
|
|
3067
|
+
export declare const DayOfWeek: {
|
|
3068
|
+
readonly FRIDAY: "FRIDAY";
|
|
3069
|
+
readonly MONDAY: "MONDAY";
|
|
3070
|
+
readonly SATURDAY: "SATURDAY";
|
|
3071
|
+
readonly SUNDAY: "SUNDAY";
|
|
3072
|
+
readonly THURSDAY: "THURSDAY";
|
|
3073
|
+
readonly TUESDAY: "TUESDAY";
|
|
3074
|
+
readonly WEDNESDAY: "WEDNESDAY";
|
|
3075
|
+
};
|
|
3076
|
+
/**
|
|
3077
|
+
* @public
|
|
3078
|
+
*/
|
|
3079
|
+
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
2860
3080
|
/**
|
|
2861
3081
|
* @public
|
|
2862
3082
|
* <p>Specifies a weekly recurrence pattern for running a classification job.</p>
|
|
@@ -2957,12 +3177,17 @@ export interface CreateClassificationJobResponse {
|
|
|
2957
3177
|
}
|
|
2958
3178
|
/**
|
|
2959
3179
|
* @public
|
|
3180
|
+
* @enum
|
|
2960
3181
|
*/
|
|
2961
|
-
export declare
|
|
2962
|
-
HIGH
|
|
2963
|
-
LOW
|
|
2964
|
-
MEDIUM
|
|
2965
|
-
}
|
|
3182
|
+
export declare const DataIdentifierSeverity: {
|
|
3183
|
+
readonly HIGH: "HIGH";
|
|
3184
|
+
readonly LOW: "LOW";
|
|
3185
|
+
readonly MEDIUM: "MEDIUM";
|
|
3186
|
+
};
|
|
3187
|
+
/**
|
|
3188
|
+
* @public
|
|
3189
|
+
*/
|
|
3190
|
+
export type DataIdentifierSeverity = (typeof DataIdentifierSeverity)[keyof typeof DataIdentifierSeverity];
|
|
2966
3191
|
/**
|
|
2967
3192
|
* @public
|
|
2968
3193
|
* <p>Specifies a severity level for findings that a custom data identifier produces. A severity level determines which severity is assigned to the findings, based on the number of occurrences of text that matches the custom data identifier's detection criteria.</p>
|
|
@@ -3499,19 +3724,29 @@ export interface DisassociateMemberResponse {
|
|
|
3499
3724
|
}
|
|
3500
3725
|
/**
|
|
3501
3726
|
* @public
|
|
3727
|
+
* @enum
|
|
3502
3728
|
*/
|
|
3503
|
-
export declare
|
|
3504
|
-
FIFTEEN_MINUTES
|
|
3505
|
-
ONE_HOUR
|
|
3506
|
-
SIX_HOURS
|
|
3507
|
-
}
|
|
3729
|
+
export declare const FindingPublishingFrequency: {
|
|
3730
|
+
readonly FIFTEEN_MINUTES: "FIFTEEN_MINUTES";
|
|
3731
|
+
readonly ONE_HOUR: "ONE_HOUR";
|
|
3732
|
+
readonly SIX_HOURS: "SIX_HOURS";
|
|
3733
|
+
};
|
|
3508
3734
|
/**
|
|
3509
3735
|
* @public
|
|
3510
3736
|
*/
|
|
3511
|
-
export
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3737
|
+
export type FindingPublishingFrequency = (typeof FindingPublishingFrequency)[keyof typeof FindingPublishingFrequency];
|
|
3738
|
+
/**
|
|
3739
|
+
* @public
|
|
3740
|
+
* @enum
|
|
3741
|
+
*/
|
|
3742
|
+
export declare const MacieStatus: {
|
|
3743
|
+
readonly ENABLED: "ENABLED";
|
|
3744
|
+
readonly PAUSED: "PAUSED";
|
|
3745
|
+
};
|
|
3746
|
+
/**
|
|
3747
|
+
* @public
|
|
3748
|
+
*/
|
|
3749
|
+
export type MacieStatus = (typeof MacieStatus)[keyof typeof MacieStatus];
|
|
3515
3750
|
/**
|
|
3516
3751
|
* @public
|
|
3517
3752
|
*/
|
|
@@ -3554,11 +3789,16 @@ export interface EnableOrganizationAdminAccountResponse {
|
|
|
3554
3789
|
}
|
|
3555
3790
|
/**
|
|
3556
3791
|
* @public
|
|
3792
|
+
* @enum
|
|
3557
3793
|
*/
|
|
3558
|
-
export declare
|
|
3559
|
-
count
|
|
3560
|
-
groupKey
|
|
3561
|
-
}
|
|
3794
|
+
export declare const FindingStatisticsSortAttributeName: {
|
|
3795
|
+
readonly count: "count";
|
|
3796
|
+
readonly groupKey: "groupKey";
|
|
3797
|
+
};
|
|
3798
|
+
/**
|
|
3799
|
+
* @public
|
|
3800
|
+
*/
|
|
3801
|
+
export type FindingStatisticsSortAttributeName = (typeof FindingStatisticsSortAttributeName)[keyof typeof FindingStatisticsSortAttributeName];
|
|
3562
3802
|
/**
|
|
3563
3803
|
* @public
|
|
3564
3804
|
* <p>Specifies criteria for sorting the results of a query that retrieves aggregated statistical data about findings.</p>
|
|
@@ -3975,13 +4215,18 @@ export interface GetFindingsPublicationConfigurationResponse {
|
|
|
3975
4215
|
}
|
|
3976
4216
|
/**
|
|
3977
4217
|
* @public
|
|
4218
|
+
* @enum
|
|
3978
4219
|
*/
|
|
3979
|
-
export declare
|
|
3980
|
-
classificationDetails_jobId
|
|
3981
|
-
resourcesAffected_s3Bucket_name
|
|
3982
|
-
severity_description
|
|
3983
|
-
type
|
|
3984
|
-
}
|
|
4220
|
+
export declare const GroupBy: {
|
|
4221
|
+
readonly classificationDetails_jobId: "classificationDetails.jobId";
|
|
4222
|
+
readonly resourcesAffected_s3Bucket_name: "resourcesAffected.s3Bucket.name";
|
|
4223
|
+
readonly severity_description: "severity.description";
|
|
4224
|
+
readonly type: "type";
|
|
4225
|
+
};
|
|
4226
|
+
/**
|
|
4227
|
+
* @public
|
|
4228
|
+
*/
|
|
4229
|
+
export type GroupBy = (typeof GroupBy)[keyof typeof GroupBy];
|
|
3985
4230
|
/**
|
|
3986
4231
|
* @public
|
|
3987
4232
|
*/
|
|
@@ -4199,11 +4444,16 @@ export interface GetRevealConfigurationRequest {
|
|
|
4199
4444
|
}
|
|
4200
4445
|
/**
|
|
4201
4446
|
* @public
|
|
4447
|
+
* @enum
|
|
4202
4448
|
*/
|
|
4203
|
-
export declare
|
|
4204
|
-
DISABLED
|
|
4205
|
-
ENABLED
|
|
4206
|
-
}
|
|
4449
|
+
export declare const RevealStatus: {
|
|
4450
|
+
readonly DISABLED: "DISABLED";
|
|
4451
|
+
readonly ENABLED: "ENABLED";
|
|
4452
|
+
};
|
|
4453
|
+
/**
|
|
4454
|
+
* @public
|
|
4455
|
+
*/
|
|
4456
|
+
export type RevealStatus = (typeof RevealStatus)[keyof typeof RevealStatus];
|
|
4207
4457
|
/**
|
|
4208
4458
|
* @public
|
|
4209
4459
|
* <p>Specifies the configuration settings for retrieving occurrences of sensitive data reported by findings, and the status of the configuration for an Amazon Macie account. When you enable the configuration for the first time, your request must specify an Key Management Service (KMS) key. Otherwise, an error occurs. Macie uses the specified key to encrypt the sensitive data that you retrieve.</p>
|
|
@@ -4238,12 +4488,17 @@ export interface GetSensitiveDataOccurrencesRequest {
|
|
|
4238
4488
|
}
|
|
4239
4489
|
/**
|
|
4240
4490
|
* @public
|
|
4491
|
+
* @enum
|
|
4241
4492
|
*/
|
|
4242
|
-
export declare
|
|
4243
|
-
ERROR
|
|
4244
|
-
PROCESSING
|
|
4245
|
-
SUCCESS
|
|
4246
|
-
}
|
|
4493
|
+
export declare const RevealRequestStatus: {
|
|
4494
|
+
readonly ERROR: "ERROR";
|
|
4495
|
+
readonly PROCESSING: "PROCESSING";
|
|
4496
|
+
readonly SUCCESS: "SUCCESS";
|
|
4497
|
+
};
|
|
4498
|
+
/**
|
|
4499
|
+
* @public
|
|
4500
|
+
*/
|
|
4501
|
+
export type RevealRequestStatus = (typeof RevealRequestStatus)[keyof typeof RevealRequestStatus];
|
|
4247
4502
|
/**
|
|
4248
4503
|
* @public
|
|
4249
4504
|
*/
|
|
@@ -4359,13 +4614,18 @@ export interface GetSensitivityInspectionTemplateResponse {
|
|
|
4359
4614
|
}
|
|
4360
4615
|
/**
|
|
4361
4616
|
* @public
|
|
4617
|
+
* @enum
|
|
4362
4618
|
*/
|
|
4363
|
-
export declare
|
|
4364
|
-
accountId
|
|
4365
|
-
freeTrialStartDate
|
|
4366
|
-
serviceLimitValue
|
|
4367
|
-
total
|
|
4368
|
-
}
|
|
4619
|
+
export declare const UsageStatisticsSortKey: {
|
|
4620
|
+
readonly accountId: "accountId";
|
|
4621
|
+
readonly freeTrialStartDate: "freeTrialStartDate";
|
|
4622
|
+
readonly serviceLimitValue: "serviceLimitValue";
|
|
4623
|
+
readonly total: "total";
|
|
4624
|
+
};
|
|
4625
|
+
/**
|
|
4626
|
+
* @public
|
|
4627
|
+
*/
|
|
4628
|
+
export type UsageStatisticsSortKey = (typeof UsageStatisticsSortKey)[keyof typeof UsageStatisticsSortKey];
|
|
4369
4629
|
/**
|
|
4370
4630
|
* @public
|
|
4371
4631
|
* <p>Specifies criteria for sorting the results of a query for Amazon Macie account quotas and usage data.</p>
|
|
@@ -4382,11 +4642,16 @@ export interface UsageStatisticsSortBy {
|
|
|
4382
4642
|
}
|
|
4383
4643
|
/**
|
|
4384
4644
|
* @public
|
|
4645
|
+
* @enum
|
|
4385
4646
|
*/
|
|
4386
|
-
export declare
|
|
4387
|
-
MONTH_TO_DATE
|
|
4388
|
-
PAST_30_DAYS
|
|
4389
|
-
}
|
|
4647
|
+
export declare const TimeRange: {
|
|
4648
|
+
readonly MONTH_TO_DATE: "MONTH_TO_DATE";
|
|
4649
|
+
readonly PAST_30_DAYS: "PAST_30_DAYS";
|
|
4650
|
+
};
|
|
4651
|
+
/**
|
|
4652
|
+
* @public
|
|
4653
|
+
*/
|
|
4654
|
+
export type TimeRange = (typeof TimeRange)[keyof typeof TimeRange];
|
|
4390
4655
|
/**
|
|
4391
4656
|
* @public
|
|
4392
4657
|
*/
|
|
@@ -4493,13 +4758,18 @@ export interface ListJobsFilterCriteria {
|
|
|
4493
4758
|
}
|
|
4494
4759
|
/**
|
|
4495
4760
|
* @public
|
|
4761
|
+
* @enum
|
|
4496
4762
|
*/
|
|
4497
|
-
export declare
|
|
4498
|
-
createdAt
|
|
4499
|
-
jobStatus
|
|
4500
|
-
jobType
|
|
4501
|
-
name
|
|
4502
|
-
}
|
|
4763
|
+
export declare const ListJobsSortAttributeName: {
|
|
4764
|
+
readonly createdAt: "createdAt";
|
|
4765
|
+
readonly jobStatus: "jobStatus";
|
|
4766
|
+
readonly jobType: "jobType";
|
|
4767
|
+
readonly name: "name";
|
|
4768
|
+
};
|
|
4769
|
+
/**
|
|
4770
|
+
* @public
|
|
4771
|
+
*/
|
|
4772
|
+
export type ListJobsSortAttributeName = (typeof ListJobsSortAttributeName)[keyof typeof ListJobsSortAttributeName];
|
|
4503
4773
|
/**
|
|
4504
4774
|
* @public
|
|
4505
4775
|
* <p>Specifies criteria for sorting the results of a request for information about classification jobs.</p>
|