Show / Hide Table of Contents

Interface CfnStack.IOutputProperty

The Output data type.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnStack.IOutputProperty
Syntax (vb)
Public Interface CfnStack.IOutputProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html

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

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.

Properties

Description

User defined description associated with the output.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-description

ExportName

The name of the export associated with the output.

string? ExportName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-exportname

OutputKey

The key associated with the output.

string? OutputKey { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-outputkey

OutputValue

The value associated with the output.

string? OutputValue { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-outputvalue

Back to top Generated by DocFX