/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace DAX { namespace Model { Endpoint::Endpoint() : m_addressHasBeenSet(false), m_port(0), m_portHasBeenSet(false), m_uRLHasBeenSet(false) { } Endpoint::Endpoint(JsonView jsonValue) : m_addressHasBeenSet(false), m_port(0), m_portHasBeenSet(false), m_uRLHasBeenSet(false) { *this = jsonValue; } Endpoint& Endpoint::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Address")) { m_address = jsonValue.GetString("Address"); m_addressHasBeenSet = true; } if(jsonValue.ValueExists("Port")) { m_port = jsonValue.GetInteger("Port"); m_portHasBeenSet = true; } if(jsonValue.ValueExists("URL")) { m_uRL = jsonValue.GetString("URL"); m_uRLHasBeenSet = true; } return *this; } JsonValue Endpoint::Jsonize() const { JsonValue payload; if(m_addressHasBeenSet) { payload.WithString("Address", m_address); } if(m_portHasBeenSet) { payload.WithInteger("Port", m_port); } if(m_uRLHasBeenSet) { payload.WithString("URL", m_uRL); } return payload; } } // namespace Model } // namespace DAX } // namespace Aws