List Experiment Resolved Targets
fis_list_experiment_resolved_targets | R Documentation |
Lists the resolved targets information of the specified experiment¶
Description¶
Lists the resolved targets information of the specified experiment.
Usage¶
fis_list_experiment_resolved_targets(experimentId, maxResults,
nextToken, targetName)
Arguments¶
experimentId |
[required] The ID of the experiment. |
maxResults |
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. |
nextToken |
The token for the next page of results. |
targetName |
The name of the target. |
Value¶
A list with the following syntax:
list(
resolvedTargets = list(
list(
resourceType = "string",
targetName = "string",
targetInformation = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_experiment_resolved_targets(
experimentId = "string",
maxResults = 123,
nextToken = "string",
targetName = "string"
)