Skip to content

Batch Get Graph Member Datasources

detective_batch_get_graph_member_datasources R Documentation

Gets data source package information for the behavior graph

Description

Gets data source package information for the behavior graph.

Usage

detective_batch_get_graph_member_datasources(GraphArn, AccountIds)

Arguments

GraphArn

[required] The ARN of the behavior graph.

AccountIds

[required] The list of Amazon Web Services accounts to get data source package information on.

Value

A list with the following syntax:

list(
  MemberDatasources = list(
    list(
      AccountId = "string",
      GraphArn = "string",
      DatasourcePackageIngestHistory = list(
        list(
          list(
            Timestamp = as.POSIXct(
              "2015-01-01"
            )
          )
        )
      )
    )
  ),
  UnprocessedAccounts = list(
    list(
      AccountId = "string",
      Reason = "string"
    )
  )
)

Request syntax

svc$batch_get_graph_member_datasources(
  GraphArn = "string",
  AccountIds = list(
    "string"
  )
)