The service map in CloudWatch / X-Ray does not show the bucket name:

I guess it is similar to the following issue (just for S3 instead of SQS): #373
The file https://github.com/aws/aws-xray-sdk-java/blob/master/aws-xray-recorder-sdk-aws-sdk-v2/src/main/resources/com/amazonaws/xray/interceptors/DefaultOperationParameterWhitelist.json seems to be misconfigured.
The name of the bucket name key is wrong. It is "BucketName", but it should be only "Bucket". See the debugger inside the DeleteObjectRequest class ("BucketName" does not match "Bucket" inside the switch case):

For example
"DeleteObject": {
"request_parameters": [
"Key",
"BucketName"
]
},
should probably be
"DeleteObject": {
"request_parameters": [
"Key",
"Bucket"
]
},
The service map in CloudWatch / X-Ray does not show the bucket name:

I guess it is similar to the following issue (just for S3 instead of SQS): #373
The file https://github.com/aws/aws-xray-sdk-java/blob/master/aws-xray-recorder-sdk-aws-sdk-v2/src/main/resources/com/amazonaws/xray/interceptors/DefaultOperationParameterWhitelist.json seems to be misconfigured.
The name of the bucket name key is wrong. It is "BucketName", but it should be only "Bucket". See the debugger inside the DeleteObjectRequest class ("BucketName" does not match "Bucket" inside the switch case):

For example
should probably be