EnvironmentBlueprintConfigurationReference

class aws_cdk.interfaces.aws_datazone.EnvironmentBlueprintConfigurationReference(*, domain_id, environment_blueprint_id)

Bases: object

A reference to a EnvironmentBlueprintConfiguration resource.

Parameters:
  • domain_id (str) – The DomainId of the EnvironmentBlueprintConfiguration resource.

  • environment_blueprint_id (str) – The EnvironmentBlueprintId of the EnvironmentBlueprintConfiguration 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.interfaces import aws_datazone as interfaces_aws_datazone

environment_blueprint_configuration_reference = interfaces_aws_datazone.EnvironmentBlueprintConfigurationReference(
    domain_id="domainId",
    environment_blueprint_id="environmentBlueprintId"
)

Attributes

domain_id

The DomainId of the EnvironmentBlueprintConfiguration resource.

environment_blueprint_id

The EnvironmentBlueprintId of the EnvironmentBlueprintConfiguration resource.