Class: Aws::QBusiness::Types::IdentityProviderConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::IdentityProviderConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-qbusiness/types.rb
Overview
IdentityProviderConfiguration is a union - when making an API calls you must set exactly one of the members.
IdentityProviderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IdentityProviderConfiguration corresponding to the set member.
Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
Direct Known Subclasses
Defined Under Namespace
Classes: OpenIdConnectConfiguration, SamlConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#open_id_connect_configuration ⇒ Types::OpenIDConnectProviderConfiguration
Information about the OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
-
#saml_configuration ⇒ Types::SamlProviderConfiguration
Information about the SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#open_id_connect_configuration ⇒ Types::OpenIDConnectProviderConfiguration
Information about the OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 |
# File 'lib/aws-sdk-qbusiness/types.rb', line 4621 class IdentityProviderConfiguration < Struct.new( :saml_configuration, :open_id_connect_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SamlConfiguration < IdentityProviderConfiguration; end class OpenIdConnectConfiguration < IdentityProviderConfiguration; end class Unknown < IdentityProviderConfiguration; end end |
#saml_configuration ⇒ Types::SamlProviderConfiguration
Information about the SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 |
# File 'lib/aws-sdk-qbusiness/types.rb', line 4621 class IdentityProviderConfiguration < Struct.new( :saml_configuration, :open_id_connect_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SamlConfiguration < IdentityProviderConfiguration; end class OpenIdConnectConfiguration < IdentityProviderConfiguration; end class Unknown < IdentityProviderConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4621 4622 4623 |
# File 'lib/aws-sdk-qbusiness/types.rb', line 4621 def unknown @unknown end |