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
.
2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2956 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
2956 2957 2958 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2956 def unknown @unknown end |