Seleziona le tue preferenze relative ai cookie

Utilizziamo cookie essenziali e strumenti simili necessari per fornire il nostro sito e i nostri servizi. Utilizziamo i cookie prestazionali per raccogliere statistiche anonime in modo da poter capire come i clienti utilizzano il nostro sito e apportare miglioramenti. I cookie essenziali non possono essere disattivati, ma puoi fare clic su \"Personalizza\" o \"Rifiuta\" per rifiutare i cookie prestazionali.

Se sei d'accordo, AWS e le terze parti approvate utilizzeranno i cookie anche per fornire utili funzionalità del sito, ricordare le tue preferenze e visualizzare contenuti pertinenti, inclusa la pubblicità pertinente. Per continuare senza accettare questi cookie, fai clic su \"Continua\" o \"Rifiuta\". Per effettuare scelte più dettagliate o saperne di più, fai clic su \"Personalizza\".

Esempi di codice per l'utilizzo AWS Entity ResolutionAWS SDKs

Modalità Focus
Esempi di codice per l'utilizzo AWS Entity ResolutionAWS SDKs - AWS Esempi di codice SDK

Sono disponibili altri esempi AWS SDK nel repository AWS Doc SDK Examples. GitHub

Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.

Sono disponibili altri esempi AWS SDK nel repository AWS Doc SDK Examples. GitHub

Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.

I seguenti esempi di codice mostrano come utilizzarlo AWS Entity Resolution con un kit di sviluppo AWS software (SDK).

Le nozioni di base sono esempi di codice che mostrano come eseguire le operazioni essenziali all'interno di un servizio.

Le operazioni sono estratti di codice da programmi più grandi e devono essere eseguite nel contesto. Sebbene le operazioni mostrino come richiamare le singole funzioni del servizio, è possibile visualizzarle contestualizzate negli scenari correlati.

Altre risorse

Nozioni di base

Il seguente esempio di codice mostra come iniziare a utilizzare AWS Entity Resolution.

Java
SDK per Java 2.x
Nota

C'è altro da fare GitHub. Trova l'esempio completo e scopri di più sulla configurazione e l'esecuzione nel Repository di esempi di codice AWS.

/** * Before running this Java V2 code example, set up your development * environment, including your credentials. * * For more information, see the following documentation topic: * * https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html */ public class HelloEntityResoultion { private static final Logger logger = LoggerFactory.getLogger(HelloEntityResoultion.class); private static EntityResolutionAsyncClient entityResolutionAsyncClient; public static void main(String[] args) { listMatchingWorkflows(); } public static EntityResolutionAsyncClient getResolutionAsyncClient() { if (entityResolutionAsyncClient == null) { /* The `NettyNioAsyncHttpClient` class is part of the AWS SDK for Java, version 2, and it is designed to provide a high-performance, asynchronous HTTP client for interacting with AWS services. It uses the Netty framework to handle the underlying network communication and the Java NIO API to provide a non-blocking, event-driven approach to HTTP requests and responses. */ SdkAsyncHttpClient httpClient = NettyNioAsyncHttpClient.builder() .maxConcurrency(50) // Adjust as needed. .connectionTimeout(Duration.ofSeconds(60)) // Set the connection timeout. .readTimeout(Duration.ofSeconds(60)) // Set the read timeout. .writeTimeout(Duration.ofSeconds(60)) // Set the write timeout. .build(); ClientOverrideConfiguration overrideConfig = ClientOverrideConfiguration.builder() .apiCallTimeout(Duration.ofMinutes(2)) // Set the overall API call timeout. .apiCallAttemptTimeout(Duration.ofSeconds(90)) // Set the individual call attempt timeout. .retryStrategy(RetryMode.STANDARD) .build(); entityResolutionAsyncClient = EntityResolutionAsyncClient.builder() .httpClient(httpClient) .overrideConfiguration(overrideConfig) .build(); } return entityResolutionAsyncClient; } /** * Lists all matching workflows using an asynchronous paginator. * <p> * This method requests a paginated list of matching workflows from the * AWS Entity Resolution service and logs the names of the retrieved workflows. * It uses an asynchronous approach with a paginator and waits for the operation * to complete using {@code CompletableFuture#join()}. * </p> */ public static void listMatchingWorkflows() { ListMatchingWorkflowsRequest request = ListMatchingWorkflowsRequest.builder().build(); ListMatchingWorkflowsPublisher paginator = getResolutionAsyncClient().listMatchingWorkflowsPaginator(request); // Iterate through the paginated results asynchronously CompletableFuture<Void> future = paginator.subscribe(response -> { response.workflowSummaries().forEach(workflow -> logger.info("Matching Workflow Name: " + workflow.workflowName()) ); }); // Wait for the asynchronous operation to complete future.join(); } }

Il seguente esempio di codice mostra come iniziare a utilizzare AWS Entity Resolution.

Java
SDK per Java 2.x
Nota

C'è altro da fare GitHub. Trova l'esempio completo e scopri di più sulla configurazione e l'esecuzione nel Repository di esempi di codice AWS.

/** * Before running this Java V2 code example, set up your development * environment, including your credentials. * * For more information, see the following documentation topic: * * https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html */ public class HelloEntityResoultion { private static final Logger logger = LoggerFactory.getLogger(HelloEntityResoultion.class); private static EntityResolutionAsyncClient entityResolutionAsyncClient; public static void main(String[] args) { listMatchingWorkflows(); } public static EntityResolutionAsyncClient getResolutionAsyncClient() { if (entityResolutionAsyncClient == null) { /* The `NettyNioAsyncHttpClient` class is part of the AWS SDK for Java, version 2, and it is designed to provide a high-performance, asynchronous HTTP client for interacting with AWS services. It uses the Netty framework to handle the underlying network communication and the Java NIO API to provide a non-blocking, event-driven approach to HTTP requests and responses. */ SdkAsyncHttpClient httpClient = NettyNioAsyncHttpClient.builder() .maxConcurrency(50) // Adjust as needed. .connectionTimeout(Duration.ofSeconds(60)) // Set the connection timeout. .readTimeout(Duration.ofSeconds(60)) // Set the read timeout. .writeTimeout(Duration.ofSeconds(60)) // Set the write timeout. .build(); ClientOverrideConfiguration overrideConfig = ClientOverrideConfiguration.builder() .apiCallTimeout(Duration.ofMinutes(2)) // Set the overall API call timeout. .apiCallAttemptTimeout(Duration.ofSeconds(90)) // Set the individual call attempt timeout. .retryStrategy(RetryMode.STANDARD) .build(); entityResolutionAsyncClient = EntityResolutionAsyncClient.builder() .httpClient(httpClient) .overrideConfiguration(overrideConfig) .build(); } return entityResolutionAsyncClient; } /** * Lists all matching workflows using an asynchronous paginator. * <p> * This method requests a paginated list of matching workflows from the * AWS Entity Resolution service and logs the names of the retrieved workflows. * It uses an asynchronous approach with a paginator and waits for the operation * to complete using {@code CompletableFuture#join()}. * </p> */ public static void listMatchingWorkflows() { ListMatchingWorkflowsRequest request = ListMatchingWorkflowsRequest.builder().build(); ListMatchingWorkflowsPublisher paginator = getResolutionAsyncClient().listMatchingWorkflowsPaginator(request); // Iterate through the paginated results asynchronously CompletableFuture<Void> future = paginator.subscribe(response -> { response.workflowSummaries().forEach(workflow -> logger.info("Matching Workflow Name: " + workflow.workflowName()) ); }); // Wait for the asynchronous operation to complete future.join(); } }
SDK per Java 2.x
Nota

C'è altro da fare GitHub. Trova l'esempio completo e scopri di più sulla configurazione e l'esecuzione nel Repository di esempi di codice AWS.

/** * Before running this Java V2 code example, set up your development * environment, including your credentials. * * For more information, see the following documentation topic: * * https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html */ public class HelloEntityResoultion { private static final Logger logger = LoggerFactory.getLogger(HelloEntityResoultion.class); private static EntityResolutionAsyncClient entityResolutionAsyncClient; public static void main(String[] args) { listMatchingWorkflows(); } public static EntityResolutionAsyncClient getResolutionAsyncClient() { if (entityResolutionAsyncClient == null) { /* The `NettyNioAsyncHttpClient` class is part of the AWS SDK for Java, version 2, and it is designed to provide a high-performance, asynchronous HTTP client for interacting with AWS services. It uses the Netty framework to handle the underlying network communication and the Java NIO API to provide a non-blocking, event-driven approach to HTTP requests and responses. */ SdkAsyncHttpClient httpClient = NettyNioAsyncHttpClient.builder() .maxConcurrency(50) // Adjust as needed. .connectionTimeout(Duration.ofSeconds(60)) // Set the connection timeout. .readTimeout(Duration.ofSeconds(60)) // Set the read timeout. .writeTimeout(Duration.ofSeconds(60)) // Set the write timeout. .build(); ClientOverrideConfiguration overrideConfig = ClientOverrideConfiguration.builder() .apiCallTimeout(Duration.ofMinutes(2)) // Set the overall API call timeout. .apiCallAttemptTimeout(Duration.ofSeconds(90)) // Set the individual call attempt timeout. .retryStrategy(RetryMode.STANDARD) .build(); entityResolutionAsyncClient = EntityResolutionAsyncClient.builder() .httpClient(httpClient) .overrideConfiguration(overrideConfig) .build(); } return entityResolutionAsyncClient; } /** * Lists all matching workflows using an asynchronous paginator. * <p> * This method requests a paginated list of matching workflows from the * AWS Entity Resolution service and logs the names of the retrieved workflows. * It uses an asynchronous approach with a paginator and waits for the operation * to complete using {@code CompletableFuture#join()}. * </p> */ public static void listMatchingWorkflows() { ListMatchingWorkflowsRequest request = ListMatchingWorkflowsRequest.builder().build(); ListMatchingWorkflowsPublisher paginator = getResolutionAsyncClient().listMatchingWorkflowsPaginator(request); // Iterate through the paginated results asynchronously CompletableFuture<Void> future = paginator.subscribe(response -> { response.workflowSummaries().forEach(workflow -> logger.info("Matching Workflow Name: " + workflow.workflowName()) ); }); // Wait for the asynchronous operation to complete future.join(); } }
PrivacyCondizioni del sitoPreferenze cookie
© 2025, Amazon Web Services, Inc. o società affiliate. Tutti i diritti riservati.