ObjectTypeReference

class aws_cdk.aws_customerprofiles.ObjectTypeReference(*, domain_name, object_type_name)

Bases: object

A reference to a ObjectType resource.

Parameters:
  • domain_name (str) – The DomainName of the ObjectType resource.

  • object_type_name (str) – The ObjectTypeName of the ObjectType 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_customerprofiles as customerprofiles

object_type_reference = customerprofiles.ObjectTypeReference(
    domain_name="domainName",
    object_type_name="objectTypeName"
)

Attributes

domain_name

The DomainName of the ObjectType resource.

object_type_name

The ObjectTypeName of the ObjectType resource.