Interface CfnSchemaMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchemaMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:24.320Z")
@Stability(Stable)
public interface CfnSchemaMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSchemaPropsMixin.
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.personalize.*;
CfnSchemaMixinProps cfnSchemaMixinProps = CfnSchemaMixinProps.builder()
.domain("domain")
.name("name")
.schema("schema")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchemaMixinPropsstatic final classAn implementation forCfnSchemaMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSchemaMixinProps.Builderbuilder()default StringThe domain of a schema that you created for a dataset in a Domain dataset group.default StringgetName()The name of the schema.default StringThe schema.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomain
The domain of a schema that you created for a dataset in a Domain dataset group.- See Also:
-
getName
The name of the schema.- See Also:
-
getSchema
The schema.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnSchemaMixinProps.BuilderofCfnSchemaMixinProps
-