interface CfnHubProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnHubProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnHubProps |
Java | software.amazon.awscdk.services.sagemaker.CfnHubProps |
Python | aws_cdk.aws_sagemaker.CfnHubProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnHubProps |
Properties for defining a CfnHub.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cfnHubProps: sagemaker.CfnHubProps = {
hubDescription: 'hubDescription',
hubName: 'hubName',
// the properties below are optional
hubDisplayName: 'hubDisplayName',
hubSearchKeywords: ['hubSearchKeywords'],
s3StorageConfig: {
s3OutputPath: 's3OutputPath',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| hub | string | A description of the hub. |
| hub | string | The name of the hub. |
| hub | string | The display name of the hub. |
| hub | string[] | The searchable keywords for the hub. |
| s3 | IResolvable | S3 | The Amazon S3 storage configuration for the hub. |
| tags? | Cfn[] | Tags to associate with the hub. |
hubDescription
Type:
string
A description of the hub.
hubName
Type:
string
The name of the hub.
hubDisplayName?
Type:
string
(optional)
The display name of the hub.
hubSearchKeywords?
Type:
string[]
(optional)
The searchable keywords for the hub.
s3StorageConfig?
Type:
IResolvable | S3
(optional)
The Amazon S3 storage configuration for the hub.
tags?
Type:
Cfn[]
(optional)
Tags to associate with the hub.

.NET
Go
Java
Python
TypeScript