Class: Aws::IAM::Types::GetOutboundWebIdentityFederationInfoResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetOutboundWebIdentityFederationInfoResponse
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#issuer_identifier ⇒ String
A unique issuer URL for your Amazon Web Services account that hosts the OpenID Connect (OIDC) discovery endpoints at
/.well-known/openid-configuration and /.well-known/jwks.json. -
#jwt_vending_enabled ⇒ Boolean
Indicates whether outbound identity federation is currently enabled for your Amazon Web Services account.
Instance Attribute Details
#issuer_identifier ⇒ String
A unique issuer URL for your Amazon Web Services account that hosts
the OpenID Connect (OIDC) discovery endpoints at
/.well-known/openid-configuration and /.well-known/jwks.json. The
OpenID Connect (OIDC) discovery endpoints contain verification keys
and metadata necessary for token verification.
4535 4536 4537 4538 4539 4540 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 4535 class GetOutboundWebIdentityFederationInfoResponse < Struct.new( :issuer_identifier, :jwt_vending_enabled) SENSITIVE = [] include Aws::Structure end |
#jwt_vending_enabled ⇒ Boolean
Indicates whether outbound identity federation is currently enabled
for your Amazon Web Services account. When true, IAM principals in
the account can call the GetWebIdentityToken API to obtain JSON
Web Tokens (JWTs) for authentication with external services.
4535 4536 4537 4538 4539 4540 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 4535 class GetOutboundWebIdentityFederationInfoResponse < Struct.new( :issuer_identifier, :jwt_vending_enabled) SENSITIVE = [] include Aws::Structure end |