Skip to content

Commit 8161976

Browse files
authored
Allow list TopicArn for SNS Publish and PublishBatch (#357)
* Allow list TopicArn for SNS PublishBatch request * Allow list TopicArn for SNS Publish and PublishBatch
1 parent 11c498b commit 8161976

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

aws-xray-recorder-sdk-aws-sdk-v2/src/main/resources/com/amazonaws/xray/interceptors/DefaultOperationParameterWhitelist.json

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
{
22
"services": {
3+
"SNS": {
4+
"operations": {
5+
"Publish": {
6+
"request_parameters": [
7+
"TopicArn"
8+
]
9+
},
10+
"PublishBatch": {
11+
"request_parameters": [
12+
"TopicArn"
13+
]
14+
}
15+
}
16+
},
317
"DynamoDb": {
418
"operations": {
519
"BatchGetItem": {

aws-xray-recorder-sdk-aws-sdk/src/main/resources/com/amazonaws/xray/handlers/DefaultOperationParameterWhitelist.json

+5
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,11 @@
332332
"request_parameters": [
333333
"TopicArn"
334334
]
335+
},
336+
"PublishBatch": {
337+
"request_parameters": [
338+
"TopicArn"
339+
]
335340
}
336341
}
337342
},

0 commit comments

Comments
 (0)