interface DomainStatsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainPropsMixin.DomainStatsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainPropsMixin_DomainStatsProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainPropsMixin.DomainStatsProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainPropsMixin.DomainStatsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainPropsMixin » DomainStatsProperty |
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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const domainStatsProperty: customerprofiles_mixins.CfnDomainPropsMixin.DomainStatsProperty = {
meteringProfileCount: 123,
objectCount: 123,
profileCount: 123,
totalSize: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| metering | number | The number of profiles that you are currently paying for in the domain. |
| object | number | The total number of objects in domain. |
| profile | number | The total number of profiles currently in the domain. |
| total | number | The total size, in bytes, of all objects in the domain. |
meteringProfileCount?
Type:
number
(optional)
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.
objectCount?
Type:
number
(optional)
The total number of objects in domain.
profileCount?
Type:
number
(optional)
The total number of profiles currently in the domain.
totalSize?
Type:
number
(optional)
The total size, in bytes, of all objects in the domain.

.NET
Go
Java
Python
TypeScript