Skip to content

Describe Pod Identity Association

eks_describe_pod_identity_association R Documentation

Returns descriptive information about an EKS Pod Identity association

Description

Returns descriptive information about an EKS Pod Identity association.

This action requires the ID of the association. You can get the ID from the response to the CreatePodIdentityAssocation for newly created associations. Or, you can list the IDs for associations with list_pod_identity_associations and filter the list by namespace or service account.

Usage

eks_describe_pod_identity_association(clusterName, associationId)

Arguments

clusterName

[required] The name of the cluster that the association is in.

associationId

[required] The ID of the association that you want the description of.

Value

A list with the following syntax:

list(
  association = list(
    clusterName = "string",
    namespace = "string",
    serviceAccount = "string",
    roleArn = "string",
    associationArn = "string",
    associationId = "string",
    tags = list(
      "string"
    ),
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    modifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    ownerArn = "string"
  )
)

Request syntax

svc$describe_pod_identity_association(
  clusterName = "string",
  associationId = "string"
)