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