Interface Selector
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Selector.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:01.500Z")
@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
-
Method Summary
Modifier and TypeMethodDescriptionstatic Selector.Builder
builder()
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.Builder
ofSelector
-