interface ExportValueOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.ExportValueOptions |
Java | software.amazon.awscdk.core.ExportValueOptions |
Python | aws_cdk.core.ExportValueOptions |
TypeScript (source) | @aws-cdk/core » ExportValueOptions |
Options for the stack.exportValue() method.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from '@aws-cdk/core';
const exportValueOptions: cdk.ExportValueOptions = {
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the export to create. |
name?
Type:
string
(optional, default: A name is automatically chosen)
The name of the export to create.

.NET
Java
Python
TypeScript (