@aws-sdk/client-macie2 3.596.0 → 3.598.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.
Files changed (48) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +173 -6
  3. package/dist-es/Macie2.js +4 -0
  4. package/dist-es/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.js +24 -0
  5. package/dist-es/commands/ListAutomatedDiscoveryAccountsCommand.js +24 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +18 -6
  8. package/dist-es/models/models_1.js +6 -0
  9. package/dist-es/pagination/ListAutomatedDiscoveryAccountsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/protocols/Aws_restJson1.js +101 -0
  12. package/dist-types/Macie2.d.ts +16 -0
  13. package/dist-types/Macie2Client.d.ts +4 -2
  14. package/dist-types/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.d.ts +85 -0
  15. package/dist-types/commands/DescribeBucketsCommand.d.ts +1 -0
  16. package/dist-types/commands/GetAutomatedDiscoveryConfigurationCommand.d.ts +2 -1
  17. package/dist-types/commands/ListAutomatedDiscoveryAccountsCommand.d.ts +85 -0
  18. package/dist-types/commands/ListClassificationJobsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListClassificationScopesCommand.d.ts +1 -1
  20. package/dist-types/commands/ListCustomDataIdentifiersCommand.d.ts +1 -1
  21. package/dist-types/commands/ListFindingsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListResourceProfileArtifactsCommand.d.ts +1 -1
  24. package/dist-types/commands/PutClassificationExportConfigurationCommand.d.ts +1 -1
  25. package/dist-types/commands/SearchResourcesCommand.d.ts +3 -2
  26. package/dist-types/commands/TestCustomDataIdentifierCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateAutomatedDiscoveryConfigurationCommand.d.ts +2 -1
  28. package/dist-types/commands/index.d.ts +2 -0
  29. package/dist-types/models/models_0.d.ts +175 -193
  30. package/dist-types/models/models_1.d.ts +196 -5
  31. package/dist-types/pagination/ListAutomatedDiscoveryAccountsPaginator.d.ts +7 -0
  32. package/dist-types/pagination/index.d.ts +1 -0
  33. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  34. package/dist-types/ts3.4/Macie2.d.ts +42 -0
  35. package/dist-types/ts3.4/Macie2Client.d.ts +12 -0
  36. package/dist-types/ts3.4/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.d.ts +40 -0
  37. package/dist-types/ts3.4/commands/ListAutomatedDiscoveryAccountsCommand.d.ts +40 -0
  38. package/dist-types/ts3.4/commands/ListClassificationJobsCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListClassificationScopesCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListCustomDataIdentifiersCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +51 -47
  44. package/dist-types/ts3.4/models/models_1.d.ts +59 -0
  45. package/dist-types/ts3.4/pagination/ListAutomatedDiscoveryAccountsPaginator.d.ts +11 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  48. package/package.json +38 -38
@@ -64,6 +64,78 @@ export interface AllowListSummary {
64
64
  */
65
65
  updatedAt?: Date;
66
66
  }
67
+ /**
68
+ * @public
69
+ * @enum
70
+ */
71
+ export declare const AutomatedDiscoveryAccountStatus: {
72
+ readonly DISABLED: "DISABLED";
73
+ readonly ENABLED: "ENABLED";
74
+ };
75
+ /**
76
+ * @public
77
+ */
78
+ export type AutomatedDiscoveryAccountStatus = (typeof AutomatedDiscoveryAccountStatus)[keyof typeof AutomatedDiscoveryAccountStatus];
79
+ /**
80
+ * <p>Provides information about the status of automated sensitive data discovery for an Amazon Macie account.</p>
81
+ * @public
82
+ */
83
+ export interface AutomatedDiscoveryAccount {
84
+ /**
85
+ * <p>The Amazon Web Services account ID for the account.</p>
86
+ * @public
87
+ */
88
+ accountId?: string;
89
+ /**
90
+ * <p>The current status of automated sensitive data discovery for the account. Possible values are: ENABLED, perform automated sensitive data discovery activities for the account; and, DISABLED, don't perform automated sensitive data discovery activities for the account.</p>
91
+ * @public
92
+ */
93
+ status?: AutomatedDiscoveryAccountStatus;
94
+ }
95
+ /**
96
+ * <p>Changes the status of automated sensitive data discovery for an Amazon Macie account.</p>
97
+ * @public
98
+ */
99
+ export interface AutomatedDiscoveryAccountUpdate {
100
+ /**
101
+ * <p>The Amazon Web Services account ID for the account.</p>
102
+ * @public
103
+ */
104
+ accountId?: string;
105
+ /**
106
+ * <p>The new status of automated sensitive data discovery for the account. Valid values are: ENABLED, perform automated sensitive data discovery activities for the account; and, DISABLED, don't perform automated sensitive data discovery activities for the account.</p>
107
+ * @public
108
+ */
109
+ status?: AutomatedDiscoveryAccountStatus;
110
+ }
111
+ /**
112
+ * @public
113
+ * @enum
114
+ */
115
+ export declare const AutomatedDiscoveryAccountUpdateErrorCode: {
116
+ readonly ACCOUNT_NOT_FOUND: "ACCOUNT_NOT_FOUND";
117
+ readonly ACCOUNT_PAUSED: "ACCOUNT_PAUSED";
118
+ };
119
+ /**
120
+ * @public
121
+ */
122
+ export type AutomatedDiscoveryAccountUpdateErrorCode = (typeof AutomatedDiscoveryAccountUpdateErrorCode)[keyof typeof AutomatedDiscoveryAccountUpdateErrorCode];
123
+ /**
124
+ * <p>Provides information about a request that failed to change the status of automated sensitive data discovery for an Amazon Macie account.</p>
125
+ * @public
126
+ */
127
+ export interface AutomatedDiscoveryAccountUpdateError {
128
+ /**
129
+ * <p>The Amazon Web Services account ID for the account that the request applied to.</p>
130
+ * @public
131
+ */
132
+ accountId?: string;
133
+ /**
134
+ * <p>The error code for the error that caused the request to fail for the account (accountId). Possible values are: ACCOUNT_NOT_FOUND, the account doesn’t exist or you're not the Amazon Macie administrator for the account; and, ACCOUNT_PAUSED, Macie isn’t enabled for the account in the current Amazon Web Services Region.</p>
135
+ * @public
136
+ */
137
+ errorCode?: AutomatedDiscoveryAccountUpdateErrorCode;
138
+ }
67
139
  /**
68
140
  * <p>Provides information about a custom data identifier.</p>
69
141
  * @public
@@ -113,6 +185,18 @@ export declare const AllowsUnencryptedObjectUploads: {
113
185
  * @public
114
186
  */
115
187
  export type AllowsUnencryptedObjectUploads = (typeof AllowsUnencryptedObjectUploads)[keyof typeof AllowsUnencryptedObjectUploads];
188
+ /**
189
+ * @public
190
+ * @enum
191
+ */
192
+ export declare const AutomatedDiscoveryMonitoringStatus: {
193
+ readonly MONITORED: "MONITORED";
194
+ readonly NOT_MONITORED: "NOT_MONITORED";
195
+ };
196
+ /**
197
+ * @public
198
+ */
199
+ export type AutomatedDiscoveryMonitoringStatus = (typeof AutomatedDiscoveryMonitoringStatus)[keyof typeof AutomatedDiscoveryMonitoringStatus];
116
200
  /**
117
201
  * @public
118
202
  * @enum
@@ -151,22 +235,22 @@ export declare const IsMonitoredByJob: {
151
235
  */
152
236
  export type IsMonitoredByJob = (typeof IsMonitoredByJob)[keyof typeof IsMonitoredByJob];
153
237
  /**
154
- * <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>
238
+ * <p>Specifies whether any one-time or recurring classification jobs are configured to analyze objects in an S3 bucket, and, if so, the details of the job that ran most recently.</p>
155
239
  * @public
156
240
  */
157
241
  export interface JobDetails {
158
242
  /**
159
- * <p>Specifies whether any one-time or recurring jobs are configured to analyze data in the bucket. Possible values are:</p> <ul><li><p>TRUE - The bucket is explicitly included in the bucket definition (S3BucketDefinitionForJob) for one or more jobs and at least one of those jobs has a status other than CANCELLED. Or the bucket matched the bucket criteria (S3BucketCriteriaForJob) for at least one job that previously ran.</p></li> <li><p>FALSE - The bucket isn't explicitly included in the bucket definition (S3BucketDefinitionForJob) for any jobs, all the jobs that explicitly include the bucket in their bucket definitions have a status of CANCELLED, or the bucket didn't match the bucket criteria (S3BucketCriteriaForJob) for any jobs that previously ran.</p></li> <li><p>UNKNOWN - An exception occurred when Amazon Macie attempted to retrieve job data for the bucket.</p></li></ul>
243
+ * <p>Specifies whether any one-time or recurring jobs are configured to analyze objects in the bucket. Possible values are:</p> <ul><li><p>TRUE - The bucket is explicitly included in the bucket definition (S3BucketDefinitionForJob) for one or more jobs and at least one of those jobs has a status other than CANCELLED. Or the bucket matched the bucket criteria (S3BucketCriteriaForJob) for at least one job that previously ran.</p></li> <li><p>FALSE - The bucket isn't explicitly included in the bucket definition (S3BucketDefinitionForJob) for any jobs, all the jobs that explicitly include the bucket in their bucket definitions have a status of CANCELLED, or the bucket didn't match the bucket criteria (S3BucketCriteriaForJob) for any jobs that previously ran.</p></li> <li><p>UNKNOWN - An exception occurred when Amazon Macie attempted to retrieve job data for the bucket.</p></li></ul>
160
244
  * @public
161
245
  */
162
246
  isDefinedInJob?: IsDefinedInJob;
163
247
  /**
164
- * <p>Specifies whether any recurring jobs are configured to analyze data in the bucket. Possible values are:</p> <ul><li><p>TRUE - The bucket is explicitly included in the bucket definition (S3BucketDefinitionForJob) for one or more recurring jobs or the bucket matches the bucket criteria (S3BucketCriteriaForJob) for one or more recurring jobs. At least one of those jobs has a status other than CANCELLED.</p></li> <li><p>FALSE - The bucket isn't explicitly included in the bucket definition (S3BucketDefinitionForJob) for any recurring jobs, the bucket doesn't match the bucket criteria (S3BucketCriteriaForJob) for any recurring jobs, or all the recurring jobs that are configured to analyze data in the bucket have a status of CANCELLED.</p></li> <li><p>UNKNOWN - An exception occurred when Amazon Macie attempted to retrieve job data for the bucket.</p></li></ul>
248
+ * <p>Specifies whether any recurring jobs are configured to analyze objects in the bucket. Possible values are:</p> <ul><li><p>TRUE - The bucket is explicitly included in the bucket definition (S3BucketDefinitionForJob) for one or more recurring jobs or the bucket matches the bucket criteria (S3BucketCriteriaForJob) for one or more recurring jobs. At least one of those jobs has a status other than CANCELLED.</p></li> <li><p>FALSE - The bucket isn't explicitly included in the bucket definition (S3BucketDefinitionForJob) for any recurring jobs, the bucket doesn't match the bucket criteria (S3BucketCriteriaForJob) for any recurring jobs, or all the recurring jobs that are configured to analyze data in the bucket have a status of CANCELLED.</p></li> <li><p>UNKNOWN - An exception occurred when Amazon Macie attempted to retrieve job data for the bucket.</p></li></ul>
165
249
  * @public
166
250
  */
167
251
  isMonitoredByJob?: IsMonitoredByJob;
168
252
  /**
169
- * <p>The unique identifier for the job that ran most recently and is configured to analyze data in the bucket, either the latest run of a recurring job or the only run of a one-time job.</p> <p>This value is typically null if the value for the isDefinedInJob property is FALSE or UNKNOWN.</p>
253
+ * <p>The unique identifier for the job that ran most recently and is configured to analyze objects in the bucket, either the latest run of a recurring job or the only run of a one-time job.</p> <p>This value is typically null if the value for the isDefinedInJob property is FALSE or UNKNOWN.</p>
170
254
  * @public
171
255
  */
172
256
  lastJobId?: string;
@@ -459,6 +543,11 @@ export interface BucketMetadata {
459
543
  * @public
460
544
  */
461
545
  allowsUnencryptedObjectUploads?: AllowsUnencryptedObjectUploads;
546
+ /**
547
+ * <p>Specifies whether automated sensitive data discovery is currently configured to analyze objects in the bucket. Possible values are: MONITORED, the bucket is included in analyses; and, NOT_MONITORED, the bucket is excluded from analyses. If automated sensitive data discovery is disabled for your account, this value is NOT_MONITORED.</p>
548
+ * @public
549
+ */
550
+ automatedDiscoveryMonitoringStatus?: AutomatedDiscoveryMonitoringStatus;
462
551
  /**
463
552
  * <p>The Amazon Resource Name (ARN) of the bucket.</p>
464
553
  * @public
@@ -495,12 +584,12 @@ export interface BucketMetadata {
495
584
  */
496
585
  errorMessage?: string;
497
586
  /**
498
- * <p>Specifies whether any one-time or recurring classification jobs are configured to analyze data in the bucket, and, if so, the details of the job that ran most recently.</p>
587
+ * <p>Specifies whether any one-time or recurring classification jobs are configured to analyze objects in the bucket, and, if so, the details of the job that ran most recently.</p>
499
588
  * @public
500
589
  */
501
590
  jobDetails?: JobDetails;
502
591
  /**
503
- * <p>The date and time, in UTC and extended ISO 8601 format, when Amazon Macie most recently analyzed data in the bucket while performing automated sensitive data discovery for your account. This value is null if automated sensitive data discovery is currently disabled for your account.</p>
592
+ * <p>The date and time, in UTC and extended ISO 8601 format, when Amazon Macie most recently analyzed objects in the bucket while performing automated sensitive data discovery. This value is null if automated sensitive data discovery is disabled for your account.</p>
504
593
  * @public
505
594
  */
506
595
  lastAutomatedDiscoveryTime?: Date;
@@ -535,7 +624,7 @@ export interface BucketMetadata {
535
624
  */
536
625
  replicationDetails?: ReplicationDetails;
537
626
  /**
538
- * <p>The sensitivity score for the bucket, ranging from -1 (classification error) to 100 (sensitive). This value is null if automated sensitive data discovery is currently disabled for your account.</p>
627
+ * <p>The sensitivity score for the bucket, ranging from -1 (classification error) to 100 (sensitive).</p><p>If automated sensitive data discovery has never been enabled for your account or it’s been disabled for your organization or your standalone account for more than 30 days, possible values are: 1, the bucket is empty; or, 50, the bucket stores objects but it’s been excluded from recent analyses.</p>
539
628
  * @public
540
629
  */
541
630
  sensitivityScore?: number;
@@ -752,7 +841,7 @@ export declare const DataIdentifierType: {
752
841
  */
753
842
  export type DataIdentifierType = (typeof DataIdentifierType)[keyof typeof DataIdentifierType];
754
843
  /**
755
- * <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>
844
+ * <p>Provides information about a type of sensitive data that Amazon Macie found in an S3 bucket while performing automated sensitive data discovery for an account. The information also specifies the custom or managed data identifier that detected the data. This information is available only if automated sensitive data discovery has been enabled for the account.</p>
756
845
  * @public
757
846
  */
758
847
  export interface Detection {
@@ -1538,12 +1627,12 @@ export interface FindingActor {
1538
1627
  */
1539
1628
  domainDetails?: DomainDetails;
1540
1629
  /**
1541
- * <p>The IP address of the device that the entity used to perform the action on the affected resource. This object also provides information such as the owner and geographic location for the IP address.</p>
1630
+ * <p>The IP address and related details about the device that the entity used to perform the action on the affected resource. The details can include information such as the owner and geographic location of the IP address.</p>
1542
1631
  * @public
1543
1632
  */
1544
1633
  ipAddressDetails?: IpAddressDetails;
1545
1634
  /**
1546
- * <p>The type and other characteristics of the entity that performed the action on the affected resource.</p>
1635
+ * <p>The type and other characteristics of the entity that performed the action on the affected resource. This value is null if the action was performed by an anonymous (unauthenticated) entity.</p>
1547
1636
  * @public
1548
1637
  */
1549
1638
  userIdentity?: UserIdentity;
@@ -2340,6 +2429,11 @@ export interface MatchingBucket {
2340
2429
  * @public
2341
2430
  */
2342
2431
  accountId?: string;
2432
+ /**
2433
+ * <p>Specifies whether automated sensitive data discovery is currently configured to analyze objects in the bucket. Possible values are: MONITORED, the bucket is included in analyses; and, NOT_MONITORED, the bucket is excluded from analyses. If automated sensitive data discovery is disabled for your account, this value is NOT_MONITORED.</p>
2434
+ * @public
2435
+ */
2436
+ automatedDiscoveryMonitoringStatus?: AutomatedDiscoveryMonitoringStatus;
2343
2437
  /**
2344
2438
  * <p>The name of the bucket.</p>
2345
2439
  * @public
@@ -2371,7 +2465,7 @@ export interface MatchingBucket {
2371
2465
  */
2372
2466
  jobDetails?: JobDetails;
2373
2467
  /**
2374
- * <p>The date and time, in UTC and extended ISO 8601 format, when Amazon Macie most recently analyzed data in the bucket while performing automated sensitive data discovery for your account. This value is null if automated sensitive data discovery is currently disabled for your account.</p>
2468
+ * <p>The date and time, in UTC and extended ISO 8601 format, when Amazon Macie most recently analyzed objects in the bucket while performing automated sensitive data discovery. This value is null if automated sensitive data discovery is disabled for your account.</p>
2375
2469
  * @public
2376
2470
  */
2377
2471
  lastAutomatedDiscoveryTime?: Date;
@@ -2386,7 +2480,7 @@ export interface MatchingBucket {
2386
2480
  */
2387
2481
  objectCountByEncryptionType?: ObjectCountByEncryptionType;
2388
2482
  /**
2389
- * <p>The current sensitivity score for the bucket, ranging from -1 (classification error) to 100 (sensitive). This value is null if automated sensitive data discovery is currently disabled for your account.</p>
2483
+ * <p>The sensitivity score for the bucket, ranging from -1 (classification error) to 100 (sensitive).</p><p>If automated sensitive data discovery has never been enabled for your account or it’s been disabled for your organization or your standalone account for more than 30 days, possible values are: 1, the bucket is empty; or, 50, the bucket stores objects but it’s been excluded from recent analyses.</p>
2390
2484
  * @public
2391
2485
  */
2392
2486
  sensitivityScore?: number;
@@ -2474,7 +2568,7 @@ export interface Member {
2474
2568
  updatedAt?: Date;
2475
2569
  }
2476
2570
  /**
2477
- * <p>Provides information about an S3 object that Amazon Macie selected for analysis while performing automated sensitive data discovery for an S3 bucket, and the status and results of the analysis. This information is available only if automated sensitive data discovery is currently enabled for your account.</p>
2571
+ * <p>Provides information about an S3 object that Amazon Macie selected for analysis while performing automated sensitive data discovery for an account, and the status and results of the analysis. This information is available only if automated sensitive data discovery has been enabled for the account.</p>
2478
2572
  * @public
2479
2573
  */
2480
2574
  export interface ResourceProfileArtifact {
@@ -2512,6 +2606,7 @@ export type SearchResourcesComparator = (typeof SearchResourcesComparator)[keyof
2512
2606
  */
2513
2607
  export declare const SearchResourcesSimpleCriterionKey: {
2514
2608
  readonly ACCOUNT_ID: "ACCOUNT_ID";
2609
+ readonly AUTOMATED_DISCOVERY_MONITORING_STATUS: "AUTOMATED_DISCOVERY_MONITORING_STATUS";
2515
2610
  readonly S3_BUCKET_EFFECTIVE_PERMISSION: "S3_BUCKET_EFFECTIVE_PERMISSION";
2516
2611
  readonly S3_BUCKET_NAME: "S3_BUCKET_NAME";
2517
2612
  readonly S3_BUCKET_SHARED_ACCESS: "S3_BUCKET_SHARED_ACCESS";
@@ -2536,7 +2631,7 @@ export interface SearchResourcesSimpleCriterion {
2536
2631
  */
2537
2632
  key?: SearchResourcesSimpleCriterionKey;
2538
2633
  /**
2539
- * <p>An array that lists one or more values to use in the condition. If you specify multiple values, Amazon Macie uses OR logic to join the values. Valid values for each supported property (key) are:</p> <ul><li><p>ACCOUNT_ID - A string that represents the unique identifier for the Amazon Web Services account that owns the resource.</p></li> <li><p>S3_BUCKET_EFFECTIVE_PERMISSION - A string that represents an enumerated value that Macie defines for the <a href="https://docs.aws.amazon.com/macie/latest/APIReference/datasources-s3.html#datasources-s3-prop-bucketpublicaccess-effectivepermission">BucketPublicAccess.effectivePermission</a> property of an S3 bucket.</p></li> <li><p>S3_BUCKET_NAME - A string that represents the name of an S3 bucket.</p></li> <li><p>S3_BUCKET_SHARED_ACCESS - A string that represents an enumerated value that Macie defines for the <a href="https://docs.aws.amazon.com/macie/latest/APIReference/datasources-s3.html#datasources-s3-prop-bucketmetadata-sharedaccess">BucketMetadata.sharedAccess</a> property of an S3 bucket.</p></li></ul> <p>Values are case sensitive. Also, Macie doesn't support use of partial values or wildcard characters in values.</p>
2634
+ * <p>An array that lists one or more values to use in the condition. If you specify multiple values, Amazon Macie uses OR logic to join the values. Valid values for each supported property (key) are:</p> <ul><li><p>ACCOUNT_ID - A string that represents the unique identifier for the Amazon Web Services account that owns the resource.</p></li> <li><p>AUTOMATED_DISCOVERY_MONITORING_STATUS - A string that represents an enumerated value that Macie defines for the <a href="https://docs.aws.amazon.com/macie/latest/APIReference/datasources-s3.html#datasources-s3-prop-bucketmetadata-automateddiscoverymonitoringstatus">BucketMetadata.automatedDiscoveryMonitoringStatus</a> property of an S3 bucket.</p></li> <li><p>S3_BUCKET_EFFECTIVE_PERMISSION - A string that represents an enumerated value that Macie defines for the <a href="https://docs.aws.amazon.com/macie/latest/APIReference/datasources-s3.html#datasources-s3-prop-bucketpublicaccess-effectivepermission">BucketPublicAccess.effectivePermission</a> property of an S3 bucket.</p></li> <li><p>S3_BUCKET_NAME - A string that represents the name of an S3 bucket.</p></li> <li><p>S3_BUCKET_SHARED_ACCESS - A string that represents an enumerated value that Macie defines for the <a href="https://docs.aws.amazon.com/macie/latest/APIReference/datasources-s3.html#datasources-s3-prop-bucketmetadata-sharedaccess">BucketMetadata.sharedAccess</a> property of an S3 bucket.</p></li></ul> <p>Values are case sensitive. Also, Macie doesn't support use of partial values or wildcard characters in values.</p>
2540
2635
  * @public
2541
2636
  */
2542
2637
  values?: string[];
@@ -2590,7 +2685,7 @@ export interface SearchResourcesCriteria {
2590
2685
  tagCriterion?: SearchResourcesTagCriterion;
2591
2686
  }
2592
2687
  /**
2593
- * <p>Provides information about the sensitivity inspection template for an Amazon Macie account. Macie uses the template's settings when it performs automated sensitive data discovery for the account.</p>
2688
+ * <p>Provides information about the sensitivity inspection template for an Amazon Macie account.</p>
2594
2689
  * @public
2595
2690
  */
2596
2691
  export interface SensitivityInspectionTemplatesEntry {
@@ -2769,7 +2864,7 @@ export interface UsageRecord {
2769
2864
  */
2770
2865
  accountId?: string;
2771
2866
  /**
2772
- * <p>The date and time, in UTC and extended ISO 8601 format, when the free trial of automated sensitive data discovery started for the account. If the account is a member account in an organization, this value is the same as the value for the organization's Amazon Macie administrator account.</p>
2867
+ * <p>The date and time, in UTC and extended ISO 8601 format, when the free trial of automated sensitive data discovery started for the account. This value is null if automated sensitive data discovery hasn't been enabled for the account.</p>
2773
2868
  * @public
2774
2869
  */
2775
2870
  automatedDiscoveryFreeTrialStartDate?: Date;
@@ -3048,6 +3143,19 @@ export interface AllowListStatus {
3048
3143
  */
3049
3144
  description?: string;
3050
3145
  }
3146
+ /**
3147
+ * @public
3148
+ * @enum
3149
+ */
3150
+ export declare const AutoEnableMode: {
3151
+ readonly ALL: "ALL";
3152
+ readonly NEW: "NEW";
3153
+ readonly NONE: "NONE";
3154
+ };
3155
+ /**
3156
+ * @public
3157
+ */
3158
+ export type AutoEnableMode = (typeof AutoEnableMode)[keyof typeof AutoEnableMode];
3051
3159
  /**
3052
3160
  * @public
3053
3161
  * @enum
@@ -3097,6 +3205,26 @@ export interface BatchGetCustomDataIdentifiersResponse {
3097
3205
  */
3098
3206
  notFoundIdentifierIds?: string[];
3099
3207
  }
3208
+ /**
3209
+ * @public
3210
+ */
3211
+ export interface BatchUpdateAutomatedDiscoveryAccountsRequest {
3212
+ /**
3213
+ * <p>An array of objects, one for each account to change the status of automated sensitive data discovery for. Each object specifies the Amazon Web Services account ID for an account and a new status for that account.</p>
3214
+ * @public
3215
+ */
3216
+ accounts?: AutomatedDiscoveryAccountUpdate[];
3217
+ }
3218
+ /**
3219
+ * @public
3220
+ */
3221
+ export interface BatchUpdateAutomatedDiscoveryAccountsResponse {
3222
+ /**
3223
+ * <p>An array of objects, one for each account whose status wasn’t changed. Each object identifies the account and explains why the status of automated sensitive data discovery wasn’t changed for the account. This value is null if the request succeeded for all specified accounts.</p>
3224
+ * @public
3225
+ */
3226
+ errors?: AutomatedDiscoveryAccountUpdateError[];
3227
+ }
3100
3228
  /**
3101
3229
  * <p>Provides information about the number of S3 buckets that are publicly accessible due to a combination of permissions settings for each bucket.</p>
3102
3230
  * @public
@@ -3323,7 +3451,7 @@ export interface BucketStatisticsBySensitivity {
3323
3451
  */
3324
3452
  export interface S3Destination {
3325
3453
  /**
3326
- * <p>The name of the bucket.</p>
3454
+ * <p>The name of the bucket. This must be the name of an existing general purpose bucket.</p>
3327
3455
  * @public
3328
3456
  */
3329
3457
  bucketName: string | undefined;
@@ -3339,7 +3467,7 @@ export interface S3Destination {
3339
3467
  kmsKeyArn: string | undefined;
3340
3468
  }
3341
3469
  /**
3342
- * <p>Specifies where to store data classification results, and the encryption settings to use when storing results in that location. The location must be an S3 bucket.</p>
3470
+ * <p>Specifies where to store data classification results, and the encryption settings to use when storing results in that location. The location must be an S3 general purpose bucket.</p>
3343
3471
  * @public
3344
3472
  */
3345
3473
  export interface ClassificationExportConfiguration {
@@ -3566,7 +3694,7 @@ export interface CreateClassificationJobRequest {
3566
3694
  */
3567
3695
  initialRun?: boolean;
3568
3696
  /**
3569
- * <p>The schedule for running the job. Valid values are:</p> <ul><li><p>ONE_TIME - Run the job only once. If you specify this value, don't specify a value for the scheduleFrequency property.</p></li> <li><p>SCHEDULED - Run the job on a daily, weekly, or monthly basis. If you specify this value, use the scheduleFrequency property to define the recurrence pattern for the job.</p></li></ul>
3697
+ * <p>The schedule for running the job. Valid values are:</p> <ul><li><p>ONE_TIME - Run the job only once. If you specify this value, don't specify a value for the scheduleFrequency property.</p></li> <li><p>SCHEDULED - Run the job on a daily, weekly, or monthly basis. If you specify this value, use the scheduleFrequency property to specify the recurrence pattern for the job.</p></li></ul>
3570
3698
  * @public
3571
3699
  */
3572
3700
  jobType: JobType | undefined;
@@ -3576,7 +3704,7 @@ export interface CreateClassificationJobRequest {
3576
3704
  */
3577
3705
  managedDataIdentifierIds?: string[];
3578
3706
  /**
3579
- * <p>The selection type to apply when determining which managed data identifiers the job uses to analyze data. Valid values are:</p> <ul><li><p>ALL - Use all managed data identifiers. If you specify this value, don't specify any values for the managedDataIdentifierIds property.</p></li> <li><p>EXCLUDE - Use all managed data identifiers except the ones specified by the managedDataIdentifierIds property.</p></li> <li><p>INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.</p></li> <li><p>NONE - Don't use any managed data identifiers. If you specify this value, specify at least one value for the customDataIdentifierIds property and don't specify any values for the managedDataIdentifierIds property.</p></li> <li><p>RECOMMENDED (default) - Use the recommended set of managed data identifiers. If you specify this value, don't specify any values for the managedDataIdentifierIds property.</p></li></ul> <p>If you don't specify a value for this property, the job uses the recommended set of managed data identifiers.</p> <p>If the job is a recurring job and you specify ALL or EXCLUDE, each job run automatically uses new managed data identifiers that are released. If you don't specify a value for this property or you specify RECOMMENDED for a recurring job, each job run automatically uses all the managed data identifiers that are in the recommended set when the run starts.</p> <p>For information about individual managed data identifiers or to determine which ones are in the recommended set, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> and <a href="https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-mdis-recommended.html">Recommended managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
3707
+ * <p>The selection type to apply when determining which managed data identifiers the job uses to analyze data. Valid values are:</p> <ul><li><p>ALL - Use all managed data identifiers. If you specify this value, don't specify any values for the managedDataIdentifierIds property.</p></li> <li><p>EXCLUDE - Use all managed data identifiers except the ones specified by the managedDataIdentifierIds property.</p></li> <li><p>INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.</p></li> <li><p>NONE - Don't use any managed data identifiers. If you specify this value, specify at least one value for the customDataIdentifierIds property and don't specify any values for the managedDataIdentifierIds property.</p></li> <li><p>RECOMMENDED (default) - Use the recommended set of managed data identifiers. If you specify this value, don't specify any values for the managedDataIdentifierIds property.</p></li></ul> <p>If you don't specify a value for this property, the job uses the recommended set of managed data identifiers.</p> <p>If the job is a recurring job and you specify ALL or EXCLUDE, each job run automatically uses new managed data identifiers that are released. If you don't specify a value for this property or you specify RECOMMENDED for a recurring job, each job run automatically uses all the managed data identifiers that are in the recommended set when the run starts.</p> <p>To learn about individual managed data identifiers or determine which ones are in the recommended set, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> or <a href="https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-mdis-recommended.html">Recommended managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
3580
3708
  * @public
3581
3709
  */
3582
3710
  managedDataIdentifierSelector?: ManagedDataIdentifierSelector;
@@ -4063,7 +4191,7 @@ export interface Statistics {
4063
4191
  */
4064
4192
  export interface DescribeClassificationJobResponse {
4065
4193
  /**
4066
- * <p>An array of unique identifiers, one for each allow list that the job uses when it analyzes data.</p>
4194
+ * <p>An array of unique identifiers, one for each allow list that the job is configured to use when it analyzes data.</p>
4067
4195
  * @public
4068
4196
  */
4069
4197
  allowListIds?: string[];
@@ -4078,7 +4206,7 @@ export interface DescribeClassificationJobResponse {
4078
4206
  */
4079
4207
  createdAt?: Date;
4080
4208
  /**
4081
- * <p>An array of unique identifiers, one for each custom data identifier that the job uses when it analyzes data. This value is null if the job uses only managed data identifiers to analyze data.</p>
4209
+ * <p>An array of unique identifiers, one for each custom data identifier that the job is configured to use when it analyzes data. This value is null if the job is configured to use only managed data identifiers to analyze data.</p>
4082
4210
  * @public
4083
4211
  */
4084
4212
  customDataIdentifierIds?: string[];
@@ -4128,7 +4256,7 @@ export interface DescribeClassificationJobResponse {
4128
4256
  */
4129
4257
  managedDataIdentifierIds?: string[];
4130
4258
  /**
4131
- * <p>The selection type that determines which managed data identifiers the job uses when it analyzes data. Possible values are:</p> <ul><li><p>ALL - Use all managed data identifiers.</p></li> <li><p>EXCLUDE - Use all managed data identifiers except the ones specified by the managedDataIdentifierIds property.</p></li> <li><p>INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.</p></li> <li><p>NONE - Don't use any managed data identifiers. Use only custom data identifiers (customDataIdentifierIds).</p></li> <li><p>RECOMMENDED (default) - Use the recommended set of managed data identifiers.</p></li></ul> <p>If this value is null, the job uses the recommended set of managed data identifiers.</p> <p>If the job is a recurring job and this value is ALL or EXCLUDE, each job run automatically uses new managed data identifiers that are released. If this value is null or RECOMMENDED for a recurring job, each job run uses all the managed data identifiers that are in the recommended set when the run starts.</p> <p>For information about individual managed data identifiers or to determine which ones are in the recommended set, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> and <a href="https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-mdis-recommended.html">Recommended managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
4259
+ * <p>The selection type that determines which managed data identifiers the job uses when it analyzes data. Possible values are:</p> <ul><li><p>ALL - Use all managed data identifiers.</p></li> <li><p>EXCLUDE - Use all managed data identifiers except the ones specified by the managedDataIdentifierIds property.</p></li> <li><p>INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.</p></li> <li><p>NONE - Don't use any managed data identifiers. Use only custom data identifiers (customDataIdentifierIds).</p></li> <li><p>RECOMMENDED (default) - Use the recommended set of managed data identifiers.</p></li></ul> <p>If this value is null, the job uses the recommended set of managed data identifiers.</p> <p>If the job is a recurring job and this value is ALL or EXCLUDE, each job run automatically uses new managed data identifiers that are released. If this value is null or RECOMMENDED for a recurring job, each job run uses all the managed data identifiers that are in the recommended set when the run starts.</p> <p>To learn about individual managed data identifiers or determine which ones are in the recommended set, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> or <a href="https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-mdis-recommended.html">Recommended managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
4132
4260
  * @public
4133
4261
  */
4134
4262
  managedDataIdentifierSelector?: ManagedDataIdentifierSelector;
@@ -4158,7 +4286,7 @@ export interface DescribeClassificationJobResponse {
4158
4286
  */
4159
4287
  statistics?: Statistics;
4160
4288
  /**
4161
- * <p>A map of key-value pairs that specifies which tags (keys and values) are associated with the classification job.</p>
4289
+ * <p>A map of key-value pairs that specifies which tags (keys and values) are associated with the job.</p>
4162
4290
  * @public
4163
4291
  */
4164
4292
  tags?: Record<string, string>;
@@ -4431,32 +4559,37 @@ export interface GetAutomatedDiscoveryConfigurationRequest {
4431
4559
  */
4432
4560
  export interface GetAutomatedDiscoveryConfigurationResponse {
4433
4561
  /**
4434
- * <p>The unique identifier for the classification scope that's used when performing automated sensitive data discovery for the account. The classification scope specifies S3 buckets to exclude from automated sensitive data discovery.</p>
4562
+ * <p>Specifies whether automated sensitive data discovery is enabled automatically for accounts in the organization. Possible values are: ALL, enable it for all existing accounts and new member accounts; NEW, enable it only for new member accounts; and, NONE, don't enable it for any accounts.</p>
4563
+ * @public
4564
+ */
4565
+ autoEnableOrganizationMembers?: AutoEnableMode;
4566
+ /**
4567
+ * <p>The unique identifier for the classification scope that's used when performing automated sensitive data discovery. The classification scope specifies S3 buckets to exclude from analyses.</p>
4435
4568
  * @public
4436
4569
  */
4437
4570
  classificationScopeId?: string;
4438
4571
  /**
4439
- * <p>The date and time, in UTC and extended ISO 8601 format, when automated sensitive data discovery was most recently disabled for the account. This value is null if automated sensitive data discovery wasn't enabled and subsequently disabled for the account.</p>
4572
+ * <p>The date and time, in UTC and extended ISO 8601 format, when automated sensitive data discovery was most recently disabled. This value is null if automated sensitive data discovery is currently enabled.</p>
4440
4573
  * @public
4441
4574
  */
4442
4575
  disabledAt?: Date;
4443
4576
  /**
4444
- * <p>The date and time, in UTC and extended ISO 8601 format, when automated sensitive data discovery was initially enabled for the account. This value is null if automated sensitive data discovery has never been enabled for the account.</p>
4577
+ * <p>The date and time, in UTC and extended ISO 8601 format, when automated sensitive data discovery was initially enabled. This value is null if automated sensitive data discovery has never been enabled.</p>
4445
4578
  * @public
4446
4579
  */
4447
4580
  firstEnabledAt?: Date;
4448
4581
  /**
4449
- * <p>The date and time, in UTC and extended ISO 8601 format, when automated sensitive data discovery was most recently enabled or disabled for the account.</p>
4582
+ * <p>The date and time, in UTC and extended ISO 8601 format, when the configuration settings or status of automated sensitive data discovery was most recently changed.</p>
4450
4583
  * @public
4451
4584
  */
4452
4585
  lastUpdatedAt?: Date;
4453
4586
  /**
4454
- * <p>The unique identifier for the sensitivity inspection template that's used when performing automated sensitive data discovery for the account. The template specifies which allow lists, custom data identifiers, and managed data identifiers to use when analyzing data.</p>
4587
+ * <p>The unique identifier for the sensitivity inspection template that's used when performing automated sensitive data discovery. The template specifies which allow lists, custom data identifiers, and managed data identifiers to use when analyzing data.</p>
4455
4588
  * @public
4456
4589
  */
4457
4590
  sensitivityInspectionTemplateId?: string;
4458
4591
  /**
4459
- * <p>The current status of the automated sensitive data discovery configuration for the account. Possible values are: ENABLED, use the specified settings to perform automated sensitive data discovery activities for the account; and, DISABLED, don't perform automated sensitive data discovery activities for the account.</p>
4592
+ * <p>The current status of automated sensitive data discovery for the organization or account. Possible values are: ENABLED, use the specified settings to perform automated sensitive data discovery activities; and, DISABLED, don't perform automated sensitive data discovery activities.</p>
4460
4593
  * @public
4461
4594
  */
4462
4595
  status?: AutomatedDiscoveryStatus;
@@ -5000,7 +5133,7 @@ export interface GetResourceProfileRequest {
5000
5133
  resourceArn: string | undefined;
5001
5134
  }
5002
5135
  /**
5003
- * <p>Provides statistical data for sensitive data discovery metrics that apply to an S3 bucket that Amazon Macie monitors and analyzes for your account. The statistics capture the results of automated sensitive data discovery activities that Macie has performed for the bucket. The data is available only if automated sensitive data discovery is currently enabled for your account.</p>
5136
+ * <p>Provides statistical data for sensitive data discovery metrics that apply to an S3 bucket that Amazon Macie monitors and analyzes for an account, if automated sensitive data discovery has been enabled for the account. The data captures the results of automated sensitive data discovery activities that Macie has performed for the bucket.</p>
5004
5137
  * @public
5005
5138
  */
5006
5139
  export interface ResourceStatistics {
@@ -5247,7 +5380,7 @@ export interface GetSensitivityInspectionTemplateRequest {
5247
5380
  id: string | undefined;
5248
5381
  }
5249
5382
  /**
5250
- * <p>Specifies managed data identifiers to exclude (not use) when performing automated sensitive data discovery for an Amazon Macie account. For information about the managed data identifiers that Amazon Macie currently provides, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
5383
+ * <p>Specifies managed data identifiers to exclude (not use) when performing automated sensitive data discovery. For information about the managed data identifiers that Amazon Macie currently provides, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
5251
5384
  * @public
5252
5385
  */
5253
5386
  export interface SensitivityInspectionTemplateExcludes {
@@ -5258,7 +5391,7 @@ export interface SensitivityInspectionTemplateExcludes {
5258
5391
  managedDataIdentifierIds?: string[];
5259
5392
  }
5260
5393
  /**
5261
- * <p>Specifies the allow lists, custom data identifiers, and managed data identifiers to include (use) when performing automated sensitive data discovery for an Amazon Macie account. The configuration must specify at least one custom data identifier or managed data identifier. For information about the managed data identifiers that Amazon Macie currently provides, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
5394
+ * <p>Specifies the allow lists, custom data identifiers, and managed data identifiers to include (use) when performing automated sensitive data discovery. The configuration must specify at least one custom data identifier or managed data identifier. For information about the managed data identifiers that Amazon Macie currently provides, see <a href="https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html">Using managed data identifiers</a> in the <i>Amazon Macie User Guide</i>.</p>
5262
5395
  * @public
5263
5396
  */
5264
5397
  export interface SensitivityInspectionTemplateIncludes {
@@ -5288,12 +5421,12 @@ export interface GetSensitivityInspectionTemplateResponse {
5288
5421
  */
5289
5422
  description?: string;
5290
5423
  /**
5291
- * <p>The managed data identifiers that are explicitly excluded (not used) when analyzing data.</p>
5424
+ * <p>The managed data identifiers that are explicitly excluded (not used) when performing automated sensitive data discovery.</p>
5292
5425
  * @public
5293
5426
  */
5294
5427
  excludes?: SensitivityInspectionTemplateExcludes;
5295
5428
  /**
5296
- * <p>The allow lists, custom data identifiers, and managed data identifiers that are explicitly included (used) when analyzing data.</p>
5429
+ * <p>The allow lists, custom data identifiers, and managed data identifiers that are explicitly included (used) when performing automated sensitive data discovery.</p>
5297
5430
  * @public
5298
5431
  */
5299
5432
  includes?: SensitivityInspectionTemplateIncludes;
@@ -5455,163 +5588,17 @@ export interface ListAllowListsResponse {
5455
5588
  */
5456
5589
  nextToken?: string;
5457
5590
  }
5458
- /**
5459
- * <p>Specifies criteria for filtering the results of a request for information about classification jobs.</p>
5460
- * @public
5461
- */
5462
- export interface ListJobsFilterCriteria {
5463
- /**
5464
- * <p>An array of objects, one for each condition that determines which jobs to exclude from the results.</p>
5465
- * @public
5466
- */
5467
- excludes?: ListJobsFilterTerm[];
5468
- /**
5469
- * <p>An array of objects, one for each condition that determines which jobs to include in the results.</p>
5470
- * @public
5471
- */
5472
- includes?: ListJobsFilterTerm[];
5473
- }
5474
- /**
5475
- * @public
5476
- * @enum
5477
- */
5478
- export declare const ListJobsSortAttributeName: {
5479
- readonly createdAt: "createdAt";
5480
- readonly jobStatus: "jobStatus";
5481
- readonly jobType: "jobType";
5482
- readonly name: "name";
5483
- };
5484
- /**
5485
- * @public
5486
- */
5487
- export type ListJobsSortAttributeName = (typeof ListJobsSortAttributeName)[keyof typeof ListJobsSortAttributeName];
5488
- /**
5489
- * <p>Specifies criteria for sorting the results of a request for information about classification jobs.</p>
5490
- * @public
5491
- */
5492
- export interface ListJobsSortCriteria {
5493
- /**
5494
- * <p>The property to sort the results by.</p>
5495
- * @public
5496
- */
5497
- attributeName?: ListJobsSortAttributeName;
5498
- /**
5499
- * <p>The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.</p>
5500
- * @public
5501
- */
5502
- orderBy?: OrderBy;
5503
- }
5504
- /**
5505
- * @public
5506
- */
5507
- export interface ListClassificationJobsRequest {
5508
- /**
5509
- * <p>The criteria to use to filter the results.</p>
5510
- * @public
5511
- */
5512
- filterCriteria?: ListJobsFilterCriteria;
5513
- /**
5514
- * <p>The maximum number of items to include in each page of the response.</p>
5515
- * @public
5516
- */
5517
- maxResults?: number;
5518
- /**
5519
- * <p>The nextToken string that specifies which page of results to return in a paginated response.</p>
5520
- * @public
5521
- */
5522
- nextToken?: string;
5523
- /**
5524
- * <p>The criteria to use to sort the results.</p>
5525
- * @public
5526
- */
5527
- sortCriteria?: ListJobsSortCriteria;
5528
- }
5529
- /**
5530
- * @public
5531
- */
5532
- export interface ListClassificationJobsResponse {
5533
- /**
5534
- * <p>An array of objects, one for each job that matches the filter criteria specified in the request.</p>
5535
- * @public
5536
- */
5537
- items?: JobSummary[];
5538
- /**
5539
- * <p>The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.</p>
5540
- * @public
5541
- */
5542
- nextToken?: string;
5543
- }
5544
- /**
5545
- * @public
5546
- */
5547
- export interface ListClassificationScopesRequest {
5548
- /**
5549
- * <p>The name of the classification scope to retrieve the unique identifier for.</p>
5550
- * @public
5551
- */
5552
- name?: string;
5553
- /**
5554
- * <p>The nextToken string that specifies which page of results to return in a paginated response.</p>
5555
- * @public
5556
- */
5557
- nextToken?: string;
5558
- }
5559
- /**
5560
- * @public
5561
- */
5562
- export interface ListClassificationScopesResponse {
5563
- /**
5564
- * <p>An array that specifies the unique identifier and name of the classification scope for the account.</p>
5565
- * @public
5566
- */
5567
- classificationScopes?: ClassificationScopeSummary[];
5568
- /**
5569
- * <p>The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.</p>
5570
- * @public
5571
- */
5572
- nextToken?: string;
5573
- }
5574
5591
  /**
5575
5592
  * @public
5576
5593
  */
5577
- export interface ListCustomDataIdentifiersRequest {
5594
+ export interface ListAutomatedDiscoveryAccountsRequest {
5578
5595
  /**
5579
- * <p>The maximum number of items to include in each page of the response.</p>
5596
+ * <p>The Amazon Web Services account ID for each account, for as many as 50 accounts. To retrieve the status for multiple accounts, append the accountIds parameter and argument for each account, separated by an ampersand (&amp;). To retrieve the status for all the accounts in an organization, omit this parameter.</p>
5580
5597
  * @public
5581
5598
  */
5582
- maxResults?: number;
5599
+ accountIds?: string[];
5583
5600
  /**
5584
- * <p>The nextToken string that specifies which page of results to return in a paginated response.</p>
5585
- * @public
5586
- */
5587
- nextToken?: string;
5588
- }
5589
- /**
5590
- * @public
5591
- */
5592
- export interface ListCustomDataIdentifiersResponse {
5593
- /**
5594
- * <p>An array of objects, one for each custom data identifier.</p>
5595
- * @public
5596
- */
5597
- items?: CustomDataIdentifierSummary[];
5598
- /**
5599
- * <p>The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.</p>
5600
- * @public
5601
- */
5602
- nextToken?: string;
5603
- }
5604
- /**
5605
- * @public
5606
- */
5607
- export interface ListFindingsRequest {
5608
- /**
5609
- * <p>The criteria to use to filter the results.</p>
5610
- * @public
5611
- */
5612
- findingCriteria?: FindingCriteria;
5613
- /**
5614
- * <p>The maximum number of items to include in each page of the response.</p>
5601
+ * <p>The maximum number of items to include in each page of a paginated response.</p>
5615
5602
  * @public
5616
5603
  */
5617
5604
  maxResults?: number;
@@ -5620,21 +5607,16 @@ export interface ListFindingsRequest {
5620
5607
  * @public
5621
5608
  */
5622
5609
  nextToken?: string;
5623
- /**
5624
- * <p>The criteria to use to sort the results.</p>
5625
- * @public
5626
- */
5627
- sortCriteria?: SortCriteria;
5628
5610
  }
5629
5611
  /**
5630
5612
  * @public
5631
5613
  */
5632
- export interface ListFindingsResponse {
5614
+ export interface ListAutomatedDiscoveryAccountsResponse {
5633
5615
  /**
5634
- * <p>An array of strings, where each string is the unique identifier for a finding that matches the filter criteria specified in the request.</p>
5616
+ * <p>An array of objects, one for each account specified in the request. Each object specifies the Amazon Web Services account ID for an account and the current status of automated sensitive data discovery for that account.</p>
5635
5617
  * @public
5636
5618
  */
5637
- findingIds?: string[];
5619
+ items?: AutomatedDiscoveryAccount[];
5638
5620
  /**
5639
5621
  * <p>The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.</p>
5640
5622
  * @public