Amazon EKS · JSON Structure

Eks Openapi Create Fargate Profile Request Structure

CreateFargateProfileRequest schema from Amazon EKS API

Type: object Properties: 5 Required: 3
Container OrchestrationContainersEKSKubernetes

CreateFargateProfileRequest is a JSON Structure definition published by Amazon EKS, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

fargateProfileName podExecutionRoleArn subnets selectors tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eks/refs/heads/main/json-structure/eks-openapi-create-fargate-profile-request-structure.json",
  "name": "CreateFargateProfileRequest",
  "description": "CreateFargateProfileRequest schema from Amazon EKS API",
  "type": "object",
  "properties": {
    "fargateProfileName": {
      "type": "string"
    },
    "podExecutionRoleArn": {
      "type": "string"
    },
    "subnets": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "selectors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FargateProfileSelector"
      }
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "fargateProfileName",
    "podExecutionRoleArn",
    "selectors"
  ]
}