Interface Selector
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Selector.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:04.721Z")
@Stability(Experimental)
public interface Selector
extends software.amazon.jsii.JsiiSerializable
(experimental) 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.v2.alpha.*;
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()(experimental) The Kubernetes labels that the selector should match.(experimental) The Kubernetes namespace that the selector should match.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNamespace
(experimental) 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
(experimental) 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
-