interface OutputProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.CfnStack.OutputProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2#CfnStack_OutputProperty |
![]() | software.amazon.awscdk.CfnStack.OutputProperty |
![]() | aws_cdk.CfnStack.OutputProperty |
![]() | aws-cdk-lib » CfnStack » OutputProperty |
The Output data type.
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 outputProperty: cdk.CfnStack.OutputProperty = {
description: 'description',
exportName: 'exportName',
outputKey: 'outputKey',
outputValue: 'outputValue',
};
Properties
Name | Type | Description |
---|---|---|
description? | string | User defined description associated with the output. |
export | string | The name of the export associated with the output. |
output | string | The key associated with the output. |
output | string | The value associated with the output. |
description?
Type:
string
(optional)
User defined description associated with the output.
exportName?
Type:
string
(optional)
The name of the export associated with the output.
outputKey?
Type:
string
(optional)
The key associated with the output.
outputValue?
Type:
string
(optional)
The value associated with the output.