interface DataAccessorAuthenticationDetailProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_qbusiness.CfnDataAccessor.DataAccessorAuthenticationDetailProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsqbusiness#CfnDataAccessor_DataAccessorAuthenticationDetailProperty |
![]() | software.amazon.awscdk.services.qbusiness.CfnDataAccessor.DataAccessorAuthenticationDetailProperty |
![]() | aws_cdk.aws_qbusiness.CfnDataAccessor.DataAccessorAuthenticationDetailProperty |
![]() | aws-cdk-lib » aws_qbusiness » CfnDataAccessor » DataAccessorAuthenticationDetailProperty |
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 { aws_qbusiness as qbusiness } from 'aws-cdk-lib';
const dataAccessorAuthenticationDetailProperty: qbusiness.CfnDataAccessor.DataAccessorAuthenticationDetailProperty = {
authenticationType: 'authenticationType',
// the properties below are optional
authenticationConfiguration: {
idcTrustedTokenIssuerConfiguration: {
idcTrustedTokenIssuerArn: 'idcTrustedTokenIssuerArn',
},
},
externalIds: ['externalIds'],
};
Properties
Name | Type | Description |
---|---|---|
authentication | string | The type of authentication to use for the data accessor. |
authentication | IResolvable | Data | The specific authentication configuration based on the authentication type. |
external | string[] | A list of external identifiers associated with this authentication configuration. |
authenticationType
Type:
string
The type of authentication to use for the data accessor.
This determines how the ISV authenticates when accessing data. You can use one of two authentication types:
AWS_IAM_IDC_TTI
- Authentication using IAM Identity Center Trusted Token Issuer (TTI). This authentication type allows the ISV to use a trusted token issuer to generate tokens for accessing the data.AWS_IAM_IDC_AUTH_CODE
- Authentication using IAM Identity Center authorization code flow. This authentication type uses the standard OAuth 2.0 authorization code flow for authentication.
authenticationConfiguration?
Type:
IResolvable
|
Data
(optional)
The specific authentication configuration based on the authentication type.
externalIds?
Type:
string[]
(optional)
A list of external identifiers associated with this authentication configuration.
These are used to correlate the data accessor with external systems.