Skip to content

Commit a7fc89a

Browse files
authored
fix: remove erroneous @internalapi marker on CRT HTTP engine config class (#742)
1 parent 788d87e commit a7fc89a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "5529014d-3b3e-49de-b32f-3d65d0662555",
3+
"type": "bugfix",
4+
"description": "Remove erroneous `@InternalApi` marker on CRT HTTP engine configuration class"
5+
}

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ package aws.smithy.kotlin.runtime.http.engine.crt
88
import aws.sdk.kotlin.crt.io.ClientBootstrap
99
import aws.sdk.kotlin.crt.io.TlsContext
1010
import aws.smithy.kotlin.runtime.http.engine.HttpClientEngineConfig
11-
import aws.smithy.kotlin.runtime.util.InternalApi
1211

13-
@InternalApi
12+
/**
13+
* Describes configuration options for the CRT HTTP engine. Use [Default] for the standard configuration or use
14+
* [Builder] to build a custom configuration.
15+
*/
1416
public class CrtHttpEngineConfig private constructor(builder: Builder) : HttpClientEngineConfig(builder) {
1517
public companion object {
1618
/**

0 commit comments

Comments
 (0)