Package io.quarkus.amazon.common.runtime
Interface TlsKeyManagersProviderConfig
public interface TlsKeyManagersProviderConfig
-
Method Summary
Modifier and TypeMethodDescriptionConfiguration of the file store provider.type()TLS key managers provider type.
-
Method Details
-
type
TLS key managers provider type. Available providers: * `none` - Use this provider if you don't want the client to present any certificates to the remote TLS host. * `system-property` - Provider checks the standard `javax.net.ssl.keyStore`, `javax.net.ssl.keyStorePassword`, and `javax.net.ssl.keyStoreType` properties defined by the https://docs.oracle.com/javase/8/docs/technotes/guides/security/jsse/JSSERefGuide.html[JSSE]. * `file-store` - Provider that loads the key store from a file. -
fileStore
FileStoreTlsManagersProviderConfig fileStore()Configuration of the file store provider.Used only if
FILE_STOREtype is chosen.
-