Class: Aws::SSOOIDC::Types::AwsAdditionalDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOOIDC::Types::AwsAdditionalDetails
- Defined in:
- gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb
Overview
This structure contains Amazon Web Services-specific parameter extensions and the identity context.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_context ⇒ String
The trusted context assertion is signed and encrypted by STS.
Instance Attribute Details
#identity_context ⇒ String
The trusted context assertion is signed and encrypted by STS. It
provides access to sts:identity_context claim in the idToken
without JWT parsing
Identity context comprises information that Amazon Web Services services use to make authorization decisions when they receive requests.
80 81 82 83 84 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 80 class AwsAdditionalDetails < Struct.new( :identity_context) SENSITIVE = [] include Aws::Structure end |