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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAccessor.DataAccessorAuthenticationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Configuration for IAM Identity Center Trusted Token Issuer (TTI) authentication used when the authentication type isAWS_IAM_IDC_TTI.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdcTrustedTokenIssuerConfiguration
Configuration for IAM Identity Center Trusted Token Issuer (TTI) authentication used when the authentication type isAWS_IAM_IDC_TTI.Returns union: either
IResolvableorCfnDataAccessor.DataAccessorIdcTrustedTokenIssuerConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAccessor.DataAccessorAuthenticationConfigurationProperty.Builder builder()
-