Skip to content

ListDeploymentTargets

Source: src/AWS/CodeDeploy/ListDeploymentTargets.ts

Runtime binding for codedeploy:ListDeploymentTargets — lists the target ids of a deployment (optionally filtered by target status).

const listDeploymentTargets =
yield* AWS.CodeDeploy.ListDeploymentTargets(group);
const { targetIds } = yield* listDeploymentTargets({
deploymentId,
targetFilters: { TargetStatus: ["Failed"] },
});