Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateFargateProfileRequest

import type { CreateFargateProfileRequest } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";
interface CreateFargateProfileRequest {
clientRequestToken?: string | null;
clusterName: string;
fargateProfileName: string;
podExecutionRoleArn: string;
selectors?: FargateProfileSelector[] | null;
subnets?: string[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
clientRequestToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
clusterName: string
[src]

The name of the Amazon EKS cluster to apply the Fargate profile to.

§
fargateProfileName: string
[src]

The name of the Fargate profile.

§
podExecutionRoleArn: string
[src]

The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in the Fargate profile. The pod execution role allows Fargate infrastructure to register with your cluster as a node, and it provides read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide.

§
selectors?: FargateProfileSelector[] | null
[src]

The selectors to match for pods to use this Fargate profile. Each selector must have an associated namespace. Optionally, you can also specify labels for a namespace. You may specify up to five selectors in a Fargate profile.

§
subnets?: string[] | null
[src]

The IDs of subnets to launch your pods into. At this time, pods running on Fargate are not assigned public IP addresses, so only private subnets (with no direct route to an Internet Gateway) are accepted for this parameter.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The metadata to apply to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.