Class: Aws::QBusiness::Types::DataAccessorAuthenticationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::DataAccessorAuthenticationConfiguration
- Defined in:
- gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb
Overview
DataAccessorAuthenticationConfiguration is a union - when making an API calls you must set exactly one of the members.
DataAccessorAuthenticationConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataAccessorAuthenticationConfiguration corresponding to the set member.
A union type that contains the specific authentication configuration based on the authentication type selected.
Direct Known Subclasses
Defined Under Namespace
Classes: IdcTrustedTokenIssuerConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#idc_trusted_token_issuer_configuration ⇒ Types::DataAccessorIdcTrustedTokenIssuerConfiguration
Configuration for IAM Identity Center Trusted Token Issuer (TTI) authentication used when the authentication type is
AWS_IAM_IDC_TTI
. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#idc_trusted_token_issuer_configuration ⇒ Types::DataAccessorIdcTrustedTokenIssuerConfiguration
Configuration for IAM Identity Center Trusted Token Issuer (TTI)
authentication used when the authentication type is
AWS_IAM_IDC_TTI
.
2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2946 class DataAccessorAuthenticationConfiguration < Struct.new( :idc_trusted_token_issuer_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdcTrustedTokenIssuerConfiguration < DataAccessorAuthenticationConfiguration; end class Unknown < DataAccessorAuthenticationConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2946 2947 2948 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2946 def unknown @unknown end |