interface IdNamespaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_entityresolution.IdNamespaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#IdNamespaceReference |
Java | software.amazon.awscdk.services.entityresolution.IdNamespaceReference |
Python | aws_cdk.aws_entityresolution.IdNamespaceReference |
TypeScript | aws-cdk-lib » aws_entityresolution » IdNamespaceReference |
A reference to a IdNamespace resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const idNamespaceReference: entityresolution.IdNamespaceReference = {
idNamespaceArn: 'idNamespaceArn',
idNamespaceName: 'idNamespaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ARN of the IdNamespace resource. |
| id | string | The IdNamespaceName of the IdNamespace resource. |
idNamespaceArn
Type:
string
The ARN of the IdNamespace resource.
idNamespaceName
Type:
string
The IdNamespaceName of the IdNamespace resource.

.NET
Go
Java
Python
TypeScript