List Target Account Configurations
fis_list_target_account_configurations | R Documentation |
Lists the target account configurations of the specified experiment template¶
Description¶
Lists the target account configurations of the specified experiment template.
Usage¶
fis_list_target_account_configurations(experimentTemplateId, maxResults,
nextToken)
Arguments¶
experimentTemplateId |
[required] The ID of the experiment template. |
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. |
Value¶
A list with the following syntax:
list(
targetAccountConfigurations = list(
list(
roleArn = "string",
accountId = "string",
description = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_target_account_configurations(
experimentTemplateId = "string",
maxResults = 123,
nextToken = "string"
)