Class: Aws::SSOAdmin::Types::TrustedTokenIssuerUpdateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::TrustedTokenIssuerUpdateConfiguration
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-ssoadmin/types.rb
Overview
Note:
TrustedTokenIssuerUpdateConfiguration is a union - when making an API calls you must set exactly one of the members.
A structure that contains details to be updated for a trusted token issuer configuration. The structure and settings that you can include depend on the type of the trusted token issuer being updated.
Direct Known Subclasses
Defined Under Namespace
Classes: OidcJwtConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oidc_jwt_configuration ⇒ Types::OidcJwtUpdateConfiguration
A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with JSON web tokens (JWT).
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#oidc_jwt_configuration ⇒ Types::OidcJwtUpdateConfiguration
A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with JSON web tokens (JWT).
4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 4025 class TrustedTokenIssuerUpdateConfiguration < Struct.new( :oidc_jwt_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OidcJwtConfiguration < TrustedTokenIssuerUpdateConfiguration; end class Unknown < TrustedTokenIssuerUpdateConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4025 4026 4027 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 4025 def unknown @unknown end |