Skip to content

Commit

Permalink
feat(client-macie2): This release adds support for identifying S3 gen…
Browse files Browse the repository at this point in the history
…eral purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.
  • Loading branch information
awstools committed Dec 20, 2024
1 parent ba90110 commit 5f8c6de
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 67 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export interface DescribeBucketsCommandOutput extends DescribeBucketsResponse, _
* // bucketName: "STRING_VALUE",
* // classifiableObjectCount: Number("long"),
* // classifiableSizeInBytes: Number("long"),
* // errorCode: "ACCESS_DENIED",
* // errorCode: "ACCESS_DENIED" || "BUCKET_COUNT_EXCEEDS_QUOTA",
* // errorMessage: "STRING_VALUE",
* // jobDetails: { // JobDetails
* // isDefinedInJob: "TRUE" || "FALSE" || "UNKNOWN",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface ListCustomDataIdentifiersCommandInput extends ListCustomDataIde
export interface ListCustomDataIdentifiersCommandOutput extends ListCustomDataIdentifiersResponse, __MetadataBearer {}

/**
* <p>Retrieves a subset of information about all the custom data identifiers for an account.</p>
* <p>Retrieves a subset of information about the custom data identifiers for an account.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
4 changes: 2 additions & 2 deletions clients/client-macie2/src/commands/SearchResourcesCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface SearchResourcesCommandInput extends SearchResourcesRequest {}
export interface SearchResourcesCommandOutput extends SearchResourcesResponse, __MetadataBearer {}

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

0 comments on commit 5f8c6de

Please sign in to comment.