Interface CfnRegistryMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:20.797Z")
@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.glue.*;
CfnRegistryMixinProps cfnRegistryMixinProps = CfnRegistryMixinProps.builder()
.description("description")
.name("name")
.tags(List.of(CfnTag.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.- See Also:
-
getName
The name of the registry.- See Also:
-
getTags
AWS tags that contain a key value pair and may be searched by console, command line, or API.- See Also:
-
builder
- Returns:
- a
CfnRegistryMixinProps.BuilderofCfnRegistryMixinProps
-