Skip to content

Describe Fargate Profile

eks_describe_fargate_profile R Documentation

Describes an Fargate profile

Description

Describes an Fargate profile.

Usage

eks_describe_fargate_profile(clusterName, fargateProfileName)

Arguments

clusterName

[required] The name of your cluster.

fargateProfileName

[required] The name of the Fargate profile to describe.

Value

A list with the following syntax:

list(
  fargateProfile = list(
    fargateProfileName = "string",
    fargateProfileArn = "string",
    clusterName = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    podExecutionRoleArn = "string",
    subnets = list(
      "string"
    ),
    selectors = list(
      list(
        namespace = "string",
        labels = list(
          "string"
        )
      )
    ),
    status = "CREATING"|"ACTIVE"|"DELETING"|"CREATE_FAILED"|"DELETE_FAILED",
    tags = list(
      "string"
    ),
    health = list(
      issues = list(
        list(
          code = "PodExecutionRoleAlreadyInUse"|"AccessDenied"|"ClusterUnreachable"|"InternalFailure",
          message = "string",
          resourceIds = list(
            "string"
          )
        )
      )
    )
  )
)

Request syntax

svc$describe_fargate_profile(
  clusterName = "string",
  fargateProfileName = "string"
)