Show / Hide Table of Contents

Class CfnStack.OutputProperty

The Output data type.

Inheritance
System.Object
CfnStack.OutputProperty
Implements
CfnStack.IOutputProperty
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class OutputProperty : Object, CfnStack.IOutputProperty
Syntax (vb)
Public Class OutputProperty
    Inherits Object
    Implements 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

Constructors

OutputProperty()

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()

public OutputProperty()

Properties

Description

User defined description associated with the output.

public string Description { get; set; }
Property Value

System.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.

public string ExportName { get; set; }
Property Value

System.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.

public string OutputKey { get; set; }
Property Value

System.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.

public string OutputValue { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnStack.IOutputProperty
Back to top Generated by DocFX