Skip to content

Describe Hub

sagemaker_describe_hub R Documentation

Describes a hub

Description

Describes a hub.

Usage

sagemaker_describe_hub(HubName)

Arguments

HubName

[required] The name of the hub to describe.

Value

A list with the following syntax:

list(
  HubName = "string",
  HubArn = "string",
  HubDisplayName = "string",
  HubDescription = "string",
  HubSearchKeywords = list(
    "string"
  ),
  S3StorageConfig = list(
    S3OutputPath = "string"
  ),
  HubStatus = "InService"|"Creating"|"Updating"|"Deleting"|"CreateFailed"|"UpdateFailed"|"DeleteFailed",
  FailureReason = "string",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_hub(
  HubName = "string"
)