We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Relates to #2825 where you could reduce the response using outputPath. That filter only applies for objects but responses can have lists as well. I am runnint into the 4k limit issue with accessing https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpn-connections.html where that are lists.
new AwsCustomResource(this, 'describeVpnConnections', { onCreate: { service: 'EC2', action: 'describeVpnConnections', parameters: { VpnConnectionIds: [vpnConnection.vpnId] }, outputPath: 'VpnConnection.Options', physicalResourceId: PhysicalResourceId.of(`${vpnConnection.vpnId}-describe`), }, policy: AwsCustomResourcePolicy.fromSdkCalls({resources: AwsCustomResourcePolicy.ANY_RESOURCE}) });
Response successfull and only Options are returned.
Fails as response ist too long
This is 🐛 Bug Report
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Relates to #2825 where you could reduce the response using outputPath. That filter only applies for objects but responses can have lists as well. I am runnint into the 4k limit issue with accessing https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpn-connections.html where that are lists.
Reproduction Steps
What did you expect to happen?
Response successfull and only Options are returned.
What actually happened?
Fails as response ist too long
Environment
Other
This is 🐛 Bug Report
The text was updated successfully, but these errors were encountered: