90 lines
1.6 KiB
C++
90 lines
1.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/gamelift/model/AwsCredentials.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace GameLift
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
AwsCredentials::AwsCredentials() :
|
|
m_accessKeyIdHasBeenSet(false),
|
|
m_secretAccessKeyHasBeenSet(false),
|
|
m_sessionTokenHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
AwsCredentials::AwsCredentials(JsonView jsonValue) :
|
|
m_accessKeyIdHasBeenSet(false),
|
|
m_secretAccessKeyHasBeenSet(false),
|
|
m_sessionTokenHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
AwsCredentials& AwsCredentials::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("AccessKeyId"))
|
|
{
|
|
m_accessKeyId = jsonValue.GetString("AccessKeyId");
|
|
|
|
m_accessKeyIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("SecretAccessKey"))
|
|
{
|
|
m_secretAccessKey = jsonValue.GetString("SecretAccessKey");
|
|
|
|
m_secretAccessKeyHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("SessionToken"))
|
|
{
|
|
m_sessionToken = jsonValue.GetString("SessionToken");
|
|
|
|
m_sessionTokenHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue AwsCredentials::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_accessKeyIdHasBeenSet)
|
|
{
|
|
payload.WithString("AccessKeyId", m_accessKeyId);
|
|
|
|
}
|
|
|
|
if(m_secretAccessKeyHasBeenSet)
|
|
{
|
|
payload.WithString("SecretAccessKey", m_secretAccessKey);
|
|
|
|
}
|
|
|
|
if(m_sessionTokenHasBeenSet)
|
|
{
|
|
payload.WithString("SessionToken", m_sessionToken);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace GameLift
|
|
} // namespace Aws
|