/** * 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 GlobalAccelerator { namespace Model { CustomRoutingEndpointConfiguration::CustomRoutingEndpointConfiguration() : m_endpointIdHasBeenSet(false) { } CustomRoutingEndpointConfiguration::CustomRoutingEndpointConfiguration(JsonView jsonValue) : m_endpointIdHasBeenSet(false) { *this = jsonValue; } CustomRoutingEndpointConfiguration& CustomRoutingEndpointConfiguration::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("EndpointId")) { m_endpointId = jsonValue.GetString("EndpointId"); m_endpointIdHasBeenSet = true; } return *this; } JsonValue CustomRoutingEndpointConfiguration::Jsonize() const { JsonValue payload; if(m_endpointIdHasBeenSet) { payload.WithString("EndpointId", m_endpointId); } return payload; } } // namespace Model } // namespace GlobalAccelerator } // namespace Aws