File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ namespace Aws {
21
21
public:
22
22
SSOCredentialsProvider ();
23
23
explicit SSOCredentialsProvider (const Aws::String& profile);
24
- explicit SSOCredentialsProvider (const Aws::String& profile, std::shared_ptr<const Client::ClientConfiguration> config);
24
+ explicit SSOCredentialsProvider (const Aws::String& profile, std::shared_ptr<const Aws:: Client::ClientConfiguration> config);
25
25
/* *
26
26
* Retrieves the credentials if found, otherwise returns empty credential set.
27
27
*/
@@ -44,7 +44,7 @@ namespace Aws {
44
44
// The SSO Token Provider
45
45
Aws::Auth::SSOBearerTokenProvider m_bearerTokenProvider;
46
46
// The client configuration to use
47
- std::shared_ptr<const Client::ClientConfiguration> m_config;
47
+ std::shared_ptr<const Aws:: Client::ClientConfiguration> m_config;
48
48
49
49
void Reload () override ;
50
50
void RefreshIfExpired ();
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace Aws
24
24
public:
25
25
SSOBearerTokenProvider ();
26
26
explicit SSOBearerTokenProvider (const Aws::String& awsProfile);
27
- explicit SSOBearerTokenProvider (const Aws::String& awsProfile, std::shared_ptr<const Client::ClientConfiguration> config);
27
+ explicit SSOBearerTokenProvider (const Aws::String& awsProfile, std::shared_ptr<const Aws:: Client::ClientConfiguration> config);
28
28
/* *
29
29
* Retrieves the bearerToken if found, otherwise returns empty credential set.
30
30
*/
@@ -49,7 +49,7 @@ namespace Aws
49
49
// Profile description variables
50
50
Aws::UniquePtr<Aws::Internal::SSOCredentialsClient> m_client;
51
51
Aws::String m_profileToUse;
52
- std::shared_ptr<const Client::ClientConfiguration> m_config;
52
+ std::shared_ptr<const Aws:: Client::ClientConfiguration> m_config;
53
53
54
54
mutable Aws::Auth::AWSBearerToken m_token;
55
55
mutable Aws::Utils::DateTime m_lastUpdateAttempt;
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ SSOCredentialsProvider::SSOCredentialsProvider(const Aws::String& profile) : SSO
36
36
{
37
37
}
38
38
39
- SSOCredentialsProvider::SSOCredentialsProvider (const Aws::String& profile, std::shared_ptr<const Client::ClientConfiguration> config) :
39
+ SSOCredentialsProvider::SSOCredentialsProvider (const Aws::String& profile, std::shared_ptr<const Aws:: Client::ClientConfiguration> config) :
40
40
m_profileToUse(profile),
41
41
m_bearerTokenProvider(profile),
42
42
m_config(std::move(config))
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ SSOBearerTokenProvider::SSOBearerTokenProvider(const Aws::String& awsProfile) :
35
35
{
36
36
}
37
37
38
- SSOBearerTokenProvider::SSOBearerTokenProvider (const Aws::String& awsProfile, std::shared_ptr<const Client::ClientConfiguration> config)
38
+ SSOBearerTokenProvider::SSOBearerTokenProvider (const Aws::String& awsProfile, std::shared_ptr<const Aws:: Client::ClientConfiguration> config)
39
39
: m_profileToUse(awsProfile),
40
40
m_config(config ? std::move(config) : Aws::MakeShared<Client::ClientConfiguration>(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG)),
41
41
m_lastUpdateAttempt((int64_t )0)
You can’t perform that action at this time.
0 commit comments