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: infused

Examples
Stack stack;


            stack.ExportValue(myBucket.BucketName, new ExportValueOptions {
                Name = "TheAwesomeBucket",
                Description = "The name of an S3 bucket"
            });

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