Create Trusted Token Issuer
ssoadmin_create_trusted_token_issuer | R Documentation |
Creates a connection to a trusted token issuer in an instance of IAM Identity Center¶
Description¶
Creates a connection to a trusted token issuer in an instance of IAM Identity Center. A trusted token issuer enables trusted identity propagation to be used with applications that authenticate outside of Amazon Web Services.
This trusted token issuer describes an external identity provider (IdP) that can generate claims or assertions in the form of access tokens for a user. Applications enabled for IAM Identity Center can use these tokens for authentication.
Usage¶
ssoadmin_create_trusted_token_issuer(ClientToken, InstanceArn, Name,
Tags, TrustedTokenIssuerConfiguration, TrustedTokenIssuerType)
Arguments¶
ClientToken
Specifies a unique, case-sensitive ID that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value..
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken
, but with different parameters, the retry fails with anIdempotentParameterMismatch
error.InstanceArn
[required] Specifies the ARN of the instance of IAM Identity Center to contain the new trusted token issuer configuration.
Name
[required] Specifies the name of the new trusted token issuer configuration.
Tags
Specifies tags to be attached to the new trusted token issuer configuration.
TrustedTokenIssuerConfiguration
[required] Specifies settings that apply to the new trusted token issuer configuration. The settings that are available depend on what
TrustedTokenIssuerType
you specify.TrustedTokenIssuerType
[required] Specifies the type of the new trusted token issuer.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_trusted_token_issuer(
ClientToken = "string",
InstanceArn = "string",
Name = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
TrustedTokenIssuerConfiguration = list(
OidcJwtConfiguration = list(
ClaimAttributePath = "string",
IdentityStoreAttributePath = "string",
IssuerUrl = "string",
JwksRetrievalOption = "OPEN_ID_DISCOVERY"
)
),
TrustedTokenIssuerType = "OIDC_JWT"
)