Class CfnStack.OutputProperty
The Output data type.
Implements
Inherited Members
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStack.OutputProperty : CfnStack.IOutputProperty
Syntax (vb)
Public Class CfnStack.OutputProperty Implements CfnStack.IOutputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var outputProperty = new OutputProperty {
Description = "description",
ExportName = "exportName",
OutputKey = "outputKey",
OutputValue = "outputValue"
};
Synopsis
Constructors
| OutputProperty() | The |
Properties
| Description | User defined description associated with the output. |
| ExportName | The name of the export associated with the output. |
| OutputKey | The key associated with the output. |
| OutputValue | The value associated with the output. |
Constructors
OutputProperty()
The Output data type.
public OutputProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var outputProperty = new OutputProperty {
Description = "description",
ExportName = "exportName",
OutputKey = "outputKey",
OutputValue = "outputValue"
};
Properties
Description
User defined description associated with the output.
public string? Description { get; set; }
Property Value
Remarks
ExportName
The name of the export associated with the output.
public string? ExportName { get; set; }
Property Value
Remarks
OutputKey
The key associated with the output.
public string? OutputKey { get; set; }
Property Value
Remarks
OutputValue
The value associated with the output.
public string? OutputValue { get; set; }