Skip to content

Describe Access Entry

eks_describe_access_entry R Documentation

Describes an access entry

Description

Describes an access entry.

Usage

eks_describe_access_entry(clusterName, principalArn)

Arguments

clusterName

[required] The name of your cluster.

principalArn

[required] The ARN of the IAM principal for the AccessEntry.

Value

A list with the following syntax:

list(
  accessEntry = list(
    clusterName = "string",
    principalArn = "string",
    kubernetesGroups = list(
      "string"
    ),
    accessEntryArn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    modifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    tags = list(
      "string"
    ),
    username = "string",
    type = "string"
  )
)

Request syntax

svc$describe_access_entry(
  clusterName = "string",
  principalArn = "string"
)