Show / Hide Table of Contents

Class CfnSchemaProps

Properties for defining a CfnSchema.

Inheritance
object
CfnSchemaProps
Implements
ICfnSchemaProps
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.Personalize
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSchemaProps : ICfnSchemaProps
Syntax (vb)
Public Class CfnSchemaProps Implements ICfnSchemaProps
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.AWS.Personalize;

             var cfnSchemaProps = new CfnSchemaProps {
                 Name = "name",
                 Schema = "schema",

                 // the properties below are optional
                 Domain = "domain"
             };

Synopsis

Constructors

CfnSchemaProps()

Properties for defining a CfnSchema.

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.

Constructors

CfnSchemaProps()

Properties for defining a CfnSchema.

public CfnSchemaProps()
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.AWS.Personalize;

             var cfnSchemaProps = new CfnSchemaProps {
                 Name = "name",
                 Schema = "schema",

                 // the properties below are optional
                 Domain = "domain"
             };

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

Implements

ICfnSchemaProps
Back to top Generated by DocFX