Interface CfnSchemaProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchemaProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:46.318Z")
@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")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchemaPropsstatic final classAn implementation forCfnSchemaProps -
Method Summary
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:
-
builder
- Returns:
- a
CfnSchemaProps.BuilderofCfnSchemaProps
-