Interface IDependency
A single dependency.
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public interface IDependency
Syntax (vb)
Public Interface IDependency
Remarks
ExampleMetadata: fixture=_generated
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
};
Synopsis
Properties
Source | Source the dependency. |
Target | Target of the dependency. |