Skip to content

Commit

Permalink
feat(client-inspector2): Update the correct format of key and values …
Browse files Browse the repository at this point in the history
…for resource tags
  • Loading branch information
awstools committed Aug 16, 2024
1 parent 271136d commit 594c0fc
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions codegen/sdk-codegen/aws-models/inspector2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13979,7 +13979,7 @@
"com.amazonaws.inspector2#TagValueList": {
"type": "list",
"member": {
"target": "smithy.api#String"
"target": "com.amazonaws.inspector2#TargetResourceTagsValue"
},
"traits": {
"smithy.api#length": {
Expand Down Expand Up @@ -14019,7 +14019,7 @@
"com.amazonaws.inspector2#TargetResourceTags": {
"type": "map",
"key": {
"target": "com.amazonaws.inspector2#NonEmptyString"
"target": "com.amazonaws.inspector2#TargetResourceTagsKey"
},
"value": {
"target": "com.amazonaws.inspector2#TagValueList"
Expand All @@ -14031,6 +14031,25 @@
}
}
},
"com.amazonaws.inspector2#TargetResourceTagsKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#pattern": "^[\\p{L}\\p{Z}\\p{N}_.:/=\\-@]*$"
}
},
"com.amazonaws.inspector2#TargetResourceTagsValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.inspector2#TargetStatusFilterList": {
"type": "list",
"member": {
Expand Down

0 comments on commit 594c0fc

Please sign in to comment.