Interface PropertyValueHistory.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyValueHistory.Builder,PropertyValueHistory>,SdkBuilder<PropertyValueHistory.Builder,PropertyValueHistory>,SdkPojo
- Enclosing class:
- PropertyValueHistory
public static interface PropertyValueHistory.Builder extends SdkPojo, CopyableBuilder<PropertyValueHistory.Builder,PropertyValueHistory>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PropertyValueHistory.BuilderentityPropertyReference(Consumer<EntityPropertyReference.Builder> entityPropertyReference)An object that uniquely identifies an entity property.PropertyValueHistory.BuilderentityPropertyReference(EntityPropertyReference entityPropertyReference)An object that uniquely identifies an entity property.PropertyValueHistory.Buildervalues(Collection<PropertyValue> values)A list of objects that contain information about the values in the history of a time series property.PropertyValueHistory.Buildervalues(Consumer<PropertyValue.Builder>... values)A list of objects that contain information about the values in the history of a time series property.PropertyValueHistory.Buildervalues(PropertyValue... values)A list of objects that contain information about the values in the history of a time series 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
-
entityPropertyReference
PropertyValueHistory.Builder entityPropertyReference(EntityPropertyReference entityPropertyReference)
An object that uniquely identifies an entity property.
- Parameters:
entityPropertyReference- An object that uniquely identifies an entity property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityPropertyReference
default PropertyValueHistory.Builder entityPropertyReference(Consumer<EntityPropertyReference.Builder> entityPropertyReference)
An object that uniquely identifies an entity 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 toentityPropertyReference(EntityPropertyReference).- Parameters:
entityPropertyReference- 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:
entityPropertyReference(EntityPropertyReference)
-
values
PropertyValueHistory.Builder values(Collection<PropertyValue> values)
A list of objects that contain information about the values in the history of a time series property.
- Parameters:
values- A list of objects that contain information about the values in the history of a time series property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
PropertyValueHistory.Builder values(PropertyValue... values)
A list of objects that contain information about the values in the history of a time series property.
- Parameters:
values- A list of objects that contain information about the values in the history of a time series property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
PropertyValueHistory.Builder values(Consumer<PropertyValue.Builder>... values)
A list of objects that contain information about the values in the history of a time series property.
This is a convenience method that creates an instance of thePropertyValue.Builderavoiding the need to create one manually viaPropertyValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#values(List.) - Parameters:
values- a consumer that will call methods onPropertyValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#values(java.util.Collection)
-
-