List Pod Identity Associations
eks_list_pod_identity_associations | R Documentation |
List the EKS Pod Identity associations in a cluster¶
Description¶
List the EKS Pod Identity associations in a cluster. You can filter the list by the namespace that the association is in or the service account that the association uses.
Usage¶
eks_list_pod_identity_associations(clusterName, namespace,
serviceAccount, maxResults, nextToken)
Arguments¶
clusterName |
[required] The name of the cluster that the associations are in. |
namespace |
The name of the Kubernetes namespace inside the cluster that the associations are in. |
serviceAccount |
The name of the Kubernetes service account that the associations use. |
maxResults |
The maximum number of EKS Pod Identity association results
returned by |
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(
associations = list(
list(
clusterName = "string",
namespace = "string",
serviceAccount = "string",
associationArn = "string",
associationId = "string",
ownerArn = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_pod_identity_associations(
clusterName = "string",
namespace = "string",
serviceAccount = "string",
maxResults = 123,
nextToken = "string"
)