interface CfnSchemaMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EventSchemas.Mixins.CfnSchemaMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseventschemas/mixins#CfnSchemaMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.eventschemas.mixins.CfnSchemaMixinProps |
Python | aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnSchemaMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_eventschemas » mixins » CfnSchemaMixinProps |
Properties for CfnSchemaPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-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 eventschemas_mixins } from '@aws-cdk/mixins-preview/aws-eventschemas';
const cfnSchemaMixinProps: eventschemas_mixins.CfnSchemaMixinProps = {
content: 'content',
description: 'description',
registryName: 'registryName',
schemaName: 'schemaName',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The source of the schema definition. |
| description? | string | A description of the schema. |
| registry | string | The name of the schema registry. |
| schema | string | The name of the schema. |
| tags? | Tags[] | Tags associated with the schema. |
| type? | string | The type of schema. |
content?
Type:
string
(optional)
The source of the schema definition.
description?
Type:
string
(optional)
A description of the schema.
registryName?
Type:
string
(optional)
The name of the schema registry.
schemaName?
Type:
string
(optional)
The name of the schema.
tags?
Type:
Tags[]
(optional)
Tags associated with the schema.
type?
Type:
string
(optional)
The type of schema.
Valid types include OpenApi3 and JSONSchemaDraft4 .

.NET
Go
Java
Python
TypeScript