interface DataStoreProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainPropsMixin.DataStoreProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainPropsMixin_DataStoreProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainPropsMixin.DataStoreProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainPropsMixin.DataStoreProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const dataStoreProperty: customerprofiles_mixins.CfnDomainPropsMixin.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