Interface IDependency
A single dependency.
public interface IDependency
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
Construct construct;
var dependency = new Dependency {
Source = construct,
Target = construct
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Source
Source the dependency.
IConstruct Source { get; }
Property Value
Target
Target of the dependency.
IConstruct Target { get; }