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

FargateProfileSelector

import type { FargateProfileSelector } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";

An object representing an Fargate profile selector.

interface FargateProfileSelector {
labels?: {
[key: string]: string | null | undefined;
}
| null;
namespace?: string | null;
}

§Properties

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

The Kubernetes labels that the selector should match. A pod must contain all of the labels that are specified in the selector for it to be considered a match.

§
namespace?: string | null
[src]

The Kubernetes namespace that the selector should match.