CompositeDependable

class aws_cdk.aws_iam.CompositeDependable(*dependables)

Bases: object

Composite dependable.

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

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iam as iam
import constructs as constructs

# dependable: constructs.IDependable

composite_dependable = iam.CompositeDependable(dependable)
Parameters:

dependables (IDependable) –