Interface PropertyValueEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyValueEntry.Builder,PropertyValueEntry>,SdkBuilder<PropertyValueEntry.Builder,PropertyValueEntry>,SdkPojo
- Enclosing class:
- PropertyValueEntry
public static interface PropertyValueEntry.Builder extends SdkPojo, CopyableBuilder<PropertyValueEntry.Builder,PropertyValueEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PropertyValueEntry.BuilderentityPropertyReference(Consumer<EntityPropertyReference.Builder> entityPropertyReference)An object that contains information about the entity that has the property.PropertyValueEntry.BuilderentityPropertyReference(EntityPropertyReference entityPropertyReference)An object that contains information about the entity that has the property.PropertyValueEntry.BuilderpropertyValues(Collection<PropertyValue> propertyValues)A list of objects that specify time series property values.PropertyValueEntry.BuilderpropertyValues(Consumer<PropertyValue.Builder>... propertyValues)A list of objects that specify time series property values.PropertyValueEntry.BuilderpropertyValues(PropertyValue... propertyValues)A list of objects that specify time series property values.-
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
-
entityPropertyReference
PropertyValueEntry.Builder entityPropertyReference(EntityPropertyReference entityPropertyReference)
An object that contains information about the entity that has the property.
- Parameters:
entityPropertyReference- An object that contains information about the entity that has the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityPropertyReference
default PropertyValueEntry.Builder entityPropertyReference(Consumer<EntityPropertyReference.Builder> entityPropertyReference)
An object that contains information about the entity that has the 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)
-
propertyValues
PropertyValueEntry.Builder propertyValues(Collection<PropertyValue> propertyValues)
A list of objects that specify time series property values.
- Parameters:
propertyValues- A list of objects that specify time series property values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyValues
PropertyValueEntry.Builder propertyValues(PropertyValue... propertyValues)
A list of objects that specify time series property values.
- Parameters:
propertyValues- A list of objects that specify time series property values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyValues
PropertyValueEntry.Builder propertyValues(Consumer<PropertyValue.Builder>... propertyValues)
A list of objects that specify time series property values.
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#propertyValues(List.) - Parameters:
propertyValues- 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:
#propertyValues(java.util.Collection)
-
-