Show / Hide Table of Contents

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;
Dependency dependency = new Dependency {
    Source = construct,
    Target = construct
};

Synopsis

Properties

Source

Source the dependency.

Target

Target of the dependency.

Properties

Source

Source the dependency.

IConstruct Source { get; }
Property Value

IConstruct

Target

Target of the dependency.

IConstruct Target { get; }
Property Value

IConstruct

Back to top Generated by DocFX