RegistryArgs

data class RegistryArgs(val description: Output<String>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<RegistryArgs>

This resource creates a Registry for authoring schemas as part of Glue Schema Registry.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, name: Output<String>? = null, tags: Output<List<TagArgs>>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

A description of the registry. If description is not provided, there will not be any default value for this.

Link copied to clipboard
val name: Output<String>? = null

Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.

Link copied to clipboard
val tags: Output<List<TagArgs>>? = null

List of tags to tag the Registry

Functions

Link copied to clipboard
open override fun toJava(): RegistryArgs