interface DataStoreProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnDomain.DataStoreProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnDomain_DataStoreProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnDomain.DataStoreProperty |
Python | aws_cdk.aws_customerprofiles.CfnDomain.DataStoreProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnDomain » DataStoreProperty |
Configuration and status of the data store for the domain.
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 dataStoreProperty: customerprofiles.CfnDomain.DataStoreProperty = {
enabled: false,
readiness: {
message: 'message',
progressPercentage: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Whether the data store is enabled. |
| readiness? | IResolvable | Readiness | Progress information for data store setup. |
enabled?
Type:
boolean | IResolvable
(optional)
Whether the data store is enabled.
readiness?
Type:
IResolvable | Readiness
(optional)
Progress information for data store setup.

.NET
Go
Java
Python
TypeScript