Interface Dimension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Dimension.Builder,Dimension>,SdkBuilder<Dimension.Builder,Dimension>,SdkPojo
- Enclosing class:
- Dimension
public static interface Dimension.Builder extends SdkPojo, CopyableBuilder<Dimension.Builder,Dimension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Dimension.BuilderdimensionValueType(String dimensionValueType)The data type of the dimension for the time-series data point.Dimension.BuilderdimensionValueType(DimensionValueType dimensionValueType)The data type of the dimension for the time-series data point.Dimension.Buildername(String name)Dimension represents the metadata attributes of the time series.Dimension.Buildervalue(String value)The value of the dimension.-
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
Dimension.Builder name(String name)
Dimension represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
For constraints on dimension names, see Naming Constraints.
- Parameters:
name- Dimension represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.For constraints on dimension names, see Naming Constraints.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Dimension.Builder value(String value)
The value of the dimension.
- Parameters:
value- The value of the dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensionValueType
Dimension.Builder dimensionValueType(String dimensionValueType)
The data type of the dimension for the time-series data point.
- Parameters:
dimensionValueType- The data type of the dimension for the time-series data point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DimensionValueType,DimensionValueType
-
dimensionValueType
Dimension.Builder dimensionValueType(DimensionValueType dimensionValueType)
The data type of the dimension for the time-series data point.
- Parameters:
dimensionValueType- The data type of the dimension for the time-series data point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DimensionValueType,DimensionValueType
-
-