You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that following error is thrown: InvalidConfiguration: ARN endpoint is not compatible with FIPS region
Code
importAWSfrom"aws-sdk";// ARN for the S3 Object LambdaconstBucket="arn:aws:s3-object-lambda:us-west-2:123456789012:accesspoint/trivikr-object-lambda-testing";constclient=newAWS.S3({region: "fips-us-west-2"});awaitclient.listObjects({ Bucket }).promise();
Expected behavior
The SDK should attempt calling {accesspoint-name}-{account-id}.s3-object-lambda[-fips][.dualstack].{region}.{partition}
The accesspoint provided in test case: arn:aws:s3-object-lambda:us-west-2:123456789012:accesspoint/trivikr-object-lambda-testing
The resulting endpoint should be: trivikr-object-lambda-testing-123456789012.s3-object-lambda-fips.us-west-2.amazonaws.com
The text was updated successfully, but these errors were encountered:
Confirm by changing [ ] to [x] below to ensure that it's a bug:
Describe the bug
FIPS is not supported for S3 Object Lambda
Is the issue in the browser/Node.js?
All
If on Node.js, are you running this on AWS Lambda?
No
Details of the browser/Node.js version
All
SDK version number
[email protected]
To Reproduce (observed behavior)
InvalidConfiguration: ARN endpoint is not compatible with FIPS region
Code
Expected behavior
The SDK should attempt calling
{accesspoint-name}-{account-id}.s3-object-lambda[-fips][.dualstack].{region}.{partition}
The accesspoint provided in test case:
arn:aws:s3-object-lambda:us-west-2:123456789012:accesspoint/trivikr-object-lambda-testing
The resulting endpoint should be:
trivikr-object-lambda-testing-123456789012.s3-object-lambda-fips.us-west-2.amazonaws.com
The text was updated successfully, but these errors were encountered: