/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A nested application summary.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the nested application.
*/ inline const Aws::String& GetApplicationId() const{ return m_applicationId; } /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; } /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; } /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); } /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); } /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline ApplicationDependencySummary& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;} /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline ApplicationDependencySummary& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the nested application.
*/ inline ApplicationDependencySummary& WithApplicationId(const char* value) { SetApplicationId(value); return *this;} /** *The semantic version of the nested application.
*/ inline const Aws::String& GetSemanticVersion() const{ return m_semanticVersion; } /** *The semantic version of the nested application.
*/ inline bool SemanticVersionHasBeenSet() const { return m_semanticVersionHasBeenSet; } /** *The semantic version of the nested application.
*/ inline void SetSemanticVersion(const Aws::String& value) { m_semanticVersionHasBeenSet = true; m_semanticVersion = value; } /** *The semantic version of the nested application.
*/ inline void SetSemanticVersion(Aws::String&& value) { m_semanticVersionHasBeenSet = true; m_semanticVersion = std::move(value); } /** *The semantic version of the nested application.
*/ inline void SetSemanticVersion(const char* value) { m_semanticVersionHasBeenSet = true; m_semanticVersion.assign(value); } /** *The semantic version of the nested application.
*/ inline ApplicationDependencySummary& WithSemanticVersion(const Aws::String& value) { SetSemanticVersion(value); return *this;} /** *The semantic version of the nested application.
*/ inline ApplicationDependencySummary& WithSemanticVersion(Aws::String&& value) { SetSemanticVersion(std::move(value)); return *this;} /** *The semantic version of the nested application.
*/ inline ApplicationDependencySummary& WithSemanticVersion(const char* value) { SetSemanticVersion(value); return *this;} private: Aws::String m_applicationId; bool m_applicationIdHasBeenSet = false; Aws::String m_semanticVersion; bool m_semanticVersionHasBeenSet = false; }; } // namespace Model } // namespace ServerlessApplicationRepository } // namespace Aws