Package org.cdk8s.plus24.k8s
Interface TopologySelectorLabelRequirement
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TopologySelectorLabelRequirement.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-28T00:25:44.226Z") @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 class
TopologySelectorLabelRequirement.Builder
A builder forTopologySelectorLabelRequirement
static class
TopologySelectorLabelRequirement.Jsii$Proxy
An implementation forTopologySelectorLabelRequirement
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static TopologySelectorLabelRequirement.Builder
builder()
String
getKey()
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()
-
-