interface MacroReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.MacroReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#MacroReference |
Java | software.amazon.awscdk.interfaces.cloudformation.MacroReference |
Python | aws_cdk.interfaces.aws_cloudformation.MacroReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_cloudformation } from 'aws-cdk-lib/interfaces';
const macroReference: interfaces_aws_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