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/auth/aws-credentials/api/aws-credentials.api
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@ public final class aws/smithy/kotlin/runtime/auth/awscredentials/CachedCredentia
3
3
public synthetic fun <init> (Laws/smithy/kotlin/runtime/auth/awscredentials/CredentialsProvider;JJLaws/smithy/kotlin/runtime/time/Clock;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
4
4
public fun close ()V
5
5
public fun resolve (Laws/smithy/kotlin/runtime/collections/Attributes;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
6
+
public fun toString ()Ljava/lang/String;
6
7
}
7
8
8
9
public final class aws/smithy/kotlin/runtime/auth/awscredentials/CachedCredentialsProviderKt {
@@ -62,6 +63,10 @@ public final class aws/smithy/kotlin/runtime/auth/awscredentials/CredentialsProv
62
63
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/Throwable;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
63
64
}
64
65
66
+
public final class aws/smithy/kotlin/runtime/auth/awscredentials/CredentialsProviderKt {
67
+
public static final fun getSimpleClassName (Laws/smithy/kotlin/runtime/auth/awscredentials/CredentialsProvider;)Ljava/lang/String;
68
+
}
69
+
65
70
public abstract interface class aws/smithy/kotlin/runtime/auth/awscredentials/SigV4aClientConfig {
66
71
public abstract fun getSigV4aSigningRegionSet ()Ljava/util/Set;
Copy file name to clipboardExpand all lines: runtime/auth/aws-credentials/common/src/aws/smithy/kotlin/runtime/auth/awscredentials/CachedCredentialsProvider.kt
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,8 @@ public class CachedCredentialsProvider(
Copy file name to clipboardExpand all lines: runtime/auth/aws-credentials/common/src/aws/smithy/kotlin/runtime/auth/awscredentials/CredentialsProvider.kt
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,3 +27,14 @@ public interface CredentialsProvider : IdentityProvider {
27
27
publicinterfaceCloseableCredentialsProvider :
28
28
CredentialsProvider,
29
29
Closeable
30
+
31
+
/**
32
+
* Retrieves the simple name of the class implementing [CredentialsProvider].
33
+
*
34
+
* This property uses Kotlin reflection to obtain the simple class name of
35
+
* the current instance of [CredentialsProvider]. The simple class name is
36
+
* the name of the class without the package qualification (e.g., "MyCredentialsProvider"
37
+
* instead of "com.example.MyCredentialsProvider").
0 commit comments