Interface CfnRegistryMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-04T12:52:29.095Z")
@Stability(Stable)
public interface CfnRegistryMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRegistryPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.eventschemas.*;
CfnRegistryMixinProps cfnRegistryMixinProps = CfnRegistryMixinProps.builder()
.description("description")
.registryName("registryName")
.tags(List.of(TagsEntryProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRegistryMixinPropsstatic final classAn implementation forCfnRegistryMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the registry to be created.- See Also:
-
getRegistryName
The name of the schema registry.Returns union: either
StringorIRegistryPolicyRef- See Also:
-
getTags
Tags to associate with the registry.- See Also:
-
builder
- Returns:
- a
CfnRegistryMixinProps.BuilderofCfnRegistryMixinProps
-