Class NodeTaintQuery

  • All Implemented Interfaces:
    software.amazon.jsii.JsiiSerializable

    @Generated(value="jsii-pacmak/1.69.0 (build f656c31)",
               date="2022-10-15T03:08:35.125Z")
    @Stability(Stable)
    public class NodeTaintQuery
    extends software.amazon.jsii.JsiiObject
    Taint queries that can be perfomed against nodes.
    • Constructor Detail

      • NodeTaintQuery

        protected NodeTaintQuery​(software.amazon.jsii.JsiiObjectRef objRef)
      • NodeTaintQuery

        protected NodeTaintQuery​(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • Method Detail

      • any

        @Stability(Stable)
        @NotNull
        public static NodeTaintQuery any()
        Matches any taint.
      • exists

        @Stability(Stable)
        @NotNull
        public static NodeTaintQuery exists​(@NotNull
                                            String key,
                                            @Nullable
                                            NodeTaintQueryOptions options)
        Matches a tain with any value of a specific key.

        Parameters:
        key - This parameter is required.
        options -
      • exists

        @Stability(Stable)
        @NotNull
        public static NodeTaintQuery exists​(@NotNull
                                            String key)
        Matches a tain with any value of a specific key.

        Parameters:
        key - This parameter is required.
      • is

        @Stability(Stable)
        @NotNull
        public static NodeTaintQuery is​(@NotNull
                                        String key,
                                        @NotNull
                                        String value,
                                        @Nullable
                                        NodeTaintQueryOptions options)
        Matches a taint with a specific key and value.

        Parameters:
        key - This parameter is required.
        value - This parameter is required.
        options -
      • is

        @Stability(Stable)
        @NotNull
        public static NodeTaintQuery is​(@NotNull
                                        String key,
                                        @NotNull
                                        String value)
        Matches a taint with a specific key and value.

        Parameters:
        key - This parameter is required.
        value - This parameter is required.