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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHubPropsstatic final classAn implementation forCfnHubProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnHubProps.Builderbuilder()A description of the hub.default StringThe display name of the hub.The name of the hub.The searchable keywords for the hub.default ObjectThe Amazon S3 storage configuration for the hub.getTags()Tags to associate with the hub.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHubDescription
A description of the hub.- See Also:
-
getHubName
The name of the hub.- See Also:
-
getHubDisplayName
The display name of the hub.- See Also:
-
getHubSearchKeywords
The searchable keywords for the hub.- See Also:
-
getS3StorageConfig
The Amazon S3 storage configuration for the hub.Returns union: either
IResolvableorCfnHub.S3StorageConfigProperty- See Also:
-
getTags
Tags to associate with the hub.- See Also:
-
builder
- Returns:
- a
CfnHubProps.BuilderofCfnHubProps
-