interface DependencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Synthetics.Mixins.CfnCanaryPropsMixin.DependencyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssynthetics/mixins#CfnCanaryPropsMixin_DependencyProperty |
Java | software.amazon.awscdk.mixins.preview.services.synthetics.mixins.CfnCanaryPropsMixin.DependencyProperty |
Python | aws_cdk.mixins_preview.aws_synthetics.mixins.CfnCanaryPropsMixin.DependencyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_synthetics » mixins » CfnCanaryPropsMixin » 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 { mixins as synthetics_mixins } from '@aws-cdk/mixins-preview/aws-synthetics';
const dependencyProperty: synthetics_mixins.CfnCanaryPropsMixin.DependencyProperty = {
reference: 'reference',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| reference? | string | The dependency reference. |
| type? | string | The type of dependency. |
reference?
Type:
string
(optional)
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