interface NamespaceProviderPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdNamespacePropsMixin_NamespaceProviderPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdNamespacePropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const namespaceProviderPropertiesProperty: entityresolution_mixins.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty = {
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | { [string]: string } | IResolvable | An object which defines any additional configurations required by the provider service. |
| provider | 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.
providerServiceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the provider service.

.NET
Go
Java
Python
TypeScript