Interface CustomActionAttachmentCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomActionAttachmentCriteria.Builder,CustomActionAttachmentCriteria>,SdkBuilder<CustomActionAttachmentCriteria.Builder,CustomActionAttachmentCriteria>,SdkPojo
- Enclosing class:
- CustomActionAttachmentCriteria
public static interface CustomActionAttachmentCriteria.Builder extends SdkPojo, CopyableBuilder<CustomActionAttachmentCriteria.Builder,CustomActionAttachmentCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomActionAttachmentCriteria.Builderoperator(String operator)The operation to perform on the named variable.CustomActionAttachmentCriteria.Builderoperator(CustomActionAttachmentCriteriaOperator operator)The operation to perform on the named variable.CustomActionAttachmentCriteria.Buildervalue(String value)A value that is compared with the actual value of the variable based on the behavior of the operator.CustomActionAttachmentCriteria.BuildervariableName(String variableName)The name of the variable to operate on.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
operator
CustomActionAttachmentCriteria.Builder operator(String operator)
The operation to perform on the named variable.
- Parameters:
operator- The operation to perform on the named variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomActionAttachmentCriteriaOperator,CustomActionAttachmentCriteriaOperator
-
operator
CustomActionAttachmentCriteria.Builder operator(CustomActionAttachmentCriteriaOperator operator)
The operation to perform on the named variable.
- Parameters:
operator- The operation to perform on the named variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomActionAttachmentCriteriaOperator,CustomActionAttachmentCriteriaOperator
-
variableName
CustomActionAttachmentCriteria.Builder variableName(String variableName)
The name of the variable to operate on.
- Parameters:
variableName- The name of the variable to operate on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CustomActionAttachmentCriteria.Builder value(String value)
A value that is compared with the actual value of the variable based on the behavior of the operator.
- Parameters:
value- A value that is compared with the actual value of the variable based on the behavior of the operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-