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