Interface CfnIdNamespace.NamespaceProviderPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdNamespace.NamespaceProviderPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnIdNamespace

@Stability(Stable) public static interface CfnIdNamespace.NamespaceProviderPropertiesProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.entityresolution.*;
 NamespaceProviderPropertiesProperty namespaceProviderPropertiesProperty = NamespaceProviderPropertiesProperty.builder()
         .providerServiceArn("providerServiceArn")
         // the properties below are optional
         .providerConfiguration(Map.of(
                 "providerConfigurationKey", "providerConfiguration"))
         .build();
 

See Also: