Class: Aws::QBusiness::Types::IdentityProviderConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::IdentityProviderConfiguration
- Defined in:
- gems/aws-sdk-qbusiness/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.
3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 3879 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.
3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 3879 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
3879 3880 3881 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 3879 def unknown @unknown end |