You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: runtime/protocol/http-client-engines/http-client-engine-crt/jvm/src/aws/smithy/kotlin/runtime/http/engine/crt/CrtHttpEngineConfig.kt
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,16 +47,19 @@ public class CrtHttpEngineConfig private constructor(builder: Builder) : HttpCli
47
47
48
48
/**
49
49
* Certificate Authority content in PEM format
50
+
* Mutually exclusive with caFile and caDir.
50
51
*/
51
52
publicvar caRoot:String?= builder.caRoot
52
53
53
54
/**
54
55
* Path to the root certificate. Must be in PEM format.
56
+
* Mutually exclusive with caRoot.
55
57
*/
56
58
publicvar caFile:String?= builder.caFile
57
59
58
60
/**
59
61
* Path to the local trust store. Can be null.
62
+
* Mutually exclusive with caRoot.
60
63
*/
61
64
publicvar caDir:String?= builder.caDir
62
65
@@ -107,17 +110,20 @@ public class CrtHttpEngineConfig private constructor(builder: Builder) : HttpCli
107
110
publicvar clientBootstrap:ClientBootstrap?=null
108
111
109
112
/**
110
-
* Certificate Authority content in PEM format
113
+
* Certificate Authority content in PEM format.
114
+
* Mutually exclusive with caFile and caDir.
111
115
*/
112
116
publicvar caRoot:String?=null
113
117
114
118
/**
115
119
* Path to the root certificate. Must be in PEM format.
0 commit comments