/** * 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 Http { class URI; } //namespace Http namespace WellArchitected { namespace Model { /** */ class GetLensVersionDifferenceRequest : public WellArchitectedRequest { public: AWS_WELLARCHITECTED_API GetLensVersionDifferenceRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetLensVersionDifference"; } AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override; AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; inline const Aws::String& GetLensAlias() const{ return m_lensAlias; } inline bool LensAliasHasBeenSet() const { return m_lensAliasHasBeenSet; } inline void SetLensAlias(const Aws::String& value) { m_lensAliasHasBeenSet = true; m_lensAlias = value; } inline void SetLensAlias(Aws::String&& value) { m_lensAliasHasBeenSet = true; m_lensAlias = std::move(value); } inline void SetLensAlias(const char* value) { m_lensAliasHasBeenSet = true; m_lensAlias.assign(value); } inline GetLensVersionDifferenceRequest& WithLensAlias(const Aws::String& value) { SetLensAlias(value); return *this;} inline GetLensVersionDifferenceRequest& WithLensAlias(Aws::String&& value) { SetLensAlias(std::move(value)); return *this;} inline GetLensVersionDifferenceRequest& WithLensAlias(const char* value) { SetLensAlias(value); return *this;} /** *

The base version of the lens.

*/ inline const Aws::String& GetBaseLensVersion() const{ return m_baseLensVersion; } /** *

The base version of the lens.

*/ inline bool BaseLensVersionHasBeenSet() const { return m_baseLensVersionHasBeenSet; } /** *

The base version of the lens.

*/ inline void SetBaseLensVersion(const Aws::String& value) { m_baseLensVersionHasBeenSet = true; m_baseLensVersion = value; } /** *

The base version of the lens.

*/ inline void SetBaseLensVersion(Aws::String&& value) { m_baseLensVersionHasBeenSet = true; m_baseLensVersion = std::move(value); } /** *

The base version of the lens.

*/ inline void SetBaseLensVersion(const char* value) { m_baseLensVersionHasBeenSet = true; m_baseLensVersion.assign(value); } /** *

The base version of the lens.

*/ inline GetLensVersionDifferenceRequest& WithBaseLensVersion(const Aws::String& value) { SetBaseLensVersion(value); return *this;} /** *

The base version of the lens.

*/ inline GetLensVersionDifferenceRequest& WithBaseLensVersion(Aws::String&& value) { SetBaseLensVersion(std::move(value)); return *this;} /** *

The base version of the lens.

*/ inline GetLensVersionDifferenceRequest& WithBaseLensVersion(const char* value) { SetBaseLensVersion(value); return *this;} /** *

The lens version to target a difference for.

*/ inline const Aws::String& GetTargetLensVersion() const{ return m_targetLensVersion; } /** *

The lens version to target a difference for.

*/ inline bool TargetLensVersionHasBeenSet() const { return m_targetLensVersionHasBeenSet; } /** *

The lens version to target a difference for.

*/ inline void SetTargetLensVersion(const Aws::String& value) { m_targetLensVersionHasBeenSet = true; m_targetLensVersion = value; } /** *

The lens version to target a difference for.

*/ inline void SetTargetLensVersion(Aws::String&& value) { m_targetLensVersionHasBeenSet = true; m_targetLensVersion = std::move(value); } /** *

The lens version to target a difference for.

*/ inline void SetTargetLensVersion(const char* value) { m_targetLensVersionHasBeenSet = true; m_targetLensVersion.assign(value); } /** *

The lens version to target a difference for.

*/ inline GetLensVersionDifferenceRequest& WithTargetLensVersion(const Aws::String& value) { SetTargetLensVersion(value); return *this;} /** *

The lens version to target a difference for.

*/ inline GetLensVersionDifferenceRequest& WithTargetLensVersion(Aws::String&& value) { SetTargetLensVersion(std::move(value)); return *this;} /** *

The lens version to target a difference for.

*/ inline GetLensVersionDifferenceRequest& WithTargetLensVersion(const char* value) { SetTargetLensVersion(value); return *this;} private: Aws::String m_lensAlias; bool m_lensAliasHasBeenSet = false; Aws::String m_baseLensVersion; bool m_baseLensVersionHasBeenSet = false; Aws::String m_targetLensVersion; bool m_targetLensVersionHasBeenSet = false; }; } // namespace Model } // namespace WellArchitected } // namespace Aws