Skip to content

Commit 10ae112

Browse files
committed
Remove @InternalApi from SdkClientOption extension functions
1 parent 8178808 commit 10ae112

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

runtime/smithy-client/common/src/aws/smithy/kotlin/runtime/client/SdkClientOption.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,23 @@ public object SdkClientOption {
4848
/**
4949
* Get the [IdempotencyTokenProvider] from the context. If one is not set the default will be returned.
5050
*/
51-
@InternalApi
5251
public val ExecutionContext.idempotencyTokenProvider: IdempotencyTokenProvider
5352
get() = getOrNull(SdkClientOption.IdempotencyTokenProvider) ?: IdempotencyTokenProvider.Default
5453

5554
/**
5655
* Get the [LogMode] from the context. If one is not set a default will be returned
5756
*/
58-
@InternalApi
5957
public val ExecutionContext.logMode: LogMode
6058
get() = getOrNull(SdkClientOption.LogMode) ?: LogMode.Default
6159

6260
/**
6361
* Get the name of the operation being invoked from the context.
6462
*/
65-
@InternalApi
6663
public val ExecutionContext.operationName: String?
6764
get() = getOrNull(SdkClientOption.OperationName)
6865

6966
/**
7067
* Get the name of the service being invoked from the context.
7168
*/
72-
@InternalApi
7369
public val ExecutionContext.serviceName: String?
7470
get() = getOrNull(SdkClientOption.ServiceName)

0 commit comments

Comments
 (0)