interface MacroReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.MacroReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#MacroReference |
Java | software.amazon.awscdk.services.cloudformation.MacroReference |
Python | aws_cdk.aws_cloudformation.MacroReference |
TypeScript | aws-cdk-lib » aws_cloudformation » MacroReference |
A reference to a Macro resource.
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-lib';
const macroReference: cloudformation.MacroReference = {
macroId: 'macroId',
};
Properties
| Name | Type | Description |
|---|---|---|
| macro | string | The Id of the Macro resource. |
macroId
Type:
string
The Id of the Macro resource.

.NET
Go
Java
Python
TypeScript