Skip to content

Describe Lineage Group

sagemaker_describe_lineage_group R Documentation

Provides a list of properties for the requested lineage group

Description

Provides a list of properties for the requested lineage group. For more information, see Cross-Account Lineage Tracking in the Amazon SageMaker Developer Guide.

Usage

sagemaker_describe_lineage_group(LineageGroupName)

Arguments

LineageGroupName

[required] The name of the lineage group.

Value

A list with the following syntax:

list(
  LineageGroupName = "string",
  LineageGroupArn = "string",
  DisplayName = "string",
  Description = "string",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  ),
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  )
)

Request syntax

svc$describe_lineage_group(
  LineageGroupName = "string"
)