interface CfnHubMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnHubMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnHubMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnHubMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnHubMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnHubMixinProps |
Properties for CfnHubPropsMixin.
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/cfn-property-mixins';
const cfnHubMixinProps: sagemaker.CfnHubMixinProps = {
hubDescription: 'hubDescription',
hubDisplayName: 'hubDisplayName',
hubName: 'hubName',
hubSearchKeywords: ['hubSearchKeywords'],
s3StorageConfig: {
s3OutputPath: 's3OutputPath',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| hub | string | A description of the hub. |
| hub | string | The display name of the hub. |
| hub | string | The 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
(optional)
A description of the hub.
hubDisplayName?
Type:
string
(optional)
The display name of the hub.
hubName?
Type:
string
(optional)
The 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