Skip to content

Commit 5f8c6de

Browse files
author
awstools
committed
feat(client-macie2): This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.
1 parent ba90110 commit 5f8c6de

File tree

6 files changed

+74
-67
lines changed

6 files changed

+74
-67
lines changed

clients/client-macie2/src/commands/DescribeBucketsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export interface DescribeBucketsCommandOutput extends DescribeBucketsResponse, _
7171
* // bucketName: "STRING_VALUE",
7272
* // classifiableObjectCount: Number("long"),
7373
* // classifiableSizeInBytes: Number("long"),
74-
* // errorCode: "ACCESS_DENIED",
74+
* // errorCode: "ACCESS_DENIED" || "BUCKET_COUNT_EXCEEDS_QUOTA",
7575
* // errorMessage: "STRING_VALUE",
7676
* // jobDetails: { // JobDetails
7777
* // isDefinedInJob: "TRUE" || "FALSE" || "UNKNOWN",

clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface ListCustomDataIdentifiersCommandInput extends ListCustomDataIde
2828
export interface ListCustomDataIdentifiersCommandOutput extends ListCustomDataIdentifiersResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Retrieves a subset of information about all the custom data identifiers for an account.</p>
31+
* <p>Retrieves a subset of information about the custom data identifiers for an account.</p>
3232
* @example
3333
* Use a bare-bones client and the command you need to make an API call.
3434
* ```javascript

clients/client-macie2/src/commands/SearchResourcesCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface SearchResourcesCommandInput extends SearchResourcesRequest {}
2828
export interface SearchResourcesCommandOutput extends SearchResourcesResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Retrieves (queries) statistical data and other information about Amazon Web Services resources that Amazon Macie monitors and analyzes.</p>
31+
* <p>Retrieves (queries) statistical data and other information about Amazon Web Services resources that Amazon Macie monitors and analyzes for an account.</p>
3232
* @example
3333
* Use a bare-bones client and the command you need to make an API call.
3434
* ```javascript
@@ -100,7 +100,7 @@ export interface SearchResourcesCommandOutput extends SearchResourcesResponse, _
100100
* // bucketName: "STRING_VALUE",
101101
* // classifiableObjectCount: Number("long"),
102102
* // classifiableSizeInBytes: Number("long"),
103-
* // errorCode: "ACCESS_DENIED",
103+
* // errorCode: "ACCESS_DENIED" || "BUCKET_COUNT_EXCEEDS_QUOTA",
104104
* // errorMessage: "STRING_VALUE",
105105
* // jobDetails: { // JobDetails
106106
* // isDefinedInJob: "TRUE" || "FALSE" || "UNKNOWN",

0 commit comments

Comments
 (0)