Skip to content

Describe Model Package Group

sagemaker_describe_model_package_group R Documentation

Gets a description for the specified model group

Description

Gets a description for the specified model group.

Usage

sagemaker_describe_model_package_group(ModelPackageGroupName)

Arguments

ModelPackageGroupName

[required] The name of the model group to describe.

Value

A list with the following syntax:

list(
  ModelPackageGroupName = "string",
  ModelPackageGroupArn = "string",
  ModelPackageGroupDescription = "string",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  ),
  ModelPackageGroupStatus = "Pending"|"InProgress"|"Completed"|"Failed"|"Deleting"|"DeleteFailed"
)

Request syntax

svc$describe_model_package_group(
  ModelPackageGroupName = "string"
)