Interface ResultRowValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResultRowValue.Builder,ResultRowValue>,SdkBuilder<ResultRowValue.Builder,ResultRowValue>,SdkPojo
- Enclosing class:
- ResultRowValue
public static interface ResultRowValue.Builder extends SdkPojo, CopyableBuilder<ResultRowValue.Builder,ResultRowValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResultRowValue.Builderkey(String key)The friendly name of the metric whose value is specified by the Value property.ResultRowValue.Buildertype(String type)The data type of the value specified by the Value property.ResultRowValue.Buildervalue(String value)In a Values object, the value for the metric that the query retrieved data for.-
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
-
key
ResultRowValue.Builder key(String key)
The friendly name of the metric whose value is specified by the Value property.
- Parameters:
key- The friendly name of the metric whose value is specified by the Value property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
ResultRowValue.Builder type(String type)
The data type of the value specified by the Value property.
- Parameters:
type- The data type of the value specified by the Value property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ResultRowValue.Builder value(String value)
In a Values object, the value for the metric that the query retrieved data for. In a GroupedBys object, the value for the field that was used to group data in a result set that contains multiple results (Values objects).
- Parameters:
value- In a Values object, the value for the metric that the query retrieved data for. In a GroupedBys object, the value for the field that was used to group data in a result set that contains multiple results (Values objects).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-