Skip to content

Commit 27f6d0e

Browse files
committed
Fix MSVC CI.
1 parent 153fdff commit 27f6d0e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/aws-cpp-sdk-core/include/aws/core/auth/SSOCredentialsProvider.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Aws {
2121
public:
2222
SSOCredentialsProvider();
2323
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);
2525
/**
2626
* Retrieves the credentials if found, otherwise returns empty credential set.
2727
*/
@@ -44,7 +44,7 @@ namespace Aws {
4444
// The SSO Token Provider
4545
Aws::Auth::SSOBearerTokenProvider m_bearerTokenProvider;
4646
// The client configuration to use
47-
std::shared_ptr<const Client::ClientConfiguration> m_config;
47+
std::shared_ptr<const Aws::Client::ClientConfiguration> m_config;
4848

4949
void Reload() override;
5050
void RefreshIfExpired();

src/aws-cpp-sdk-core/include/aws/core/auth/bearer-token-provider/SSOBearerTokenProvider.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace Aws
2424
public:
2525
SSOBearerTokenProvider();
2626
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);
2828
/**
2929
* Retrieves the bearerToken if found, otherwise returns empty credential set.
3030
*/
@@ -49,7 +49,7 @@ namespace Aws
4949
// Profile description variables
5050
Aws::UniquePtr<Aws::Internal::SSOCredentialsClient> m_client;
5151
Aws::String m_profileToUse;
52-
std::shared_ptr<const Client::ClientConfiguration> m_config;
52+
std::shared_ptr<const Aws::Client::ClientConfiguration> m_config;
5353

5454
mutable Aws::Auth::AWSBearerToken m_token;
5555
mutable Aws::Utils::DateTime m_lastUpdateAttempt;

src/aws-cpp-sdk-core/source/auth/SSOCredentialsProvider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ SSOCredentialsProvider::SSOCredentialsProvider(const Aws::String& profile) : SSO
3636
{
3737
}
3838

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) :
4040
m_profileToUse(profile),
4141
m_bearerTokenProvider(profile),
4242
m_config(std::move(config))

src/aws-cpp-sdk-core/source/auth/bearer-token-provider/SSOBearerTokenProvider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ SSOBearerTokenProvider::SSOBearerTokenProvider(const Aws::String& awsProfile) :
3535
{
3636
}
3737

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)
3939
: m_profileToUse(awsProfile),
4040
m_config(config ? std::move(config) : Aws::MakeShared<Client::ClientConfiguration>(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG)),
4141
m_lastUpdateAttempt((int64_t)0)

0 commit comments

Comments
 (0)