/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/vpc-lattice/model/Target.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace VPCLattice { namespace Model { Target::Target() : m_idHasBeenSet(false), m_port(0), m_portHasBeenSet(false) { } Target::Target(JsonView jsonValue) : m_idHasBeenSet(false), m_port(0), m_portHasBeenSet(false) { *this = jsonValue; } Target& Target::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("id")) { m_id = jsonValue.GetString("id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("port")) { m_port = jsonValue.GetInteger("port"); m_portHasBeenSet = true; } return *this; } JsonValue Target::Jsonize() const { JsonValue payload; if(m_idHasBeenSet) { payload.WithString("id", m_id); } if(m_portHasBeenSet) { payload.WithInteger("port", m_port); } return payload; } } // namespace Model } // namespace VPCLattice } // namespace Aws