/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace WellArchitected { namespace Model { /** *

The differences between the base and latest versions of the * lens.

See Also:

AWS * API Reference

*/ class VersionDifferences { public: AWS_WELLARCHITECTED_API VersionDifferences(); AWS_WELLARCHITECTED_API VersionDifferences(Aws::Utils::Json::JsonView jsonValue); AWS_WELLARCHITECTED_API VersionDifferences& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_WELLARCHITECTED_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The differences between the base and latest versions of the lens.

*/ inline const Aws::Vector& GetPillarDifferences() const{ return m_pillarDifferences; } /** *

The differences between the base and latest versions of the lens.

*/ inline bool PillarDifferencesHasBeenSet() const { return m_pillarDifferencesHasBeenSet; } /** *

The differences between the base and latest versions of the lens.

*/ inline void SetPillarDifferences(const Aws::Vector& value) { m_pillarDifferencesHasBeenSet = true; m_pillarDifferences = value; } /** *

The differences between the base and latest versions of the lens.

*/ inline void SetPillarDifferences(Aws::Vector&& value) { m_pillarDifferencesHasBeenSet = true; m_pillarDifferences = std::move(value); } /** *

The differences between the base and latest versions of the lens.

*/ inline VersionDifferences& WithPillarDifferences(const Aws::Vector& value) { SetPillarDifferences(value); return *this;} /** *

The differences between the base and latest versions of the lens.

*/ inline VersionDifferences& WithPillarDifferences(Aws::Vector&& value) { SetPillarDifferences(std::move(value)); return *this;} /** *

The differences between the base and latest versions of the lens.

*/ inline VersionDifferences& AddPillarDifferences(const PillarDifference& value) { m_pillarDifferencesHasBeenSet = true; m_pillarDifferences.push_back(value); return *this; } /** *

The differences between the base and latest versions of the lens.

*/ inline VersionDifferences& AddPillarDifferences(PillarDifference&& value) { m_pillarDifferencesHasBeenSet = true; m_pillarDifferences.push_back(std::move(value)); return *this; } private: Aws::Vector m_pillarDifferences; bool m_pillarDifferencesHasBeenSet = false; }; } // namespace Model } // namespace WellArchitected } // namespace Aws