Skip to content

Commit

Permalink
feat(client-datazone): Update regex to include dot character to be co…
Browse files Browse the repository at this point in the history
…nsistent with IAM role creation in the authorized principal field for create and update subscription target.
  • Loading branch information
awstools committed Aug 28, 2024
1 parent 0a561ee commit 535c1a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface DeleteDataProductCommandInput extends DeleteDataProductInput {}
export interface DeleteDataProductCommandOutput extends DeleteDataProductOutput, __MetadataBearer {}

/**
* <p>Deletes an data product in Amazon DataZone.</p>
* <p>Deletes a data product in Amazon DataZone.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
4 changes: 2 additions & 2 deletions codegen/sdk-codegen/aws-models/datazone.json
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,7 @@
"com.amazonaws.datazone#AuthorizedPrincipalIdentifier": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9:/_-]*$"
"smithy.api#pattern": "^[a-zA-Z0-9:/._-]*$"
}
},
"com.amazonaws.datazone#AuthorizedPrincipalIdentifiers": {
Expand Down Expand Up @@ -7686,7 +7686,7 @@
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes an data product in Amazon DataZone.</p>",
"smithy.api#documentation": "<p>Deletes a data product in Amazon DataZone.</p>",
"smithy.api#http": {
"code": 204,
"method": "DELETE",
Expand Down

0 comments on commit 535c1a3

Please sign in to comment.