/** * 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 Batch { namespace Model { EksPropertiesDetail::EksPropertiesDetail() : m_podPropertiesHasBeenSet(false) { } EksPropertiesDetail::EksPropertiesDetail(JsonView jsonValue) : m_podPropertiesHasBeenSet(false) { *this = jsonValue; } EksPropertiesDetail& EksPropertiesDetail::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("podProperties")) { m_podProperties = jsonValue.GetObject("podProperties"); m_podPropertiesHasBeenSet = true; } return *this; } JsonValue EksPropertiesDetail::Jsonize() const { JsonValue payload; if(m_podPropertiesHasBeenSet) { payload.WithObject("podProperties", m_podProperties.Jsonize()); } return payload; } } // namespace Model } // namespace Batch } // namespace Aws