interface DependencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Synthetics.CfnCanary.DependencyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssynthetics#CfnCanary_DependencyProperty |
Java | software.amazon.awscdk.services.synthetics.CfnCanary.DependencyProperty |
Python | aws_cdk.aws_synthetics.CfnCanary.DependencyProperty |
TypeScript | aws-cdk-lib » aws_synthetics » CfnCanary » DependencyProperty |
A structure that contains information about a dependency for a canary.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_synthetics as synthetics } from 'aws-cdk-lib';
const dependencyProperty: synthetics.CfnCanary.DependencyProperty = {
reference: 'reference',
// the properties below are optional
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| reference | string | The dependency reference. |
| type? | string | The type of dependency. |
reference
Type:
string
The dependency reference.
For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda .
type?
Type:
string
(optional)
The type of dependency.
Valid value is LambdaLayer .

.NET
Go
Java
Python
TypeScript