Interface CfnDomain.DomainStatsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.DomainStatsProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.DomainStatsProperty
extends software.amazon.jsii.JsiiSerializable
Usage-specific statistics about the domain.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.customerprofiles.*;
DomainStatsProperty domainStatsProperty = DomainStatsProperty.builder()
.meteringProfileCount(123)
.objectCount(123)
.profileCount(123)
.totalSize(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.DomainStatsPropertystatic final classAn implementation forCfnDomain.DomainStatsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe number of profiles that you are currently paying for in the domain.default NumberThe total number of objects in domain.default NumberThe total number of profiles currently in the domain.default NumberThe total size, in bytes, of all objects in the domain.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMeteringProfileCount
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.
- See Also:
-
getObjectCount
The total number of objects in domain.- See Also:
-
getProfileCount
The total number of profiles currently in the domain.- See Also:
-
getTotalSize
The total size, in bytes, of all objects in the domain.- See Also:
-
builder
-