CfnHubProps

class aws_cdk.aws_sagemaker.CfnHubProps(*, hub_description, hub_name, hub_display_name=None, hub_search_keywords=None, s3_storage_config=None, tags=None)

Bases: object

Properties for defining a CfnHub.

Parameters:
  • hub_description (str) – A description of the hub.

  • hub_name (str) – The name of the hub.

  • hub_display_name (Optional[str]) – The display name of the hub.

  • hub_search_keywords (Optional[Sequence[str]]) – The searchable keywords for the hub.

  • s3_storage_config (Union[IResolvable, S3StorageConfigProperty, Dict[str, Any], None]) – The Amazon S3 storage configuration for the hub.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags to associate with the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_sagemaker as sagemaker

cfn_hub_props = sagemaker.CfnHubProps(
    hub_description="hubDescription",
    hub_name="hubName",

    # the properties below are optional
    hub_display_name="hubDisplayName",
    hub_search_keywords=["hubSearchKeywords"],
    s3_storage_config=sagemaker.CfnHub.S3StorageConfigProperty(
        s3_output_path="s3OutputPath"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

hub_description

A description of the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html#cfn-sagemaker-hub-hubdescription

hub_display_name

The display name of the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html#cfn-sagemaker-hub-hubdisplayname

hub_name

The name of the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html#cfn-sagemaker-hub-hubname

hub_search_keywords

The searchable keywords for the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html#cfn-sagemaker-hub-hubsearchkeywords

s3_storage_config

The Amazon S3 storage configuration for the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html#cfn-sagemaker-hub-s3storageconfig

tags

Tags to associate with the hub.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.html#cfn-sagemaker-hub-tags