Class: Aws::VerifiedPermissions::Types::OpenIdConnectTokenSelectionItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::OpenIdConnectTokenSelectionItem
- Defined in:
- gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb
Overview
OpenIdConnectTokenSelectionItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OpenIdConnectTokenSelectionItem corresponding to the set member.
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 OpenIdConnectConfigurationItem structure, which is a parameter of ListIdentitySources.
Defined Under Namespace
Classes: AccessTokenOnly, IdentityTokenOnly, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_token_only ⇒ Types::OpenIdConnectAccessTokenConfigurationItem
The OIDC configuration for processing access tokens.
-
#identity_token_only ⇒ Types::OpenIdConnectIdentityTokenConfigurationItem
The OIDC configuration for processing identity (ID) tokens.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#access_token_only ⇒ Types::OpenIdConnectAccessTokenConfigurationItem
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.
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 4178 class OpenIdConnectTokenSelectionItem < Struct.new( :access_token_only, :identity_token_only, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AccessTokenOnly < OpenIdConnectTokenSelectionItem; end class IdentityTokenOnly < OpenIdConnectTokenSelectionItem; end class Unknown < OpenIdConnectTokenSelectionItem; end end |
#identity_token_only ⇒ Types::OpenIdConnectIdentityTokenConfigurationItem
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.
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 4178 class OpenIdConnectTokenSelectionItem < Struct.new( :access_token_only, :identity_token_only, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AccessTokenOnly < OpenIdConnectTokenSelectionItem; end class IdentityTokenOnly < OpenIdConnectTokenSelectionItem; end class Unknown < OpenIdConnectTokenSelectionItem; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4178 4179 4180 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 4178 def unknown @unknown end |