File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
runtime/smithy-client/common/src/aws/smithy/kotlin/runtime/client Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff 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
5251public 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
5957public 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
6663public 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
7369public val ExecutionContext .serviceName: String?
7470 get() = getOrNull(SdkClientOption .ServiceName )
You can’t perform that action at this time.
0 commit comments