interface CfnSchemaMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins.CfnSchemaMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspersonalize/mixins#CfnSchemaMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.personalize.mixins.CfnSchemaMixinProps |
Python | aws_cdk.mixins_preview.aws_personalize.mixins.CfnSchemaMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_personalize » mixins » CfnSchemaMixinProps |
Properties for CfnSchemaPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-schema.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as personalize_mixins } from '@aws-cdk/mixins-preview/aws-personalize';
const cfnSchemaMixinProps: personalize_mixins.CfnSchemaMixinProps = {
domain: 'domain',
name: 'name',
schema: 'schema',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain? | string | The domain of a schema that you created for a dataset in a Domain dataset group. |
| name? | string | The name of the schema. |
| schema? | string | The schema. |
domain?
Type:
string
(optional)
The domain of a schema that you created for a dataset in a Domain dataset group.
name?
Type:
string
(optional)
The name of the schema.
schema?
Type:
string
(optional)
The schema.

.NET
Go
Java
Python
TypeScript