Provides the web page of the result of CDK Unsupported Property.
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,
});