CfnSchemaProps

class aws_cdk.aws_personalize.CfnSchemaProps(*, name, schema, domain=None, tags=None)

Bases: object

Properties for defining a CfnSchema.

Parameters:
  • name (str) – The name of the schema.

  • schema (str) – The schema.

  • domain (Optional[str]) – The domain of a schema that you created for a dataset in a Domain dataset group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags used to organize, track, or control access for this resource.

See:

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

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_personalize as personalize

cfn_schema_props = personalize.CfnSchemaProps(
    name="name",
    schema="schema",

    # the properties below are optional
    domain="domain",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

domain

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

See:

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

name

The name of the schema.

See:

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

schema

The schema.

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.

See:

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