interface Selector
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Eks.V2.Alpha.Selector | 
  Go | github.com/aws/aws-cdk-go/awscdkeks-v2alpha/v2#Selector | 
  Java | software.amazon.awscdk.services.eks.v2.alpha.Selector | 
  Python | aws_cdk.aws_eks_v2_alpha.Selector | 
  TypeScript (source) | @aws-cdk/aws-eks-v2-alpha » Selector | 
Fargate profile selector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eks_v2_alpha from '@aws-cdk/aws-eks-v2-alpha';
const selector: eks_v2_alpha.Selector = {
  namespace: 'namespace',
  // the properties below are optional
  labels: {
    labelsKey: 'labels',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| namespace | string | The Kubernetes namespace that the selector should match. | 
| labels? | { [string]: string } | The Kubernetes labels that the selector should match. | 
namespace
Type:
string
The Kubernetes namespace that the selector should match.
You must specify a namespace for a selector. The selector only matches pods that are created in this namespace, but you can create multiple selectors to target multiple namespaces.
labels?
Type:
{ [string]: string }
(optional, default: all pods within the namespace will be selected.)
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.

 .NET
 Go
 Java
 Python
 TypeScript (