sym.sdk.flow.Environment¶
- class sym.sdk.flow.Environment(srn: Union[sym.sdk.resource.SRN, str])¶
Bases:
sym.sdk.resource.SymResource
The
Environment
class represents a container that shares configuration values acrossFlow
instances.Read more about Environments.
Methods
dict
()Represent this resource as a dictionary.
Attributes
A dictionary containing all
Integrations
that may be used in the implementation for aFlow
, as defined in Terraform.An alias for this resource's slug, derived from its
SRN
.A
SRN
object that represents the unique identifier for this resource.- dict()¶
Represent this resource as a dictionary.
- property integrations¶
A dictionary containing all
Integrations
that may be used in the implementation for aFlow
, as defined in Terraform.For example, if Slack and AWS Lambda
Integrations
are specified in theEnvironment
, theintegrations
dictionary would look like this:{ "slack": <sym.sdk.strategies.integration.Integration>, "aws_lambda": <sym.sdk.strategies.integration.Integration> }