interface ExportValueOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.ExportValueOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2#ExportValueOptions |
Java | software.amazon.awscdk.ExportValueOptions |
Python | aws_cdk.ExportValueOptions |
TypeScript (source) | aws-cdk-lib » 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-lib';
const exportValueOptions: cdk.ExportValueOptions = {
description: 'description',
name: 'name',
};
Properties
Name | Type | Description |
---|---|---|
description? | string | The description of the outputs. |
name? | string | The name of the export to create. |
description?
Type:
string
(optional, default: No description)
The description of the outputs.
name?
Type:
string
(optional, default: A name is automatically chosen)
The name of the export to create.