Class ExportValueOptions
Options for the stack.exportValue() method.
Implements
Inherited Members
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 |
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
Remarks
Default: - No description
Name
The name of the export to create.
public string? Name { get; set; }
Property Value
Remarks
Default: - A name is automatically chosen