interface NamespaceProviderPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnIdNamespace.NamespaceProviderPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnIdNamespace_NamespaceProviderPropertiesProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnIdNamespace.NamespaceProviderPropertiesProperty |
Python | aws_cdk.aws_entityresolution.CfnIdNamespace.NamespaceProviderPropertiesProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnIdNamespace » NamespaceProviderPropertiesProperty |
An object containing providerConfiguration and providerServiceArn .
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 namespaceProviderPropertiesProperty: entityresolution.CfnIdNamespace.NamespaceProviderPropertiesProperty = {
providerServiceArn: 'providerServiceArn',
// the properties below are optional
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | string | The Amazon Resource Name (ARN) of the provider service. |
| provider | { [string]: string } | IResolvable | An object which defines any additional configurations required by the provider service. |
providerServiceArn
Type:
string
The Amazon Resource Name (ARN) of the provider service.
providerConfiguration?
Type:
{ [string]: string } | IResolvable
(optional)
An object which defines any additional configurations required by the provider service.

.NET
Go
Java
Python
TypeScript