Package org.cdk8s.plus25.k8s
Interface TopologySelectorLabelRequirement
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TopologySelectorLabelRequirement.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.841Z") @Stability(Stable) public interface TopologySelectorLabelRequirement extends software.amazon.jsii.JsiiSerializable
A topology selector requirement is a selector that matches given label.This is an alpha feature and may change in the future.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTopologySelectorLabelRequirement.BuilderA builder forTopologySelectorLabelRequirementstatic classTopologySelectorLabelRequirement.Jsii$ProxyAn implementation forTopologySelectorLabelRequirement
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static TopologySelectorLabelRequirement.Builderbuilder()StringgetKey()The label key that the selector applies to.List<String>getValues()An array of string values.
-
-
-
Method Detail
-
getKey
@Stability(Stable) @NotNull String getKey()
The label key that the selector applies to.
-
getValues
@Stability(Stable) @NotNull List<String> getValues()
An array of string values.One value must match the label to be selected. Each entry in Values is ORed.
-
builder
@Stability(Stable) static TopologySelectorLabelRequirement.Builder builder()
-
-