interface CustomResourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CustomResourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CustomResourceReference |
Java | software.amazon.awscdk.CustomResourceReference |
Python | aws_cdk.CustomResourceReference |
TypeScript | aws-cdk-lib » 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 * as cdk from 'aws-cdk-lib';
const customResourceReference: cdk.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