Skip to content

Commit

Permalink
Add pattern for SNS topic name (#3869)
Browse files Browse the repository at this point in the history
* Add pattern for SNS topic name
  • Loading branch information
kddejong authored Dec 12, 2024
1 parent 53e767e commit 644c119
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"op": "add",
"path": "/properties/TopicName/pattern",
"value": "^[a-zA-Z0-9-_]+(\\.fifo)?$"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
"TopicName": {
"maxLength": 256,
"minLength": 1,
"pattern": "^[a-zA-Z0-9-_]+(\\.fifo)?$",
"type": "string"
},
"TracingConfig": {
Expand Down

0 comments on commit 644c119

Please sign in to comment.