Interface Operator.Builder

    • Method Detail

      • type

        Operator.Builder type​(String type)

        The logical operation to be performed: equal (EQ), equal reference (REF_EQ), less than or equal (LE), greater than or equal (GE), or between (BETWEEN). Equal reference (REF_EQ) can be used only with reference fields. The other comparison types can be used only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.

        The comparison operators EQ and REF_EQ act on the following fields:

        • name
        • @sphere
        • parent
        • @componentParent
        • @instanceParent
        • @status
        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        The comparison operators GE, LE, and BETWEEN act on the following fields:

        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string "my".

        Parameters:
        type - The logical operation to be performed: equal (EQ), equal reference (REF_EQ), less than or equal (LE), greater than or equal (GE), or between ( BETWEEN). Equal reference (REF_EQ) can be used only with reference fields. The other comparison types can be used only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.

        The comparison operators EQ and REF_EQ act on the following fields:

        • name
        • @sphere
        • parent
        • @componentParent
        • @instanceParent
        • @status
        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        The comparison operators GE, LE, and BETWEEN act on the following fields:

        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string "my".

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        OperatorType, OperatorType
      • type

        Operator.Builder type​(OperatorType type)

        The logical operation to be performed: equal (EQ), equal reference (REF_EQ), less than or equal (LE), greater than or equal (GE), or between (BETWEEN). Equal reference (REF_EQ) can be used only with reference fields. The other comparison types can be used only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.

        The comparison operators EQ and REF_EQ act on the following fields:

        • name
        • @sphere
        • parent
        • @componentParent
        • @instanceParent
        • @status
        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        The comparison operators GE, LE, and BETWEEN act on the following fields:

        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string "my".

        Parameters:
        type - The logical operation to be performed: equal (EQ), equal reference (REF_EQ), less than or equal (LE), greater than or equal (GE), or between ( BETWEEN). Equal reference (REF_EQ) can be used only with reference fields. The other comparison types can be used only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.

        The comparison operators EQ and REF_EQ act on the following fields:

        • name
        • @sphere
        • parent
        • @componentParent
        • @instanceParent
        • @status
        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        The comparison operators GE, LE, and BETWEEN act on the following fields:

        • @scheduledStartTime
        • @scheduledEndTime
        • @actualStartTime
        • @actualEndTime

        Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string "my".

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        OperatorType, OperatorType
      • values

        Operator.Builder values​(Collection<String> values)

        The value that the actual field value will be compared with.

        Parameters:
        values - The value that the actual field value will be compared with.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • values

        Operator.Builder values​(String... values)

        The value that the actual field value will be compared with.

        Parameters:
        values - The value that the actual field value will be compared with.
        Returns:
        Returns a reference to this object so that method calls can be chained together.