Interface CfnHubProps

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-22T17:37:34.169Z") @Stability(Stable) public interface CfnHubProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnHub.

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.sagemaker.*;
 CfnHubProps cfnHubProps = CfnHubProps.builder()
         .hubDescription("hubDescription")
         .hubName("hubName")
         // the properties below are optional
         .hubDisplayName("hubDisplayName")
         .hubSearchKeywords(List.of("hubSearchKeywords"))
         .s3StorageConfig(S3StorageConfigProperty.builder()
                 .s3OutputPath("s3OutputPath")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: