ObjectTypeReference
- class aws_cdk.interfaces.aws_customerprofiles.ObjectTypeReference(*, domain_name, object_type_name)
Bases:
objectA 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.interfaces import aws_customerprofiles as interfaces_customerprofiles object_type_reference = interfaces_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.