@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:46.373Z")
public interface CfnSchemaProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.eventschemas.*; CfnSchemaProps cfnSchemaProps = CfnSchemaProps.builder() .content("content") .registryName("registryName") .type("type") // the properties below are optional .description("description") .schemaName("schemaName") .tags(List.of(TagsEntryProperty.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnSchemaProps.Builder
A builder for
CfnSchemaProps |
static class |
CfnSchemaProps.Jsii$Proxy
An implementation for
CfnSchemaProps |
Modifier and Type | Method and Description |
---|---|
static CfnSchemaProps.Builder |
builder() |
java.lang.String |
getContent()
The source of the schema definition.
|
default java.lang.String |
getDescription()
A description of the schema.
|
java.lang.String |
getRegistryName()
The name of the schema registry.
|
default java.lang.String |
getSchemaName()
The name of the schema.
|
default java.util.List<CfnSchema.TagsEntryProperty> |
getTags()
Tags associated with the schema.
|
java.lang.String |
getType()
The type of schema.
|
java.lang.String getContent()
java.lang.String getRegistryName()
java.lang.String getType()
Valid types include OpenApi3
and JSONSchemaDraft4
.
default java.lang.String getDescription()
default java.lang.String getSchemaName()
default java.util.List<CfnSchema.TagsEntryProperty> getTags()
static CfnSchemaProps.Builder builder()
CfnSchemaProps.Builder
of CfnSchemaProps