Class: Aws::QBusiness::Types::DataAccessorAuthenticationDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::DataAccessorAuthenticationDetail
- Defined in:
- gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb
Overview
Contains the authentication configuration details for a data accessor. This structure defines how the ISV authenticates when accessing data through the data accessor.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authentication_configuration ⇒ Types::DataAccessorAuthenticationConfiguration
The specific authentication configuration based on the authentication type.
-
#authentication_type ⇒ String
The type of authentication to use for the data accessor.
-
#external_ids ⇒ Array<String>
A list of external identifiers associated with this authentication configuration.
Instance Attribute Details
#authentication_configuration ⇒ Types::DataAccessorAuthenticationConfiguration
The specific authentication configuration based on the authentication type.
2999 3000 3001 3002 3003 3004 3005 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2999 class DataAccessorAuthenticationDetail < Struct.new( :authentication_type, :authentication_configuration, :external_ids) SENSITIVE = [] include Aws::Structure end |
#authentication_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.
2999 3000 3001 3002 3003 3004 3005 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2999 class DataAccessorAuthenticationDetail < Struct.new( :authentication_type, :authentication_configuration, :external_ids) SENSITIVE = [] include Aws::Structure end |
#external_ids ⇒ Array<String>
A list of external identifiers associated with this authentication configuration. These are used to correlate the data accessor with external systems.
2999 3000 3001 3002 3003 3004 3005 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2999 class DataAccessorAuthenticationDetail < Struct.new( :authentication_type, :authentication_configuration, :external_ids) SENSITIVE = [] include Aws::Structure end |