Class: Aws::VerifiedPermissions::Types::UpdateOpenIdConnectConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::UpdateOpenIdConnectConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-verifiedpermissions/types.rb
Overview
Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
This data type is part of a [UpdateConfiguration] structure, which is a parameter to [UpdateIdentitySource].
[1]: docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_UpdateConfiguration.html [2]: docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_UpdateIdentitySource.html
Constant Summary collapse
- SENSITIVE =
[:entity_id_prefix]
Instance Attribute Summary collapse
-
#entity_id_prefix ⇒ String
A descriptive string that you want to prefix to user entities from your OIDC identity provider.
-
#group_configuration ⇒ Types::UpdateOpenIdConnectGroupConfiguration
The claim in OIDC identity provider tokens that indicates a user’s group membership, and the entity type that you want to map it to.
-
#issuer ⇒ String
The issuer URL of an OIDC identity provider.
-
#token_selection ⇒ Types::UpdateOpenIdConnectTokenSelection
The token type that you want to process from your OIDC identity provider.
Instance Attribute Details
#entity_id_prefix ⇒ String
A descriptive string that you want to prefix to user entities from your OIDC identity provider. For example, if you set an ‘entityIdPrefix` of `MyOIDCProvider`, you can reference principals in your policies in the format `MyCorp::User::MyOIDCProvider|Carlos`.
4095 4096 4097 4098 4099 4100 4101 4102 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 4095 class UpdateOpenIdConnectConfiguration < Struct.new( :issuer, :entity_id_prefix, :group_configuration, :token_selection) SENSITIVE = [:entity_id_prefix] include Aws::Structure end |
#group_configuration ⇒ Types::UpdateOpenIdConnectGroupConfiguration
The claim in OIDC identity provider tokens that indicates a user’s group membership, and the entity type that you want to map it to. For example, this object can map the contents of a ‘groups` claim to `MyCorp::UserGroup`.
4095 4096 4097 4098 4099 4100 4101 4102 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 4095 class UpdateOpenIdConnectConfiguration < Struct.new( :issuer, :entity_id_prefix, :group_configuration, :token_selection) SENSITIVE = [:entity_id_prefix] include Aws::Structure end |
#issuer ⇒ String
The issuer URL of an OIDC identity provider. This URL must have an OIDC discovery endpoint at the path ‘.well-known/openid-configuration`.
4095 4096 4097 4098 4099 4100 4101 4102 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 4095 class UpdateOpenIdConnectConfiguration < Struct.new( :issuer, :entity_id_prefix, :group_configuration, :token_selection) SENSITIVE = [:entity_id_prefix] include Aws::Structure end |
#token_selection ⇒ Types::UpdateOpenIdConnectTokenSelection
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.
4095 4096 4097 4098 4099 4100 4101 4102 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 4095 class UpdateOpenIdConnectConfiguration < Struct.new( :issuer, :entity_id_prefix, :group_configuration, :token_selection) SENSITIVE = [:entity_id_prefix] include Aws::Structure end |