Class: Aws::QBusiness::Types::WebExperienceAuthConfiguration

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

Overview

Note:

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

Note:

WebExperienceAuthConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of WebExperienceAuthConfiguration corresponding to the set member.

Provides the authorization configuration information needed to deploy a Amazon Q Business web experience to end users.

Direct Known Subclasses

SamlConfiguration, Unknown

Defined Under Namespace

Classes: SamlConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#saml_configurationTypes::SamlConfiguration

Provides the SAML 2.0 compliant identity provider (IdP) configuration information Amazon Q Business needs to deploy a Amazon Q Business web experience.



6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 6190

class WebExperienceAuthConfiguration < Struct.new(
  :saml_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SamlConfiguration < WebExperienceAuthConfiguration; end
  class Unknown < WebExperienceAuthConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6190
6191
6192
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 6190

def unknown
  @unknown
end