Package software.amazon.awscdk
Interface CfnStack.OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStack.OutputProperty.Jsii$Proxy
- Enclosing class:
CfnStack
@Stability(Stable)
public static interface CfnStack.OutputProperty
extends software.amazon.jsii.JsiiSerializable
The Output data type.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; OutputProperty outputProperty = OutputProperty.builder() .description("description") .exportName("exportName") .outputKey("outputKey") .outputValue("outputValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStack.OutputProperty
static final class
An implementation forCfnStack.OutputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
User defined description associated with the output.- See Also:
-
getExportName
The name of the export associated with the output.- See Also:
-
getOutputKey
The key associated with the output.- See Also:
-
getOutputValue
The value associated with the output.- See Also:
-
builder
- Returns:
- a
CfnStack.OutputProperty.Builder
ofCfnStack.OutputProperty
-