Table of Contents

Interface ICfnIncludeProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

(deprecated) Construction properties for {@link CfnInclude}.

[Obsolete("use the CfnInclude class from the cloudformation-include module instead")]
public interface ICfnIncludeProps

Examples

new CfnInclude(this, "ID", new CfnIncludeProps {
                 Template = new Dictionary<string, IDictionary<string, IDictionary<string, object>>> {
                     { "Resources", new Struct {
                         Bucket = new Struct {
                             Type = "AWS::S3::Bucket",
                             Properties = new Struct {
                                 BucketName = "my-shiny-bucket"
                             }
                         }
                     } }
                 }
             });

Remarks

Stability: Deprecated

ExampleMetadata: infused

Properties

Template

(deprecated) The CloudFormation template to include in the stack (as is).

[Obsolete]
JObject Template { get; }

Property Value

JObject

Remarks

Stability: Deprecated