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
dbsubnetgroup.DBSubnetGroup
Listing<String|Mapping>
Listing<String|Mapping>|Mapping
Currently, it doesn't support this kind of use:
Resources { ["SubnetGroup"] = new dbsubnetgroup.DBSubnetGroup { // ... SubnetIds = cfn.Ref("SubnetsIds") // ... } }
It forces you to receive multiple subnet parameters to be passed directly in a listing, like this:
Resources { ["SubnetGroup"] = new dbsubnetgroup.DBSubnetGroup { // ... SubnetIds = new Listing { cfn.Ref("SubnetId1") cfn.Ref("SubnetId2") cfn.Ref("SubnetId3") } // ... } }
The idea is to fix it and allow using refs directly
The text was updated successfully, but these errors were encountered:
Seems like we need to do this for all array types.
Sorry, something went wrong.
No branches or pull requests
Currently, it doesn't support this kind of use:
It forces you to receive multiple subnet parameters to be passed directly in a listing, like this:
The idea is to fix it and allow using refs directly
The text was updated successfully, but these errors were encountered: