Skip to content

Publish the data of unsupported property for L2 construct in AWS CDK

Notifications You must be signed in to change notification settings

badmintoncryer/cdk-unsupported-property-app

Repository files navigation

CDK Unsupported Property App

Web Page

Provides the web page of the result of CDK Unsupported Property.

Description

This page displays a list of unsupported properties in AWS CDK L2 constructs. For more details, visit this materials.

Currently, only support direct inline props properly, and cases using the spread operator are not supported. Even if they are actually supported in L2, they are still counted as unsupported properties.

// Supported
new CfnConstruct(scope, 'Resource', {
  hoge: 'hoge',
  fuga: 123,
});

// Erroneously displayed as unsupported arguments
const props = {
  hoge: 'hoge',
  fuga: 123,
};

new CfnConstruct(scope, 'Resource', {
  ...props,
});

About

Publish the data of unsupported property for L2 construct in AWS CDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published