Class CompositeDependable
Composite dependable.
Implements
IDependable
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CompositeDependable : DeputyBase, IDependable
Syntax (vb)
Public Class CompositeDependable Inherits DeputyBase Implements IDependable
Remarks
Not as simple as eagerly getting the dependency roots from the inner dependables, as they may be mutable so we need to defer the query.
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.AWS.IAM;
using Constructs;
IDependable dependable;
var compositeDependable = new CompositeDependable(dependable);
Synopsis
Constructors
| CompositeDependable(params IDependable[]) | Composite dependable. |
Constructors
CompositeDependable(params IDependable[])
Composite dependable.
public CompositeDependable(params IDependable[] dependables)
Parameters
- dependables IDependable[]
Remarks
Not as simple as eagerly getting the dependency roots from the inner dependables, as they may be mutable so we need to defer the query.
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.AWS.IAM;
using Constructs;
IDependable dependable;
var compositeDependable = new CompositeDependable(dependable);
Implements
Constructs.IDependable