Interface CfnDataAccessorPropsMixin.DataAccessorAuthenticationDetailProperty

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

@Stability(Stable) public static interface CfnDataAccessorPropsMixin.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.cfnpropertymixins.services.qbusiness.*;
 DataAccessorAuthenticationDetailProperty dataAccessorAuthenticationDetailProperty = DataAccessorAuthenticationDetailProperty.builder()
         .authenticationConfiguration(DataAccessorAuthenticationConfigurationProperty.builder()
                 .idcTrustedTokenIssuerConfiguration(DataAccessorIdcTrustedTokenIssuerConfigurationProperty.builder()
                         .idcTrustedTokenIssuerArn("idcTrustedTokenIssuerArn")
                         .build())
                 .build())
         .authenticationType("authenticationType")
         .externalIds(List.of("externalIds"))
         .build();
 

See Also: