interface DependencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Synthetics.CfnCanaryPropsMixin.DependencyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssynthetics#CfnCanaryPropsMixin_DependencyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.synthetics.CfnCanaryPropsMixin.DependencyProperty |
Python | aws_cdk.cfn_property_mixins.aws_synthetics.CfnCanaryPropsMixin.DependencyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_synthetics » 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 { aws_synthetics as synthetics } from '@aws-cdk/cfn-property-mixins';
const dependencyProperty: synthetics.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