interface NamespaceProviderPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnIdNamespacePropsMixin_NamespaceProviderPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » 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 { aws_entityresolution as entityresolution } from '@aws-cdk/cfn-property-mixins';
const namespaceProviderPropertiesProperty: entityresolution.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