List Deploy Action Execution Targets
| codepipeline_list_deploy_action_execution_targets | R Documentation |
Lists the targets for the deploy action¶
Description¶
Lists the targets for the deploy action.
Usage¶
codepipeline_list_deploy_action_execution_targets(pipelineName,
actionExecutionId, filters, maxResults, nextToken)
Arguments¶
pipelineName |
The name of the pipeline with the deploy action. |
actionExecutionId |
[required] The execution ID for the deploy action. |
filters |
Filters the targets for a specified deploy action. |
maxResults |
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. |
nextToken |
An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list. |
Value¶
A list with the following syntax:
list(
targets = list(
list(
targetId = "string",
targetType = "string",
status = "string",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
events = list(
list(
name = "string",
status = "string",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
context = list(
ssmCommandId = "string",
message = "string"
)
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_deploy_action_execution_targets(
pipelineName = "string",
actionExecutionId = "string",
filters = list(
list(
name = "TARGET_STATUS",
values = list(
"string"
)
)
),
maxResults = 123,
nextToken = "string"
)