Interface CfnSchemaProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSchemaProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.711Z") @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();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the schema.
    • getSchema

      @Stability(Stable) @NotNull String getSchema()
      The schema.
    • getDomain

      @Stability(Stable) @Nullable default String getDomain()
      The domain of a schema that you created for a dataset in a Domain dataset group.
    • builder

      @Stability(Stable) static CfnSchemaProps.Builder builder()
      Returns:
      a CfnSchemaProps.Builder of CfnSchemaProps