D'autres exemples de AWS SDK sont disponibles dans le référentiel AWS Doc SDK Examples GitHub .
Les traductions sont fournies par des outils de traduction automatique. En cas de conflit entre le contenu d'une traduction et celui de la version originale en anglais, la version anglaise prévaudra.
Utilisation GetMatchingJob avec un AWS SDK
Les exemples de code suivants illustrent comment utiliser GetMatchingJob.
Les exemples d’actions sont des extraits de code de programmes de plus grande envergure et doivent être exécutés en contexte. Vous pouvez voir cette action en contexte dans l’exemple de code suivant :
- Java
-
- SDK pour Java 2.x
-
/**
* Asynchronously retrieves a matching job based on the provided job ID and workflow name.
*
* @param jobId the ID of the job to retrieve
* @param workflowName the name of the workflow associated with the job
* @return a {@link CompletableFuture} that completes when the job information is available or an exception occurs
*/
public CompletableFuture<GetMatchingJobResponse> getMatchingJobAsync(String jobId, String workflowName) {
GetMatchingJobRequest request = GetMatchingJobRequest.builder()
.jobId(jobId)
.workflowName(workflowName)
.build();
return getResolutionAsyncClient().getMatchingJob(request)
.whenComplete((response, exception) -> {
if (response != null) {
// Successfully fetched the matching job details, log the job status.
logger.info("Job status: " + response.status());
logger.info("Job details: " + response.toString());
} else {
if (exception == null) {
throw new CompletionException("An unknown error occurred while fetching the matching job.", null);
}
Throwable cause = exception.getCause();
if (cause instanceof ResourceNotFoundException) {
throw new CompletionException("The requested job could not be found.", cause);
}
// Wrap other exceptions in a CompletionException with the message.
throw new CompletionException("Error fetching matching job: " + exception.getMessage(), exception);
}
});
}
- JavaScript
-
- SDK pour JavaScript (v3)
-
//The default inputs for this demo are read from the ../inputs.json.
import { fileURLToPath } from "node:url";
import {
GetMatchingJobCommand,
EntityResolutionClient,
} from "@aws-sdk/client-entityresolution";
import data from "../inputs.json" with { type: "json" };
const region = "eu-west-1";
const erClient = new EntityResolutionClient({ region: region });
export const main = async () => {
async function getInfo() {
const getJobInfoParams = {
workflowName: `${data.inputs.workflowName}`,
jobId: `${data.inputs.jobId}`,
};
try {
const command = new GetMatchingJobCommand(getJobInfoParams);
const response = await erClient.send(command);
console.log(`Job status: ${response.status}`);
} catch (error) {
console.log("error ", error.message);
}
}
};