Interface GetSendStatisticsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetSendStatisticsResponse.Builder,GetSendStatisticsResponse>,SdkBuilder<GetSendStatisticsResponse.Builder,GetSendStatisticsResponse>,SdkPojo,SdkResponse.Builder,SesResponse.Builder
- Enclosing class:
- GetSendStatisticsResponse
public static interface GetSendStatisticsResponse.Builder extends SesResponse.Builder, SdkPojo, CopyableBuilder<GetSendStatisticsResponse.Builder,GetSendStatisticsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetSendStatisticsResponse.BuildersendDataPoints(Collection<SendDataPoint> sendDataPoints)A list of data points, each of which represents 15 minutes of activity.GetSendStatisticsResponse.BuildersendDataPoints(Consumer<SendDataPoint.Builder>... sendDataPoints)A list of data points, each of which represents 15 minutes of activity.GetSendStatisticsResponse.BuildersendDataPoints(SendDataPoint... sendDataPoints)A list of data points, each of which represents 15 minutes of activity.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ses.model.SesResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
sendDataPoints
GetSendStatisticsResponse.Builder sendDataPoints(Collection<SendDataPoint> sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.
- Parameters:
sendDataPoints- A list of data points, each of which represents 15 minutes of activity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sendDataPoints
GetSendStatisticsResponse.Builder sendDataPoints(SendDataPoint... sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.
- Parameters:
sendDataPoints- A list of data points, each of which represents 15 minutes of activity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sendDataPoints
GetSendStatisticsResponse.Builder sendDataPoints(Consumer<SendDataPoint.Builder>... sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.
This is a convenience method that creates an instance of theSendDataPoint.Builderavoiding the need to create one manually viaSendDataPoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sendDataPoints(List.) - Parameters:
sendDataPoints- a consumer that will call methods onSendDataPoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sendDataPoints(java.util.Collection)
-
-