Amazon EKS · Schema

FargateProfileSelector

FargateProfileSelector schema from Amazon EKS API

Container OrchestrationContainersEKSKubernetes

Properties

Name Type Description
namespace string The Kubernetes namespace that the selector should match.
labels object The Kubernetes labels that the selector should match.
View JSON Schema on GitHub

JSON Schema

eks-openapi-fargate-profile-selector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eks/refs/heads/main/json-schema/eks-openapi-fargate-profile-selector-schema.json",
  "title": "FargateProfileSelector",
  "description": "FargateProfileSelector schema from Amazon EKS API",
  "type": "object",
  "properties": {
    "namespace": {
      "type": "string",
      "description": "The Kubernetes namespace that the selector should match."
    },
    "labels": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "The Kubernetes labels that the selector should match."
    }
  }
}