ExportValueOptions

class aws_cdk.ExportValueOptions(*, description=None, name=None)

Bases: object

Options for the stack.exportValue() method.

Parameters:
  • description (Optional[str]) – The description of the outputs. Default: - No description

  • name (Optional[str]) – The name of the export to create. Default: - A name is automatically chosen

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk as cdk

export_value_options = cdk.ExportValueOptions(
    description="description",
    name="name"
)

Attributes

description

The description of the outputs.

Default:
  • No description

name

The name of the export to create.

Default:
  • A name is automatically chosen