Interface CancelledChangeProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CancelledChangeProperty.Builder,CancelledChangeProperty>,SdkBuilder<CancelledChangeProperty.Builder,CancelledChangeProperty>,SdkPojo
- Enclosing class:
- CancelledChangeProperty
public static interface CancelledChangeProperty.Builder extends SdkPojo, CopyableBuilder<CancelledChangeProperty.Builder,CancelledChangeProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CancelledChangeProperty.BuilderactiveValue(String activeValue)The current value of the property, after the change was cancelled.CancelledChangeProperty.BuildercancelledValue(String cancelledValue)The pending value of the property that was cancelled.CancelledChangeProperty.BuilderpropertyName(String propertyName)The name of the property whose change was cancelled.-
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
-
propertyName
CancelledChangeProperty.Builder propertyName(String propertyName)
The name of the property whose change was cancelled.
- Parameters:
propertyName- The name of the property whose change was cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelledValue
CancelledChangeProperty.Builder cancelledValue(String cancelledValue)
The pending value of the property that was cancelled. This would have been the eventual value of the property if the chance had not been cancelled.
- Parameters:
cancelledValue- The pending value of the property that was cancelled. This would have been the eventual value of the property if the chance had not been cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeValue
CancelledChangeProperty.Builder activeValue(String activeValue)
The current value of the property, after the change was cancelled.
- Parameters:
activeValue- The current value of the property, after the change was cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-