OwnerReference

class aws_cdk.aws_datazone.OwnerReference(*, domain_identifier, entity_identifier, entity_type, owner_identifier, owner_type)

Bases: object

A reference to a Owner resource.

Parameters:
  • domain_identifier (str) – The DomainIdentifier of the Owner resource.

  • entity_identifier (str) – The EntityIdentifier of the Owner resource.

  • entity_type (str) – The EntityType of the Owner resource.

  • owner_identifier (str) – The OwnerIdentifier of the Owner resource.

  • owner_type (str) – The OwnerType of the Owner 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

owner_reference = datazone.OwnerReference(
    domain_identifier="domainIdentifier",
    entity_identifier="entityIdentifier",
    entity_type="entityType",
    owner_identifier="ownerIdentifier",
    owner_type="ownerType"
)

Attributes

domain_identifier

The DomainIdentifier of the Owner resource.

entity_identifier

The EntityIdentifier of the Owner resource.

entity_type

The EntityType of the Owner resource.

owner_identifier

The OwnerIdentifier of the Owner resource.

owner_type

The OwnerType of the Owner resource.