Package software.amazon.awscdk.core
Interface CfnIncludeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIncludeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:54.855Z")
@Stability(Deprecated)
@Deprecated
public interface CfnIncludeProps
extends software.amazon.jsii.JsiiSerializable
Deprecated.
use the CfnInclude class from the cloudformation-include module instead
(deprecated) Construction properties for
CfnInclude.
Example:
CfnInclude.Builder.create(this, "ID")
.template(Map.of(
"Resources", Map.of(
"Bucket", Map.of(
"Type", "AWS::S3::Bucket",
"Properties", Map.of(
"BucketName", "my-shiny-bucket")))))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIncludeProps.Builderbuilder()Deprecated.com.fasterxml.jackson.databind.node.ObjectNodeDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTemplate
@Stability(Deprecated) @Deprecated @NotNull com.fasterxml.jackson.databind.node.ObjectNode getTemplate()Deprecated.(deprecated) The CloudFormation template to include in the stack (as is). -
builder
Deprecated.- Returns:
- a
CfnIncludeProps.BuilderofCfnIncludeProps
-