Show / Hide Table of Contents

Class CfnStack.OutputProperty

The Output data type.

Inheritance
object
CfnStack.OutputProperty
Implements
CfnStack.IOutputProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

The Output data type.

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

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"
             };

Properties

Description

User defined description associated with the output.

public string? Description { get; set; }
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.

public string? ExportName { get; set; }
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.

public string? OutputKey { get; set; }
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.

public string? OutputValue { get; set; }
Property Value

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