interface ReadinessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnCalculatedAttributeDefinitionPropsMixin_ReadinessProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.ReadinessProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » 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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const readinessProperty: customerprofiles.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