Show / Hide Table of Contents

Interface IExportValueOptions

Options for the stack.exportValue() method.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IExportValueOptions
Syntax (vb)
Public Interface IExportValueOptions
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 exportValueOptions = new ExportValueOptions {
                Description = "description",
                Name = "name"
            };

Synopsis

Properties

Description

The description of the outputs.

Name

The name of the export to create.

Properties

Description

The description of the outputs.

string? Description { get; }
Property Value

string

Remarks

Default: - No description

Name

The name of the export to create.

string? Name { get; }
Property Value

string

Remarks

Default: - A name is automatically chosen

Back to top Generated by DocFX