Show / Hide Table of Contents

Class Dependency

A single dependency.

Inheritance
System.Object
Dependency
Implements
IDependency
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class Dependency : Object, IDependency
Syntax (vb)
Public Class Dependency
    Inherits Object
    Implements 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

Constructors

Dependency()

Properties

Source

Source the dependency.

Target

Target of the dependency.

Constructors

Dependency()

public Dependency()

Properties

Source

Source the dependency.

public IConstruct Source { get; set; }
Property Value

IConstruct

Target

Target of the dependency.

public IConstruct Target { get; set; }
Property Value

IConstruct

Implements

IDependency
Back to top Generated by DocFX