Show / Hide Table of Contents

Class ExportValueOptions

Options for the stack.exportValue() method.

Inheritance
object
ExportValueOptions
Implements
IExportValueOptions
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 ExportValueOptions : IExportValueOptions
Syntax (vb)
Public Class ExportValueOptions Implements IExportValueOptions
Remarks

ExampleMetadata: infused

Examples
Stack stack;


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

Synopsis

Constructors

ExportValueOptions()

Options for the stack.exportValue() method.

Properties

Description

The description of the outputs.

Name

The name of the export to create.

Constructors

ExportValueOptions()

Options for the stack.exportValue() method.

public ExportValueOptions()
Remarks

ExampleMetadata: infused

Examples
Stack stack;


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

Properties

Description

The description of the outputs.

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

string

Remarks

Default: - No description

Name

The name of the export to create.

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

string

Remarks

Default: - A name is automatically chosen

Implements

IExportValueOptions
Back to top Generated by DocFX