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

.NET
Go
Java
Python
TypeScript