Interface BaseKpiResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BaseKpiResult.Builder,BaseKpiResult>,SdkBuilder<BaseKpiResult.Builder,BaseKpiResult>,SdkPojo
- Enclosing class:
- BaseKpiResult
public static interface BaseKpiResult.Builder extends SdkPojo, CopyableBuilder<BaseKpiResult.Builder,BaseKpiResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BaseKpiResult.Builderrows(Collection<ResultRow> rows)An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.BaseKpiResult.Builderrows(Consumer<ResultRow.Builder>... rows)An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.BaseKpiResult.Builderrows(ResultRow... rows)An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.-
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
-
rows
BaseKpiResult.Builder rows(Collection<ResultRow> rows)
An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.
- Parameters:
rows- An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
BaseKpiResult.Builder rows(ResultRow... rows)
An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.
- Parameters:
rows- An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
BaseKpiResult.Builder rows(Consumer<ResultRow.Builder>... rows)
An array of objects that provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.
This is a convenience method that creates an instance of theResultRow.Builderavoiding the need to create one manually viaResultRow.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#rows(List.) - Parameters:
rows- a consumer that will call methods onResultRow.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#rows(java.util.Collection)
-
-