Interface DomainStats.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DomainStats.Builder,DomainStats>,SdkBuilder<DomainStats.Builder,DomainStats>,SdkPojo
- Enclosing class:
- DomainStats
public static interface DomainStats.Builder extends SdkPojo, CopyableBuilder<DomainStats.Builder,DomainStats>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DomainStats.BuildermeteringProfileCount(Long meteringProfileCount)The number of profiles that you are currently paying for in the domain.DomainStats.BuilderobjectCount(Long objectCount)The total number of objects in domain.DomainStats.BuilderprofileCount(Long profileCount)The total number of profiles currently in the domain.DomainStats.BuildertotalSize(Long totalSize)The total size, in bytes, of all objects in the domain.-
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
-
profileCount
DomainStats.Builder profileCount(Long profileCount)
The total number of profiles currently in the domain.
- Parameters:
profileCount- The total number of profiles currently in the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
meteringProfileCount
DomainStats.Builder meteringProfileCount(Long meteringProfileCount)
The number of profiles that you are currently paying for in the domain. If you have more than 100 objects associated with a single profile, that profile counts as two profiles. If you have more than 200 objects, that profile counts as three, and so on.
- Parameters:
meteringProfileCount- The number of profiles that you are currently paying for in the domain. If you have more than 100 objects associated with a single profile, that profile counts as two profiles. If you have more than 200 objects, that profile counts as three, and so on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectCount
DomainStats.Builder objectCount(Long objectCount)
The total number of objects in domain.
- Parameters:
objectCount- The total number of objects in domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalSize
DomainStats.Builder totalSize(Long totalSize)
The total size, in bytes, of all objects in the domain.
- Parameters:
totalSize- The total size, in bytes, of all objects in the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-