| Modifier and Type | Method and Description |
|---|---|
Stack |
build() |
static Stack.Builder |
create() |
static Stack.Builder |
create(Construct scope) |
static Stack.Builder |
create(Construct scope,
String id) |
Stack.Builder |
description(String description) |
Stack.Builder |
env(Environment env) |
Stack.Builder |
stackName(String stackName) |
Stack.Builder |
tags(Map<String,String> tags) |
@Stability(value=Stable) public static Stack.Builder create(Construct scope, String id)
scope - Parent of this stack, usually a Program instance.id - The construct ID of this stack.Stack.Builder.@Stability(value=Stable) public static Stack.Builder create(Construct scope)
scope - Parent of this stack, usually a Program instance.Stack.Builder.@Stability(value=Stable) public static Stack.Builder create()
Stack.Builder.@Stability(value=Stable) public Stack.Builder description(String description)
description - A description of the stack. This parameter is required.this@Stability(value=Stable) public Stack.Builder env(Environment env)
env - The AWS environment (account/region) where this stack will be deployed. This parameter is required.this@Stability(value=Stable) public Stack.Builder stackName(String stackName)
stackName - Name to deploy the stack with. This parameter is required.this@Stability(value=Stable) public Stack.Builder tags(Map<String,String> tags)
tags - Stack tags that will be applied to all the taggable resources and the stack itself. This parameter is required.this@Stability(value=Stable) public Stack build()
Copyright © 2019. All rights reserved.