Skip to content

Commit

Permalink
Amazon Personalize Update: Update regex validation in kmsKeyArn and s…
Browse files Browse the repository at this point in the history
…3 path API parameters for AWS Personalize APIs
  • Loading branch information
AWS committed Jun 7, 2021
1 parent 012dfda commit f1f986a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changes/next-release/feature-AmazonPersonalize-549c9e5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "Amazon Personalize",
"contributor": "",
"description": "Update regex validation in kmsKeyArn and s3 path API parameters for AWS Personalize APIs"
}
Original file line number Diff line number Diff line change
Expand Up @@ -2713,7 +2713,10 @@
"max":150,
"min":1
},
"KmsKeyArn":{"type":"string"},
"KmsKeyArn":{
"type":"string",
"pattern":"arn:aws.*:kms:.*:[0-9]{12}:key/.*"
},
"LimitExceededException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3271,7 +3274,8 @@
},
"S3Location":{
"type":"string",
"max":256
"max":256,
"pattern":"(s3|http|https)://.+"
},
"Schemas":{
"type":"list",
Expand Down

0 comments on commit f1f986a

Please sign in to comment.