Interface CfnDataAccessor.DataAccessorAuthenticationDetailProperty

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

@Stability(Stable) public static interface CfnDataAccessor.DataAccessorAuthenticationDetailProperty extends software.amazon.jsii.JsiiSerializable
Contains the authentication configuration details for a data accessor.

This structure defines how the ISV authenticates when accessing data through the data accessor.

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.*;
 DataAccessorAuthenticationDetailProperty dataAccessorAuthenticationDetailProperty = DataAccessorAuthenticationDetailProperty.builder()
         .authenticationType("authenticationType")
         // the properties below are optional
         .authenticationConfiguration(DataAccessorAuthenticationConfigurationProperty.builder()
                 .idcTrustedTokenIssuerConfiguration(DataAccessorIdcTrustedTokenIssuerConfigurationProperty.builder()
                         .idcTrustedTokenIssuerArn("idcTrustedTokenIssuerArn")
                         .build())
                 .build())
         .externalIds(List.of("externalIds"))
         .build();
 

See Also: