Skip to content

Create Hub Content Reference

sagemaker_create_hub_content_reference R Documentation

Create a hub content reference in order to add a model in the JumpStart public hub to a private hub

Description

Create a hub content reference in order to add a model in the JumpStart public hub to a private hub.

Usage

sagemaker_create_hub_content_reference(HubName,
  SageMakerPublicHubContentArn, HubContentName, MinVersion, Tags)

Arguments

HubName

[required] The name of the hub to add the hub content reference to.

SageMakerPublicHubContentArn

[required] The ARN of the public hub content to reference.

HubContentName

The name of the hub content to reference.

MinVersion

The minimum version of the hub content to reference.

Tags

Any tags associated with the hub content to reference.

Value

A list with the following syntax:

list(
  HubArn = "string",
  HubContentArn = "string"
)

Request syntax

svc$create_hub_content_reference(
  HubName = "string",
  SageMakerPublicHubContentArn = "string",
  HubContentName = "string",
  MinVersion = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)