Import Hub Content
| sagemaker_import_hub_content | R Documentation |
Import hub content¶
Description¶
Import hub content.
Usage¶
sagemaker_import_hub_content(HubContentName, HubContentVersion,
HubContentType, DocumentSchemaVersion, HubName, HubContentDisplayName,
HubContentDescription, HubContentMarkdown, HubContentDocument,
HubContentSearchKeywords, Tags)
Arguments¶
HubContentName[required] The name of the hub content to import.
HubContentVersionThe version of the hub content to import.
HubContentType[required] The type of hub content to import.
DocumentSchemaVersion[required] The version of the hub content schema to import.
HubName[required] The name of the hub to import content into.
HubContentDisplayNameThe display name of the hub content to import.
HubContentDescriptionA description of the hub content to import.
HubContentMarkdownA string that provides a description of the hub content. This string can include links, tables, and standard markdown formating.
HubContentDocument[required] The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.
HubContentSearchKeywordsThe searchable keywords of the hub content.
TagsAny tags associated with the hub content.
Value¶
A list with the following syntax:
Request syntax¶
svc$import_hub_content(
HubContentName = "string",
HubContentVersion = "string",
HubContentType = "Model"|"Notebook"|"ModelReference",
DocumentSchemaVersion = "string",
HubName = "string",
HubContentDisplayName = "string",
HubContentDescription = "string",
HubContentMarkdown = "string",
HubContentDocument = "string",
HubContentSearchKeywords = list(
"string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)