Describe Hub Content
sagemaker_describe_hub_content | R Documentation |
Describe the content of a hub¶
Description¶
Describe the content of a hub.
Usage¶
sagemaker_describe_hub_content(HubName, HubContentType, HubContentName,
HubContentVersion)
Arguments¶
HubName |
[required] The name of the hub that contains the content to describe. |
HubContentType |
[required] The type of content in the hub. |
HubContentName |
[required] The name of the content to describe. |
HubContentVersion |
The version of the content to describe. |
Value¶
A list with the following syntax:
list(
HubContentName = "string",
HubContentArn = "string",
HubContentVersion = "string",
HubContentType = "Model"|"Notebook"|"ModelReference",
DocumentSchemaVersion = "string",
HubName = "string",
HubArn = "string",
HubContentDisplayName = "string",
HubContentDescription = "string",
HubContentMarkdown = "string",
HubContentDocument = "string",
SageMakerPublicHubContentArn = "string",
ReferenceMinVersion = "string",
SupportStatus = "Supported"|"Deprecated",
HubContentSearchKeywords = list(
"string"
),
HubContentDependencies = list(
list(
DependencyOriginPath = "string",
DependencyCopyPath = "string"
)
),
HubContentStatus = "Available"|"Importing"|"Deleting"|"ImportFailed"|"DeleteFailed",
FailureReason = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$describe_hub_content(
HubName = "string",
HubContentType = "Model"|"Notebook"|"ModelReference",
HubContentName = "string",
HubContentVersion = "string"
)