75 lines
1.4 KiB
C++
75 lines
1.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/es/model/DomainEndpointOptionsStatus.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ElasticsearchService
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
DomainEndpointOptionsStatus::DomainEndpointOptionsStatus() :
|
|
m_optionsHasBeenSet(false),
|
|
m_statusHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
DomainEndpointOptionsStatus::DomainEndpointOptionsStatus(JsonView jsonValue) :
|
|
m_optionsHasBeenSet(false),
|
|
m_statusHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
DomainEndpointOptionsStatus& DomainEndpointOptionsStatus::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Options"))
|
|
{
|
|
m_options = jsonValue.GetObject("Options");
|
|
|
|
m_optionsHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Status"))
|
|
{
|
|
m_status = jsonValue.GetObject("Status");
|
|
|
|
m_statusHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue DomainEndpointOptionsStatus::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_optionsHasBeenSet)
|
|
{
|
|
payload.WithObject("Options", m_options.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_statusHasBeenSet)
|
|
{
|
|
payload.WithObject("Status", m_status.Jsonize());
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace ElasticsearchService
|
|
} // namespace Aws
|