Class: Aws::SSOAdmin::Types::TrustedTokenIssuerConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::TrustedTokenIssuerConfiguration
- Defined in:
- gems/aws-sdk-ssoadmin/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).
4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 4011 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
4011 4012 4013 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 4011 def unknown @unknown end |