List Harnesses
| bedrockagentcorecontrol_list_harnesses | R Documentation |
Operation to list Harnesses¶
Description¶
Operation to list Harnesses.
Usage¶
bedrockagentcorecontrol_list_harnesses(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to return in a single call. |
nextToken |
The token for the next set of results. |
Value¶
A list with the following syntax:
list(
harnesses = list(
list(
harnessId = "string",
harnessName = "string",
arn = "string",
status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"READY"|"DELETING"|"DELETE_FAILED",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_harnesses(
maxResults = 123,
nextToken = "string"
)