ExportValueOptions¶
-
class
aws_cdk.core.
ExportValueOptions
(*, name=None)¶ Bases:
object
Options for the
stack.exportValue()
method.- Parameters
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.core as cdk export_value_options = cdk.ExportValueOptions( name="name" )
Attributes
-
name
¶ The name of the export to create.
- Default
A name is automatically chosen
- Return type
Optional
[str
]