DomainUnitReference

class aws_cdk.aws_datazone.DomainUnitReference(*, domain_id, domain_unit_id)

Bases: object

A reference to a DomainUnit resource.

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

  • domain_unit_id (str) – The Id of the DomainUnit 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_datazone as datazone

domain_unit_reference = datazone.DomainUnitReference(
    domain_id="domainId",
    domain_unit_id="domainUnitId"
)

Attributes

domain_id

The DomainId of the DomainUnit resource.

domain_unit_id

The Id of the DomainUnit resource.