IdNamespaceReference

class aws_cdk.aws_entityresolution.IdNamespaceReference(*, id_namespace_arn, id_namespace_name)

Bases: object

A reference to a IdNamespace resource.

Parameters:
  • id_namespace_arn (str) – The ARN of the IdNamespace resource.

  • id_namespace_name (str) – The IdNamespaceName of the IdNamespace 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_entityresolution as entityresolution

id_namespace_reference = entityresolution.IdNamespaceReference(
    id_namespace_arn="idNamespaceArn",
    id_namespace_name="idNamespaceName"
)

Attributes

id_namespace_arn

The ARN of the IdNamespace resource.

id_namespace_name

The IdNamespaceName of the IdNamespace resource.