Package io.quarkus.amazon.common.runtime
Interface TlsTrustManagersProviderConfig
public interface TlsTrustManagersProviderConfig
-
Method Summary
Modifier and TypeMethodDescriptionConfiguration of the file store provider.type()TLS trust managers provider type.
-
Method Details
-
type
TLS trust managers provider type. Available providers: * `trust-all` - Use this provider to disable the validation of servers certificates and therefore trust all server certificates. * `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.
-