Construct¶
-
class
aws_cdk.core.
Construct
(scope, id)¶ Bases:
constructs.Construct
Represents the building block of the construct graph.
All constructs besides the root construct must be created within the scope of another construct.
- Parameters
scope (
Construct
) –id (
str
) –
Methods
-
to_string
()¶ Returns a string representation of this construct.
- Return type
str
Attributes
-
node
¶ The construct tree node associated with this construct.
- Return type
Static Methods
-
classmethod
is_construct
(x)¶ Return whether the given object is a Construct.
- Parameters
x (
Any
) –- Return type
bool