-
Notifications
You must be signed in to change notification settings - Fork 638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enum values for VpcEndpoint.State
doesn't match the values that DescribeVpcEndpoints
returns
#2864
Comments
Hi, Sorry for the lack of response here, you are right I can reproduce this inconsistency. |
This is an issue with the service not correctly modeling and using the enum values they have modeled. This is evident in a captured wire dump of the response. Transferring to aws-sdk repository for further follow-up. |
This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
This has still not yet been addressed |
P70319347 |
Contacted service team requesting for an update. Awaiting response. |
Pinged service team again for update. Awaiting response. |
Contacted service team requesting for an update. Awaiting response. |
1 similar comment
Contacted service team requesting for an update. Awaiting response. |
Confirm by changing [ ] to [x] below to ensure that it's a bug:
Describe the bug
The enum values for the
State
field inec2.VpcEndpoint
(StatePendingAcceptance
,StatePending
,StateAvailable
,StateDeleting
,StateRejected
,StateFailed
&StateExpired
) don't match the actual values returned when performingDescribeVpcEndpoints
. The returned value has the first character is always lower case but the enum values in this SDK has them as uppercase.Version of AWS SDK for Go?
v1.27.1, although the problem still exists in master
Version of Go (
go version
)?N/A
To Reproduce (observed behavior)
Perform
ec2:DescribeVpcEndpoints
and observe the values of theState
attribute returned in the response. See if those values match the enum values inState...
Expected behavior
The
State...
enum values should match what is returned byDescribeVpcEndpoints
, just like theInstanceLifecycleType
enum matches the value returned for theInstanceLifecycle
attribute in theec2:DescribeInstances
Additional context
The text was updated successfully, but these errors were encountered: