interface ReadinessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnCalculatedAttributeDefinition.ReadinessProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnCalculatedAttributeDefinition_ReadinessProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnCalculatedAttributeDefinition.ReadinessProperty |
Python | aws_cdk.aws_customerprofiles.CfnCalculatedAttributeDefinition.ReadinessProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnCalculatedAttributeDefinition » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const readinessProperty: customerprofiles.CfnCalculatedAttributeDefinition.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