Interface CfnFHIRDatastore.IdentityProviderConfigurationProperty

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

@Stability(Stable) public static interface CfnFHIRDatastore.IdentityProviderConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The identity provider configuration that you gave when the data store was created.

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.healthlake.*;
 IdentityProviderConfigurationProperty identityProviderConfigurationProperty = IdentityProviderConfigurationProperty.builder()
         .authorizationStrategy("authorizationStrategy")
         // the properties below are optional
         .fineGrainedAuthorizationEnabled(false)
         .idpLambdaArn("idpLambdaArn")
         .metadata("metadata")
         .build();
 

See Also: