EnvironmentReference
- class aws_cdk.aws_appconfig.EnvironmentReference(*, application_id, environment_id)
Bases:
object
A reference to a Environment resource.
- Parameters:
application_id (
str
) – The ApplicationId of the Environment resource.environment_id (
str
) – The EnvironmentId of the Environment resource.
- 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_appconfig as appconfig environment_reference = appconfig.EnvironmentReference( application_id="applicationId", environment_id="environmentId" )
Attributes
- application_id
The ApplicationId of the Environment resource.
- environment_id
The EnvironmentId of the Environment resource.