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