interface ReadinessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnCalculatedAttributeDefinitionPropsMixin_ReadinessProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnCalculatedAttributeDefinitionPropsMixin » ReadinessProperty |
Information indicating if the Calculated Attribute is ready for use by confirming all historical data has been processed and reflected.
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 readinessProperty: customerprofiles_mixins.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty = {
message: 'message',
progressPercentage: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| message? | string | Any customer messaging. |
| progress | number | Approximately how far the Calculated Attribute creation is from completion. |
message?
Type:
string
(optional)
Any customer messaging.
progressPercentage?
Type:
number
(optional)
Approximately how far the Calculated Attribute creation is from completion.

.NET
Go
Java
Python
TypeScript