Class: Aws::QBusiness::Types::DataAccessorAuthenticationConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb

Overview

Note:

DataAccessorAuthenticationConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

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

IdcTrustedTokenIssuerConfiguration, Unknown

Defined Under Namespace

Classes: IdcTrustedTokenIssuerConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idc_trusted_token_issuer_configurationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2946
2947
2948
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2946

def unknown
  @unknown
end