Skip to content

Commit 45ef58b

Browse files
committed
update comment
1 parent 60a273f commit 45ef58b

File tree

1 file changed

+7
-1
lines changed
  • runtime/protocol/http-client-engines/http-client-engine-crt/jvm/src/aws/smithy/kotlin/runtime/http/engine/crt

1 file changed

+7
-1
lines changed

runtime/protocol/http-client-engines/http-client-engine-crt/jvm/src/aws/smithy/kotlin/runtime/http/engine/crt/CrtHttpEngineConfig.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,19 @@ public class CrtHttpEngineConfig private constructor(builder: Builder) : HttpCli
4747

4848
/**
4949
* Certificate Authority content in PEM format
50+
* Mutually exclusive with caFile and caDir.
5051
*/
5152
public var caRoot: String? = builder.caRoot
5253

5354
/**
5455
* Path to the root certificate. Must be in PEM format.
56+
* Mutually exclusive with caRoot.
5557
*/
5658
public var caFile: String? = builder.caFile
5759

5860
/**
5961
* Path to the local trust store. Can be null.
62+
* Mutually exclusive with caRoot.
6063
*/
6164
public var caDir: String? = builder.caDir
6265

@@ -107,17 +110,20 @@ public class CrtHttpEngineConfig private constructor(builder: Builder) : HttpCli
107110
public var clientBootstrap: ClientBootstrap? = null
108111

109112
/**
110-
* Certificate Authority content in PEM format
113+
* Certificate Authority content in PEM format.
114+
* Mutually exclusive with caFile and caDir.
111115
*/
112116
public var caRoot: String? = null
113117

114118
/**
115119
* Path to the root certificate. Must be in PEM format.
120+
* Mutually exclusive with caRoot.
116121
*/
117122
public var caFile: String? = null
118123

119124
/**
120125
* Path to the local trust store. Can be null.
126+
* Mutually exclusive with caRoot.
121127
*/
122128
public var caDir: String? = null
123129

0 commit comments

Comments
 (0)