Interface CfnDataAccessor.DataAccessorAuthenticationConfigurationProperty

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

@Stability(Stable) public static interface CfnDataAccessor.DataAccessorAuthenticationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A union type that contains the specific authentication configuration based on the authentication type selected.

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.qbusiness.*;
 DataAccessorAuthenticationConfigurationProperty dataAccessorAuthenticationConfigurationProperty = DataAccessorAuthenticationConfigurationProperty.builder()
         .idcTrustedTokenIssuerConfiguration(DataAccessorIdcTrustedTokenIssuerConfigurationProperty.builder()
                 .idcTrustedTokenIssuerArn("idcTrustedTokenIssuerArn")
                 .build())
         .build();
 

See Also: