/** * 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 Synthetics { namespace Model { CanaryRun::CanaryRun() : m_idHasBeenSet(false), m_nameHasBeenSet(false), m_statusHasBeenSet(false), m_timelineHasBeenSet(false), m_artifactS3LocationHasBeenSet(false) { } CanaryRun::CanaryRun(JsonView jsonValue) : m_idHasBeenSet(false), m_nameHasBeenSet(false), m_statusHasBeenSet(false), m_timelineHasBeenSet(false), m_artifactS3LocationHasBeenSet(false) { *this = jsonValue; } CanaryRun& CanaryRun::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Id")) { m_id = jsonValue.GetString("Id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("Name")) { m_name = jsonValue.GetString("Name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("Status")) { m_status = jsonValue.GetObject("Status"); m_statusHasBeenSet = true; } if(jsonValue.ValueExists("Timeline")) { m_timeline = jsonValue.GetObject("Timeline"); m_timelineHasBeenSet = true; } if(jsonValue.ValueExists("ArtifactS3Location")) { m_artifactS3Location = jsonValue.GetString("ArtifactS3Location"); m_artifactS3LocationHasBeenSet = true; } return *this; } JsonValue CanaryRun::Jsonize() const { JsonValue payload; if(m_idHasBeenSet) { payload.WithString("Id", m_id); } if(m_nameHasBeenSet) { payload.WithString("Name", m_name); } if(m_statusHasBeenSet) { payload.WithObject("Status", m_status.Jsonize()); } if(m_timelineHasBeenSet) { payload.WithObject("Timeline", m_timeline.Jsonize()); } if(m_artifactS3LocationHasBeenSet) { payload.WithString("ArtifactS3Location", m_artifactS3Location); } return payload; } } // namespace Model } // namespace Synthetics } // namespace Aws