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:
objectProperties 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 includeOpenApi3andJSONSchemaDraft4.
- 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.
- description
A description of the schema.
- registry_name
The name of the schema registry.
- schema_name
The name of the schema.
- tags
Tags associated with the schema.
- type
The type of schema.
Valid types include
OpenApi3andJSONSchemaDraft4.