/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a deployment application configuration.See
* Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the robot application.
*/ inline const Aws::String& GetApplication() const{ return m_application; } /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline bool ApplicationHasBeenSet() const { return m_applicationHasBeenSet; } /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline void SetApplication(const Aws::String& value) { m_applicationHasBeenSet = true; m_application = value; } /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline void SetApplication(Aws::String&& value) { m_applicationHasBeenSet = true; m_application = std::move(value); } /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline void SetApplication(const char* value) { m_applicationHasBeenSet = true; m_application.assign(value); } /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline DeploymentApplicationConfig& WithApplication(const Aws::String& value) { SetApplication(value); return *this;} /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline DeploymentApplicationConfig& WithApplication(Aws::String&& value) { SetApplication(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the robot application.
*/ inline DeploymentApplicationConfig& WithApplication(const char* value) { SetApplication(value); return *this;} /** *The version of the application.
*/ inline const Aws::String& GetApplicationVersion() const{ return m_applicationVersion; } /** *The version of the application.
*/ inline bool ApplicationVersionHasBeenSet() const { return m_applicationVersionHasBeenSet; } /** *The version of the application.
*/ inline void SetApplicationVersion(const Aws::String& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = value; } /** *The version of the application.
*/ inline void SetApplicationVersion(Aws::String&& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = std::move(value); } /** *The version of the application.
*/ inline void SetApplicationVersion(const char* value) { m_applicationVersionHasBeenSet = true; m_applicationVersion.assign(value); } /** *The version of the application.
*/ inline DeploymentApplicationConfig& WithApplicationVersion(const Aws::String& value) { SetApplicationVersion(value); return *this;} /** *The version of the application.
*/ inline DeploymentApplicationConfig& WithApplicationVersion(Aws::String&& value) { SetApplicationVersion(std::move(value)); return *this;} /** *The version of the application.
*/ inline DeploymentApplicationConfig& WithApplicationVersion(const char* value) { SetApplicationVersion(value); return *this;} /** *The launch configuration.
*/ inline const DeploymentLaunchConfig& GetLaunchConfig() const{ return m_launchConfig; } /** *The launch configuration.
*/ inline bool LaunchConfigHasBeenSet() const { return m_launchConfigHasBeenSet; } /** *The launch configuration.
*/ inline void SetLaunchConfig(const DeploymentLaunchConfig& value) { m_launchConfigHasBeenSet = true; m_launchConfig = value; } /** *The launch configuration.
*/ inline void SetLaunchConfig(DeploymentLaunchConfig&& value) { m_launchConfigHasBeenSet = true; m_launchConfig = std::move(value); } /** *The launch configuration.
*/ inline DeploymentApplicationConfig& WithLaunchConfig(const DeploymentLaunchConfig& value) { SetLaunchConfig(value); return *this;} /** *The launch configuration.
*/ inline DeploymentApplicationConfig& WithLaunchConfig(DeploymentLaunchConfig&& value) { SetLaunchConfig(std::move(value)); return *this;} private: Aws::String m_application; bool m_applicationHasBeenSet; Aws::String m_applicationVersion; bool m_applicationVersionHasBeenSet; DeploymentLaunchConfig m_launchConfig; bool m_launchConfigHasBeenSet; }; } // namespace Model } // namespace RoboMaker } // namespace Aws