Show / Hide Table of Contents

Class CfnSchemaMixinProps

Properties for CfnSchemaPropsMixin.

Inheritance
object
CfnSchemaMixinProps
Implements
ICfnSchemaMixinProps
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.Personalize
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSchemaMixinProps : ICfnSchemaMixinProps
Syntax (vb)
Public Class CfnSchemaMixinProps Implements ICfnSchemaMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-schema.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.Personalize;

             var cfnSchemaMixinProps = new CfnSchemaMixinProps {
                 Domain = "domain",
                 Name = "name",
                 Schema = "schema",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnSchemaMixinProps()

Properties for CfnSchemaPropsMixin.

Properties

Domain

The domain of a schema that you created for a dataset in a Domain dataset group.

Name

The name of the schema.

Schema

The schema.

Tags

The tags used to organize, track, or control access for this resource.

Constructors

CfnSchemaMixinProps()

Properties for CfnSchemaPropsMixin.

public CfnSchemaMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-schema.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.Personalize;

             var cfnSchemaMixinProps = new CfnSchemaMixinProps {
                 Domain = "domain",
                 Name = "name",
                 Schema = "schema",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Domain

The domain of a schema that you created for a dataset in a Domain dataset group.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-schema.html#cfn-personalize-schema-domain

Name

The name of the schema.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-schema.html#cfn-personalize-schema-name

Schema

The schema.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-schema.html#cfn-personalize-schema-schema

Tags

The tags used to organize, track, or control access for this resource.

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

ICfnTag[]

Remarks

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

Implements

ICfnSchemaMixinProps
Back to top Generated by DocFX