Skip to content

Describe Context

sagemaker_describe_context R Documentation

Describes a context

Description

Describes a context.

Usage

sagemaker_describe_context(ContextName)

Arguments

ContextName

[required] The name of the context to describe.

Value

A list with the following syntax:

list(
  ContextName = "string",
  ContextArn = "string",
  Source = list(
    SourceUri = "string",
    SourceType = "string",
    SourceId = "string"
  ),
  ContextType = "string",
  Description = "string",
  Properties = list(
    "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"
    )
  ),
  LineageGroupArn = "string"
)

Request syntax

svc$describe_context(
  ContextName = "string"
)