75 lines
1.3 KiB
C++
75 lines
1.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/amplify/model/Artifact.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Amplify
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
Artifact::Artifact() :
|
|
m_artifactFileNameHasBeenSet(false),
|
|
m_artifactIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Artifact::Artifact(JsonView jsonValue) :
|
|
m_artifactFileNameHasBeenSet(false),
|
|
m_artifactIdHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
Artifact& Artifact::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("artifactFileName"))
|
|
{
|
|
m_artifactFileName = jsonValue.GetString("artifactFileName");
|
|
|
|
m_artifactFileNameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("artifactId"))
|
|
{
|
|
m_artifactId = jsonValue.GetString("artifactId");
|
|
|
|
m_artifactIdHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue Artifact::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_artifactFileNameHasBeenSet)
|
|
{
|
|
payload.WithString("artifactFileName", m_artifactFileName);
|
|
|
|
}
|
|
|
|
if(m_artifactIdHasBeenSet)
|
|
{
|
|
payload.WithString("artifactId", m_artifactId);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Amplify
|
|
} // namespace Aws
|