Interface AnalyticsBinBySpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalyticsBinBySpecification.Builder,AnalyticsBinBySpecification>,SdkBuilder<AnalyticsBinBySpecification.Builder,AnalyticsBinBySpecification>,SdkPojo
- Enclosing class:
- AnalyticsBinBySpecification
public static interface AnalyticsBinBySpecification.Builder extends SdkPojo, CopyableBuilder<AnalyticsBinBySpecification.Builder,AnalyticsBinBySpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalyticsBinBySpecification.Builderinterval(String interval)Specifies the interval of time by which to bin the analytics data.AnalyticsBinBySpecification.Builderinterval(AnalyticsInterval interval)Specifies the interval of time by which to bin the analytics data.AnalyticsBinBySpecification.Buildername(String name)Specifies the time metric by which to bin the analytics data.AnalyticsBinBySpecification.Buildername(AnalyticsBinByName name)Specifies the time metric by which to bin the analytics data.AnalyticsBinBySpecification.Builderorder(String order)Specifies whether to bin the analytics data in ascending or descending order.AnalyticsBinBySpecification.Builderorder(AnalyticsSortOrder order)Specifies whether to bin the analytics data in ascending or descending order.-
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
AnalyticsBinBySpecification.Builder name(String name)
Specifies the time metric by which to bin the analytics data.
- Parameters:
name- Specifies the time metric by which to bin the analytics data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsBinByName,AnalyticsBinByName
-
name
AnalyticsBinBySpecification.Builder name(AnalyticsBinByName name)
Specifies the time metric by which to bin the analytics data.
- Parameters:
name- Specifies the time metric by which to bin the analytics data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsBinByName,AnalyticsBinByName
-
interval
AnalyticsBinBySpecification.Builder interval(String interval)
Specifies the interval of time by which to bin the analytics data.
- Parameters:
interval- Specifies the interval of time by which to bin the analytics data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsInterval,AnalyticsInterval
-
interval
AnalyticsBinBySpecification.Builder interval(AnalyticsInterval interval)
Specifies the interval of time by which to bin the analytics data.
- Parameters:
interval- Specifies the interval of time by which to bin the analytics data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsInterval,AnalyticsInterval
-
order
AnalyticsBinBySpecification.Builder order(String order)
Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.
- Parameters:
order- Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsSortOrder,AnalyticsSortOrder
-
order
AnalyticsBinBySpecification.Builder order(AnalyticsSortOrder order)
Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.
- Parameters:
order- Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsSortOrder,AnalyticsSortOrder
-
-