| Modifier and Type | Method and Description |
|---|---|
CfnOutput |
build() |
CfnOutput.Builder |
condition(CfnCondition condition)
(experimental) A condition to associate with this output value.
|
static CfnOutput.Builder |
create(software.constructs.Construct scope,
String id) |
CfnOutput.Builder |
description(String description)
(experimental) A String type that describes the output value.
|
CfnOutput.Builder |
exportName(String exportName)
(experimental) The name used to export the value of this output across stacks.
|
CfnOutput.Builder |
value(String value)
(experimental) The value of the property returned by the aws cloudformation describe-stacks command.
|
@Stability(value=Experimental) public static CfnOutput.Builder create(software.constructs.Construct scope, String id)
scope - The parent construct. This parameter is required.id - This parameter is required.CfnOutput.Builder.@Stability(value=Experimental) public CfnOutput.Builder value(String value)
The value of an output can include literals, parameter references, pseudo-parameters, a mapping value, or intrinsic functions.
value - The value of the property returned by the aws cloudformation describe-stacks command. This parameter is required.this@Stability(value=Experimental) public CfnOutput.Builder condition(CfnCondition condition)
If the condition evaluates
to false, this output value will not be included in the stack.
Default: - No condition is associated with the output.
condition - A condition to associate with this output value. This parameter is required.this@Stability(value=Experimental) public CfnOutput.Builder description(String description)
The description can be a maximum of 4 K in length.
Default: - No description.
description - A String type that describes the output value. This parameter is required.this@Stability(value=Experimental) public CfnOutput.Builder exportName(String exportName)
To import the value from another stack, use Fn.importValue(exportName).
Default: - the output is not exported
exportName - The name used to export the value of this output across stacks. This parameter is required.thisCopyright © 2021. All rights reserved.