AWS Fundamentals Logo
AWS Fundamentals
AWS::EventSchemas::Schema

EventSchemas Schema

Resource Type definition for AWS::EventSchemas::Schema

Properties

6 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
Content
string
Required
RegistryName
string
RequiredCreate-only
Type
string
Required
Description
string
SchemaName
string
Create-only
Tags
Array<TagsEntry>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
LastModifiedstringThe last modified time of the schema.
SchemaArnstringThe ARN of the schema.
SchemaVersionstringThe version number of the schema.
VersionCreatedDatestringThe date the schema version was created.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::EventSchemas::Schema

Resources:
  MyResource:
    Type: AWS::EventSchemas::Schema
    Properties:
      Type: "value"
      Content: "value"
      RegistryName: "my-registryname"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

schemas:DescribeSchemaschemas:CreateSchemaschemas:TagResource

read

schemas:DescribeSchema

update

schemas:DescribeSchemaschemas:UpdateSchemaschemas:TagResourceschemas:UntagResourceschemas:ListTagsForResource

delete

schemas:DescribeSchemaschemas:DeleteSchemaschemas:DeleteSchemaVersion

list

schemas:ListSchemasschemas:ListSchemaVersions

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceEventSchemas
Properties10
Required3
TaggingSupported
Primary IDSchemaArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

SchemaNameRegistryName

External Links