CfnSchemaMixinProps

class aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnSchemaMixinProps(*, content=None, description=None, registry_name=None, schema_name=None, tags=None, type=None)

Bases: object

Properties for CfnSchemaPropsMixin.

Parameters:
  • content (Optional[str]) – The source of the schema definition.

  • description (Optional[str]) – A description of the schema.

  • registry_name (Optional[str]) – The name of the schema registry.

  • schema_name (Optional[str]) – The name of the schema.

  • tags (Optional[Sequence[Union[TagsEntryProperty, Dict[str, Any]]]]) – Tags associated with the schema.

  • type (Optional[str]) – The type of schema. Valid types include OpenApi3 and JSONSchemaDraft4 .

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_eventschemas import mixins as eventschemas_mixins

cfn_schema_mixin_props = eventschemas_mixins.CfnSchemaMixinProps(
    content="content",
    description="description",
    registry_name="registryName",
    schema_name="schemaName",
    tags=[eventschemas_mixins.CfnSchemaPropsMixin.TagsEntryProperty(
        key="key",
        value="value"
    )],
    type="type"
)

Attributes

content

The source of the schema definition.

See:

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

description

A description of the schema.

See:

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

registry_name

The name of the schema registry.

See:

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

schema_name

The name of the schema.

See:

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

tags

Tags associated with the schema.

See:

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

type

The type of schema.

Valid types include OpenApi3 and JSONSchemaDraft4 .

See:

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