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

software.amazon.awssdk.codegen.rules.EndpointAuthSchemeStrategyFactory.resource Maven / Gradle / Ivy

import java.util.function.Supplier;
import software.amazon.awssdk.annotations.SdkInternalApi;

@SdkInternalApi
public interface EndpointAuthSchemeStrategyFactory extends Supplier {
   EndpointAuthSchemeStrategy endpointAuthSchemeStrategy();

   @Override
   default EndpointAuthSchemeStrategy get() {
       return endpointAuthSchemeStrategy();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy