Interface PropertyLatestValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyLatestValue.Builder,PropertyLatestValue>,SdkBuilder<PropertyLatestValue.Builder,PropertyLatestValue>,SdkPojo
- Enclosing class:
- PropertyLatestValue
public static interface PropertyLatestValue.Builder extends SdkPojo, CopyableBuilder<PropertyLatestValue.Builder,PropertyLatestValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PropertyLatestValue.BuilderpropertyReference(Consumer<EntityPropertyReference.Builder> propertyReference)An object that specifies information about a property.PropertyLatestValue.BuilderpropertyReference(EntityPropertyReference propertyReference)An object that specifies information about a property.default PropertyLatestValue.BuilderpropertyValue(Consumer<DataValue.Builder> propertyValue)The value of the property.PropertyLatestValue.BuilderpropertyValue(DataValue propertyValue)The value of the property.-
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, sdkFields
-
-
-
-
Method Detail
-
propertyReference
PropertyLatestValue.Builder propertyReference(EntityPropertyReference propertyReference)
An object that specifies information about a property.
- Parameters:
propertyReference- An object that specifies information about a property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyReference
default PropertyLatestValue.Builder propertyReference(Consumer<EntityPropertyReference.Builder> propertyReference)
An object that specifies information about a property.
This is a convenience method that creates an instance of theEntityPropertyReference.Builderavoiding the need to create one manually viaEntityPropertyReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topropertyReference(EntityPropertyReference).- Parameters:
propertyReference- a consumer that will call methods onEntityPropertyReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
propertyReference(EntityPropertyReference)
-
propertyValue
PropertyLatestValue.Builder propertyValue(DataValue propertyValue)
The value of the property.
- Parameters:
propertyValue- The value of the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyValue
default PropertyLatestValue.Builder propertyValue(Consumer<DataValue.Builder> propertyValue)
The value of the property.
This is a convenience method that creates an instance of theDataValue.Builderavoiding the need to create one manually viaDataValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topropertyValue(DataValue).- Parameters:
propertyValue- a consumer that will call methods onDataValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
propertyValue(DataValue)
-
-