Class CfnDomainPropsMixin.DataStoreProperty
Configuration and status of the data store for the domain.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDomainPropsMixin.DataStoreProperty : CfnDomainPropsMixin.IDataStoreProperty
Syntax (vb)
Public Class CfnDomainPropsMixin.DataStoreProperty Implements CfnDomainPropsMixin.IDataStoreProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles;
var dataStoreProperty = new DataStoreProperty {
Enabled = false,
Readiness = new ReadinessProperty {
Message = "message",
ProgressPercentage = 123
}
};
Synopsis
Constructors
| DataStoreProperty() | Configuration and status of the data store for the domain. |
Properties
| Enabled | Whether the data store is enabled. |
| Readiness | Progress information for data store setup. |
Constructors
DataStoreProperty()
Configuration and status of the data store for the domain.
public DataStoreProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles;
var dataStoreProperty = new DataStoreProperty {
Enabled = false,
Readiness = new ReadinessProperty {
Message = "message",
ProgressPercentage = 123
}
};
Properties
Enabled
Whether the data store is enabled.
public object? Enabled { get; set; }
Property Value
Remarks
Readiness
Progress information for data store setup.
public object? Readiness { get; set; }