Interface CfnHubMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHubMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:48.506Z")
@Stability(Stable)
public interface CfnHubMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnHubPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
CfnHubMixinProps cfnHubMixinProps = CfnHubMixinProps.builder()
.hubDescription("hubDescription")
.hubDisplayName("hubDisplayName")
.hubName("hubName")
.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 forCfnHubMixinPropsstatic final classAn implementation forCfnHubMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnHubMixinProps.Builderbuilder()default StringA description of the hub.default StringThe display name of the hub.default StringThe 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:
-
getHubDisplayName
The display name of the hub.- See Also:
-
getHubName
The 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
IResolvableorCfnHubPropsMixin.S3StorageConfigProperty- See Also:
-
getTags
Tags to associate with the hub.- See Also:
-
builder
- Returns:
- a
CfnHubMixinProps.BuilderofCfnHubMixinProps
-