Interface PropertyValueEntry.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<PropertyValueEntry.Builder,
,PropertyValueEntry> SdkBuilder<PropertyValueEntry.Builder,
,PropertyValueEntry> SdkPojo
- Enclosing class:
PropertyValueEntry
@Mutable
@NotThreadSafe
public static interface PropertyValueEntry.Builder
extends SdkPojo, CopyableBuilder<PropertyValueEntry.Builder,PropertyValueEntry>
-
Method Summary
Modifier and TypeMethodDescriptiondefault PropertyValueEntry.Builder
entityPropertyReference
(Consumer<EntityPropertyReference.Builder> entityPropertyReference) An object that contains information about the entity that has the property.entityPropertyReference
(EntityPropertyReference entityPropertyReference) An object that contains information about the entity that has the property.propertyValues
(Collection<PropertyValue> propertyValues) A list of objects that specify time series property values.propertyValues
(Consumer<PropertyValue.Builder>... propertyValues) A list of objects that specify time series property values.propertyValues
(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 Details
-
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.Builder
avoiding the need to create one manually viaEntityPropertyReference.builder()
.When the
Consumer
completes,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:
-
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
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
A list of objects that specify time series property values.
This is a convenience method that creates an instance of thePropertyValue.Builder
avoiding the need to create one manually viaPropertyValue.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topropertyValues(List<PropertyValue>)
.- 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:
-