List Discoverers
schemas_list_discoverers | R Documentation |
List the discoverers¶
Description¶
List the discoverers.
Usage¶
Arguments¶
DiscovererIdPrefix
Specifying this limits the results to only those discoverer IDs that start with the specified prefix.
Limit
NextToken
The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
SourceArnPrefix
Specifying this limits the results to only those ARNs that start with the specified prefix.
Value¶
A list with the following syntax:
list(
Discoverers = list(
list(
DiscovererArn = "string",
DiscovererId = "string",
SourceArn = "string",
State = "STARTED"|"STOPPED",
CrossAccount = TRUE|FALSE,
Tags = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_discoverers(
DiscovererIdPrefix = "string",
Limit = 123,
NextToken = "string",
SourceArnPrefix = "string"
)