interface OutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnStackPropsMixin.OutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnStackPropsMixin_OutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnStackPropsMixin.OutputProperty |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnStackPropsMixin.OutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnStackPropsMixin » 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 { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const outputProperty: cloudformation_mixins.CfnStackPropsMixin.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.

.NET
Go
Java
Python
TypeScript