Skip to content

Describe Dataset Group

personalize_describe_dataset_group R Documentation

Describes the given dataset group

Description

Describes the given dataset group. For more information on dataset groups, see create_dataset_group.

Usage

personalize_describe_dataset_group(datasetGroupArn)

Arguments

datasetGroupArn

[required] The Amazon Resource Name (ARN) of the dataset group to describe.

Value

A list with the following syntax:

list(
  datasetGroup = list(
    name = "string",
    datasetGroupArn = "string",
    status = "string",
    roleArn = "string",
    kmsKeyArn = "string",
    creationDateTime = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdatedDateTime = as.POSIXct(
      "2015-01-01"
    ),
    failureReason = "string",
    domain = "ECOMMERCE"|"VIDEO_ON_DEMAND"
  )
)

Request syntax

svc$describe_dataset_group(
  datasetGroupArn = "string"
)