Batch Get Membership Datasources
| detective_batch_get_membership_datasources | R Documentation | 
Gets information on the data source package history for an account¶
Description¶
Gets information on the data source package history for an account.
Usage¶
detective_batch_get_membership_datasources(GraphArns)
Arguments¶
| GraphArns | [required] The ARN of the behavior graph. | 
Value¶
A list with the following syntax:
list(
  MembershipDatasources = list(
    list(
      AccountId = "string",
      GraphArn = "string",
      DatasourcePackageIngestHistory = list(
        list(
          list(
            Timestamp = as.POSIXct(
              "2015-01-01"
            )
          )
        )
      )
    )
  ),
  UnprocessedGraphs = list(
    list(
      GraphArn = "string",
      Reason = "string"
    )
  )
)
Request syntax¶
svc$batch_get_membership_datasources(
  GraphArns = list(
    "string"
  )
)