All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.plugins.aws.AwsClientModule Maven / Gradle / Ivy

The newest version!
package io.codemodder.plugins.aws;

import com.google.inject.AbstractModule;
import software.amazon.awssdk.services.translate.TranslateClient;

/** Provides AWS clients. */
public final class AwsClientModule extends AbstractModule {

  @Override
  protected void configure() {
    bind(TranslateClient.class).toProvider(() -> TranslateClient.builder().build());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy