Skip to content

Create Hub

sagemaker_create_hub R Documentation

Create a hub

Description

Create a hub.

Usage

sagemaker_create_hub(HubName, HubDescription, HubDisplayName,
  HubSearchKeywords, S3StorageConfig, Tags)

Arguments

HubName

[required] The name of the hub to create.

HubDescription

[required] A description of the hub.

HubDisplayName

The display name of the hub.

HubSearchKeywords

The searchable keywords for the hub.

S3StorageConfig

The Amazon S3 storage configuration for the hub.

Tags

Any tags to associate with the hub.

Value

A list with the following syntax:

list(
  HubArn = "string"
)

Request syntax

svc$create_hub(
  HubName = "string",
  HubDescription = "string",
  HubDisplayName = "string",
  HubSearchKeywords = list(
    "string"
  ),
  S3StorageConfig = list(
    S3OutputPath = "string"
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)