-
Notifications
You must be signed in to change notification settings - Fork 4k
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
[ApiGatewayV2] integration subtype - sqs #10497
Comments
Hi @dsoshawn, Looking at the CDK documentation for CfnIntegrationProps I see an option for IntegrationSubtype as expected. Looks like there's no custom CDK constructs for "AWS::ApiGatewayV2::Integration" resource yet, but the above appears sufficient for your needs using CDK. If I've misunderstood the problem, give me a shout, happy to investigate further. |
Moving this as a feature request. Until this is implemented, you can use escape hatches or Cfn construct types (pointed out by @rrhodes) to use this feature |
Using the L1 this is possible as pointed out. Example:
I needed this for some projects and have it on my todo list to implement an Is somebody else working on it? |
I've repurposed this issue to only refer to the sqs subtype so as to track each one. Here's another one for step functions - #11947 |
This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
:Question: -->
While declaring AWS::ApiGatewayV2::Integration resource to create an integration with SQS, the option IntegrationSubtype is available in CloudFormation documentation =>
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationsubtype
However, the construct IntegrationSubtype is not available while working with CDK =>
https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-apigatewayv2.CfnIntegration.html
I need to configure IntegrationSubtype with CDK.
Is this a limitation on the CDK end here, as CloudFormation already supports the subtype key?
or Is there any alternative to workaround this such that I can configure IntegrationSubtype using CDK ?
The text was updated successfully, but these errors were encountered: