Skip to content

Commit

Permalink
feat(client-auto-scaling): Increase the length limit for VPCZoneIdent…
Browse files Browse the repository at this point in the history
…ifier from 2047 to 5000
  • Loading branch information
awstools committed Jul 30, 2024
1 parent bbb4450 commit 2347163
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions codegen/sdk-codegen/aws-models/auto-scaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@
}
},
"VPCZoneIdentifier": {
"target": "com.amazonaws.autoscaling#XmlStringMaxLen2047",
"target": "com.amazonaws.autoscaling#XmlStringMaxLen5000",
"traits": {
"smithy.api#documentation": "<p>One or more subnet IDs, if applicable, separated by commas.</p>"
}
Expand Down Expand Up @@ -3013,7 +3013,7 @@
}
},
"VPCZoneIdentifier": {
"target": "com.amazonaws.autoscaling#XmlStringMaxLen2047",
"target": "com.amazonaws.autoscaling#XmlStringMaxLen5000",
"traits": {
"smithy.api#documentation": "<p>A comma-separated list of subnet IDs for a virtual private cloud (VPC) where instances\n in the Auto Scaling group can be created. If you specify <code>VPCZoneIdentifier</code> with\n <code>AvailabilityZones</code>, the subnets that you specify must reside in those\n Availability Zones.</p>"
}
Expand Down Expand Up @@ -10833,7 +10833,7 @@
}
},
"VPCZoneIdentifier": {
"target": "com.amazonaws.autoscaling#XmlStringMaxLen2047",
"target": "com.amazonaws.autoscaling#XmlStringMaxLen5000",
"traits": {
"smithy.api#documentation": "<p>A comma-separated list of subnet IDs for a virtual private cloud (VPC). If you specify\n <code>VPCZoneIdentifier</code> with <code>AvailabilityZones</code>, the subnets that\n you specify must reside in those Availability Zones.</p>"
}
Expand Down Expand Up @@ -11071,6 +11071,16 @@
"smithy.api#pattern": "^[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*$"
}
},
"com.amazonaws.autoscaling#XmlStringMaxLen5000": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 5000
},
"smithy.api#pattern": "^[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*$"
}
},
"com.amazonaws.autoscaling#XmlStringMaxLen511": {
"type": "string",
"traits": {
Expand Down

0 comments on commit 2347163

Please sign in to comment.