ListDeploymentTargets
Source:
src/AWS/CodeDeploy/ListDeploymentTargets.ts
Runtime binding for codedeploy:ListDeploymentTargets — lists the target
ids of a deployment (optionally filtered by target status).
Observing Deployment Targets
Section titled “Observing Deployment Targets”const listDeploymentTargets = yield* AWS.CodeDeploy.ListDeploymentTargets(group);
const { targetIds } = yield* listDeploymentTargets({ deploymentId, targetFilters: { TargetStatus: ["Failed"] },});