/** * 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 CodeDeploy { namespace Model { AppSpecContent::AppSpecContent() : m_contentHasBeenSet(false), m_sha256HasBeenSet(false) { } AppSpecContent::AppSpecContent(JsonView jsonValue) : m_contentHasBeenSet(false), m_sha256HasBeenSet(false) { *this = jsonValue; } AppSpecContent& AppSpecContent::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("content")) { m_content = jsonValue.GetString("content"); m_contentHasBeenSet = true; } if(jsonValue.ValueExists("sha256")) { m_sha256 = jsonValue.GetString("sha256"); m_sha256HasBeenSet = true; } return *this; } JsonValue AppSpecContent::Jsonize() const { JsonValue payload; if(m_contentHasBeenSet) { payload.WithString("content", m_content); } if(m_sha256HasBeenSet) { payload.WithString("sha256", m_sha256); } return payload; } } // namespace Model } // namespace CodeDeploy } // namespace Aws