List Identity Provider Configs
eks_list_identity_provider_configs | R Documentation |
Lists the identity provider configurations for your cluster¶
Description¶
Lists the identity provider configurations for your cluster.
Usage¶
eks_list_identity_provider_configs(clusterName, maxResults, nextToken)
Arguments¶
clusterName |
[required] The name of your cluster. |
maxResults |
The maximum number of results, returned in paginated output. You
receive |
nextToken |
The This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes. |
Value¶
A list with the following syntax:
list(
identityProviderConfigs = list(
list(
type = "string",
name = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_identity_provider_configs(
clusterName = "string",
maxResults = 123,
nextToken = "string"
)