Interface VolumeStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VolumeStatistics.Builder,VolumeStatistics>,SdkBuilder<VolumeStatistics.Builder,VolumeStatistics>,SdkPojo
- Enclosing class:
- VolumeStatistics
public static interface VolumeStatistics.Builder extends SdkPojo, CopyableBuilder<VolumeStatistics.Builder,VolumeStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VolumeStatistics.BuilderinboxRawCount(Long inboxRawCount)The total number of emails that arrived in recipients' inboxes.VolumeStatistics.BuilderprojectedInbox(Long projectedInbox)An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.VolumeStatistics.BuilderprojectedSpam(Long projectedSpam)An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.VolumeStatistics.BuilderspamRawCount(Long spamRawCount)The total number of emails that arrived in recipients' spam or junk mail folders.-
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
-
inboxRawCount
VolumeStatistics.Builder inboxRawCount(Long inboxRawCount)
The total number of emails that arrived in recipients' inboxes.
- Parameters:
inboxRawCount- The total number of emails that arrived in recipients' inboxes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spamRawCount
VolumeStatistics.Builder spamRawCount(Long spamRawCount)
The total number of emails that arrived in recipients' spam or junk mail folders.
- Parameters:
spamRawCount- The total number of emails that arrived in recipients' spam or junk mail folders.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectedInbox
VolumeStatistics.Builder projectedInbox(Long projectedInbox)
An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.
- Parameters:
projectedInbox- An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectedSpam
VolumeStatistics.Builder projectedSpam(Long projectedSpam)
An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.
- Parameters:
projectedSpam- An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-