Skip to content

Describe Trusted Token Issuer

ssoadmin_describe_trusted_token_issuer R Documentation

Retrieves details about a trusted token issuer configuration stored in an instance of IAM Identity Center

Description

Retrieves details about a trusted token issuer configuration stored in an instance of IAM Identity Center. Details include the name of the trusted token issuer, the issuer URL, and the path of the source attribute and the destination attribute for a trusted token issuer configuration.

Usage

ssoadmin_describe_trusted_token_issuer(TrustedTokenIssuerArn)

Arguments

TrustedTokenIssuerArn

[required] Specifies the ARN of the trusted token issuer configuration that you want details about.

Value

A list with the following syntax:

list(
  Name = "string",
  TrustedTokenIssuerArn = "string",
  TrustedTokenIssuerConfiguration = list(
    OidcJwtConfiguration = list(
      ClaimAttributePath = "string",
      IdentityStoreAttributePath = "string",
      IssuerUrl = "string",
      JwksRetrievalOption = "OPEN_ID_DISCOVERY"
    )
  ),
  TrustedTokenIssuerType = "OIDC_JWT"
)

Request syntax

svc$describe_trusted_token_issuer(
  TrustedTokenIssuerArn = "string"
)