Class: Aws::SSOAdmin::Types::TrustedTokenIssuerConfiguration

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

Overview

Note:

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

Note:

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

OidcJwtConfiguration, Unknown

Defined Under Namespace

Classes: OidcJwtConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#oidc_jwt_configurationTypes::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 'gems/aws-sdk-ssoadmin/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3974
3975
3976
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 3974

def unknown
  @unknown
end