Interface TimestreamDimension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimestreamDimension.Builder,TimestreamDimension>,SdkBuilder<TimestreamDimension.Builder,TimestreamDimension>,SdkPojo
- Enclosing class:
- TimestreamDimension
public static interface TimestreamDimension.Builder extends SdkPojo, CopyableBuilder<TimestreamDimension.Builder,TimestreamDimension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestreamDimension.Buildername(String name)The metadata dimension name.TimestreamDimension.Buildervalue(String value)The value to write in this column of the database record.-
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
-
name
TimestreamDimension.Builder name(String name)
The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.
Dimensions cannot be named:
measure_name,measure_value, ortime. These names are reserved. Dimension names cannot start withts_ormeasure_valueand they cannot contain the colon (:) character.- Parameters:
name- The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.Dimensions cannot be named:
measure_name,measure_value, ortime. These names are reserved. Dimension names cannot start withts_ormeasure_valueand they cannot contain the colon (:) character.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
TimestreamDimension.Builder value(String value)
The value to write in this column of the database record.
- Parameters:
value- The value to write in this column of the database record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-