Show / Hide Table of Contents

Class CfnDomainPropsMixin.DataStoreProperty

Configuration and status of the data store for the domain.

Inheritance
object
CfnDomainPropsMixin.DataStoreProperty
Implements
CfnDomainPropsMixin.IDataStoreProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html#cfn-customerprofiles-domain-datastore-enabled

Type union: either bool or IResolvable

Readiness

Progress information for data store setup.

public object? Readiness { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html#cfn-customerprofiles-domain-datastore-readiness

Type union: either IResolvable or CfnDomainPropsMixin.IReadinessProperty

Implements

CfnDomainPropsMixin.IDataStoreProperty
Back to top Generated by DocFX