Interface MeasureValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MeasureValue.Builder,MeasureValue>,SdkBuilder<MeasureValue.Builder,MeasureValue>,SdkPojo
- Enclosing class:
- MeasureValue
public static interface MeasureValue.Builder extends SdkPojo, CopyableBuilder<MeasureValue.Builder,MeasureValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MeasureValue.Buildername(String name)The name of the MeasureValue.MeasureValue.Buildertype(String type)Contains the data type of the MeasureValue for the time-series data point.MeasureValue.Buildertype(MeasureValueType type)Contains the data type of the MeasureValue for the time-series data point.MeasureValue.Buildervalue(String value)The value for the MeasureValue.-
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
-
name
MeasureValue.Builder name(String name)
The name of the MeasureValue.
For constraints on MeasureValue names, see Naming Constraints in the Amazon Timestream Developer Guide.
- Parameters:
name- The name of the MeasureValue.For constraints on MeasureValue names, see Naming Constraints in the Amazon Timestream Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
MeasureValue.Builder value(String value)
The value for the MeasureValue. For information, see Data types.
- Parameters:
value- The value for the MeasureValue. For information, see Data types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
MeasureValue.Builder type(String type)
Contains the data type of the MeasureValue for the time-series data point.
- Parameters:
type- Contains the data type of the MeasureValue for the time-series data point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MeasureValueType,MeasureValueType
-
type
MeasureValue.Builder type(MeasureValueType type)
Contains the data type of the MeasureValue for the time-series data point.
- Parameters:
type- Contains the data type of the MeasureValue for the time-series data point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MeasureValueType,MeasureValueType
-
-