Get Identity Source
verifiedpermissions_get_identity_source | R Documentation |
Retrieves the details about the specified identity source¶
Description¶
Retrieves the details about the specified identity source.
Usage¶
Arguments¶
policyStoreId
[required] Specifies the ID of the policy store that contains the identity source you want information about.
identitySourceId
[required] Specifies the ID of the identity source you want information about.
Value¶
A list with the following syntax:
list(
createdDate = as.POSIXct(
"2015-01-01"
),
details = list(
clientIds = list(
"string"
),
userPoolArn = "string",
discoveryUrl = "string",
openIdIssuer = "COGNITO"
),
identitySourceId = "string",
lastUpdatedDate = as.POSIXct(
"2015-01-01"
),
policyStoreId = "string",
principalEntityType = "string",
configuration = list(
cognitoUserPoolConfiguration = list(
userPoolArn = "string",
clientIds = list(
"string"
),
issuer = "string",
groupConfiguration = list(
groupEntityType = "string"
)
),
openIdConnectConfiguration = list(
issuer = "string",
entityIdPrefix = "string",
groupConfiguration = list(
groupClaim = "string",
groupEntityType = "string"
),
tokenSelection = list(
accessTokenOnly = list(
principalIdClaim = "string",
audiences = list(
"string"
)
),
identityTokenOnly = list(
principalIdClaim = "string",
clientIds = list(
"string"
)
)
)
)
)
)