Interface Selector
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 Selector.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
           date="2025-11-04T09:27:41.371Z")
@Stability(Stable)
public interface Selector
extends software.amazon.jsii.JsiiSerializable
Fargate profile selector.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.*;
 Selector selector = Selector.builder()
         .namespace("namespace")
         // the properties below are optional
         .labels(Map.of(
                 "labelsKey", "labels"))
         .build();
 - 
Nested Class Summary
Nested Classes - 
Method Summary
Modifier and TypeMethodDescriptionstatic Selector.Builderbuilder()The Kubernetes labels that the selector should match.The Kubernetes namespace that the selector should match.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getNamespace
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.
 - 
getLabels
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.
Default: - all pods within the namespace will be selected.
 - 
builder
- Returns:
 - a 
Selector.BuilderofSelector 
 
 -