List Datasource Packages
detective_list_datasource_packages | R Documentation |
Lists data source packages in the behavior graph¶
Description¶
Lists data source packages in the behavior graph.
Usage¶
detective_list_datasource_packages(GraphArn, NextToken, MaxResults)
Arguments¶
GraphArn |
[required] The ARN of the behavior graph. |
NextToken |
For requests to get the next page of results, the pagination token that was returned with the previous set of results. The initial request does not include a pagination token. |
MaxResults |
The maximum number of results to return. |
Value¶
A list with the following syntax:
list(
DatasourcePackages = list(
list(
DatasourcePackageIngestState = "STARTED"|"STOPPED"|"DISABLED",
LastIngestStateChange = list(
list(
Timestamp = as.POSIXct(
"2015-01-01"
)
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_datasource_packages(
GraphArn = "string",
NextToken = "string",
MaxResults = 123
)