Class: Aws::SSOAdmin::Types::TrustedTokenIssuerConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::TrustedTokenIssuerConfiguration
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-ssoadmin/types.rb
Overview
TrustedTokenIssuerConfiguration is a union - when making an API calls you must set exactly one of the members.
TrustedTokenIssuerConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TrustedTokenIssuerConfiguration corresponding to the set member.
A structure that describes the configuration of a trusted token issuer. The structure and available settings are determined by the type of the trusted token issuer.
Direct Known Subclasses
Defined Under Namespace
Classes: OidcJwtConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oidc_jwt_configuration ⇒ Types::OidcJwtConfiguration
A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#oidc_jwt_configuration ⇒ Types::OidcJwtConfiguration
A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).
3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 3974 class TrustedTokenIssuerConfiguration < Struct.new( :oidc_jwt_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OidcJwtConfiguration < TrustedTokenIssuerConfiguration; end class Unknown < TrustedTokenIssuerConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3974 3975 3976 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 3974 def unknown @unknown end |