interface CfnSchemaMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Personalize.CfnSchemaMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspersonalize#CfnSchemaMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.personalize.CfnSchemaMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_personalize.CfnSchemaMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_personalize » 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 { aws_personalize as personalize } from '@aws-cdk/cfn-property-mixins';
const cfnSchemaMixinProps: personalize.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