Learn R Programming

paws.compute (version 0.1.12)

eks_describe_fargate_profile: Returns descriptive information about an AWS Fargate profile

Description

Returns descriptive information about an AWS Fargate profile.

Usage

eks_describe_fargate_profile(clusterName, fargateProfileName)

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"
    )
  )
)

Arguments

clusterName

[required] The name of the Amazon EKS cluster associated with the Fargate profile.

fargateProfileName

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

Request syntax

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