Class: Aws::VerifiedPermissions::Types::OpenIdConnectTokenSelection
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::OpenIdConnectTokenSelection
- Defined in:
- gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb
Overview
OpenIdConnectTokenSelection is a union - when making an API calls you must set exactly one of the members.
The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
This data type is part of a OpenIdConnectConfiguration structure, which is a parameter of CreateIdentitySource.
Direct Known Subclasses
Defined Under Namespace
Classes: AccessTokenOnly, IdentityTokenOnly, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_token_only ⇒ Types::OpenIdConnectAccessTokenConfiguration
The OIDC configuration for processing access tokens.
-
#identity_token_only ⇒ Types::OpenIdConnectIdentityTokenConfiguration
The OIDC configuration for processing identity (ID) tokens.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#access_token_only ⇒ Types::OpenIdConnectAccessTokenConfiguration
The OIDC configuration for processing access tokens. Contains
allowed audience claims, for example https://auth.example.com, and
the claim that you want to map to the principal, for example sub.
3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 3578 class OpenIdConnectTokenSelection < Struct.new( :access_token_only, :identity_token_only, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AccessTokenOnly < OpenIdConnectTokenSelection; end class IdentityTokenOnly < OpenIdConnectTokenSelection; end class Unknown < OpenIdConnectTokenSelection; end end |
#identity_token_only ⇒ Types::OpenIdConnectIdentityTokenConfiguration
The OIDC configuration for processing identity (ID) tokens. Contains
allowed client ID claims, for example 1example23456789, and the
claim that you want to map to the principal, for example sub.
3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 3578 class OpenIdConnectTokenSelection < Struct.new( :access_token_only, :identity_token_only, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AccessTokenOnly < OpenIdConnectTokenSelection; end class IdentityTokenOnly < OpenIdConnectTokenSelection; end class Unknown < OpenIdConnectTokenSelection; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3578 3579 3580 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 3578 def unknown @unknown end |