AWS bedrock medium security documentation change
Summary
Corrected error condition phrasing to clarify that lack of permissions triggers an error
Security assessment
The change explicitly states that missing permissions cause errors, emphasizing proper access control. This clarifies security enforcement in API usage.
Diff
diff --git a/bedrock/latest/userguide/bda-using-api.md b/bedrock/latest/userguide/bda-using-api.md index 54873b018..03127e8f1 100644 --- a//bedrock/latest/userguide/bda-using-api.md +++ b//bedrock/latest/userguide/bda-using-api.md @@ -55 +55 @@ You have a project set up, you can start processing images using the InvokeDataA -This API call initiates the asynchronous processing of your files in a specified S3 bucket. The API accepts the project ARN and the file to be processed, then starts the asynchronous processing job. A job ID is returned for tracking the process. Errors will be raised if the project doesn't exist, if the caller has the necessary permissions, or if the input files aren't in a supported format. +This API call initiates the asynchronous processing of your files in a specified S3 bucket. The API accepts the project ARN and the file to be processed, then starts the asynchronous processing job. A job ID is returned for tracking the process. Errors will be raised if the project doesn't exist, or if the caller doesn't have the necessary permissions, or if the input files aren't in a supported format.