Show / Hide Table of Contents

Class CfnDomainObjectTypeProps

Properties for defining a CfnDomainObjectType.

Inheritance
object
CfnDomainObjectTypeProps
Implements
ICfnDomainObjectTypeProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomainObjectTypeProps : ICfnDomainObjectTypeProps
Syntax (vb)
Public Class CfnDomainObjectTypeProps Implements ICfnDomainObjectTypeProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.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.AWS.CustomerProfiles;

             var cfnDomainObjectTypeProps = new CfnDomainObjectTypeProps {
                 DomainName = "domainName",
                 Fields = new Dictionary<string, object> {
                     { "fieldsKey", new DomainObjectTypeFieldProperty {
                         Source = "source",
                         Target = "target",

                         // the properties below are optional
                         ContentType = "contentType",
                         FeatureType = "featureType"
                     } }
                 },
                 ObjectTypeName = "objectTypeName",

                 // the properties below are optional
                 Description = "description",
                 EncryptionKey = "encryptionKey",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnDomainObjectTypeProps()

Properties for defining a CfnDomainObjectType.

Properties

Description

Description of the domain object type.

DomainName

The unique name of the domain.

EncryptionKey

The default encryption key.

Fields

A map of the name and ObjectType field.

ObjectTypeName

The name of the domain object type.

Tags

An array of key-value pairs to apply to this resource.

Constructors

CfnDomainObjectTypeProps()

Properties for defining a CfnDomainObjectType.

public CfnDomainObjectTypeProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.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.AWS.CustomerProfiles;

             var cfnDomainObjectTypeProps = new CfnDomainObjectTypeProps {
                 DomainName = "domainName",
                 Fields = new Dictionary<string, object> {
                     { "fieldsKey", new DomainObjectTypeFieldProperty {
                         Source = "source",
                         Target = "target",

                         // the properties below are optional
                         ContentType = "contentType",
                         FeatureType = "featureType"
                     } }
                 },
                 ObjectTypeName = "objectTypeName",

                 // the properties below are optional
                 Description = "description",
                 EncryptionKey = "encryptionKey",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

Description of the domain object type.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.html#cfn-customerprofiles-domainobjecttype-description

DomainName

The unique name of the domain.

public string DomainName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.html#cfn-customerprofiles-domainobjecttype-domainname

EncryptionKey

The default encryption key.

public string? EncryptionKey { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.html#cfn-customerprofiles-domainobjecttype-encryptionkey

Fields

A map of the name and ObjectType field.

public object Fields { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.html#cfn-customerprofiles-domainobjecttype-fields

Type union: either IResolvable or Dictionary<string, either IResolvable or CfnDomainObjectType.IDomainObjectTypeFieldProperty>

ObjectTypeName

The name of the domain object type.

public string ObjectTypeName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.html#cfn-customerprofiles-domainobjecttype-objecttypename

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domainobjecttype.html#cfn-customerprofiles-domainobjecttype-tags

Implements

ICfnDomainObjectTypeProps
Back to top Generated by DocFX