Returns descriptive information about an AWS Fargate profile.
eks_describe_fargate_profile(clusterName, fargateProfileName)
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"
)
)
)
[required] The name of the Amazon EKS cluster associated with the Fargate profile.
[required] The name of the Fargate profile to describe.
svc$describe_fargate_profile(
clusterName = "string",
fargateProfileName = "string"
)