This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

169 lines
5.7 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/AWSMigrationHub/MigrationHub_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/AWSMigrationHub/model/ApplicationStatus.h>
#include <aws/core/utils/DateTime.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace MigrationHub
{
namespace Model
{
/**
* <p>The state of an application discovered through Migration Hub import, the AWS
* Agentless Discovery Connector, or the AWS Application Discovery
* Agent.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/AWSMigrationHub-2017-05-31/ApplicationState">AWS
* API Reference</a></p>
*/
class AWS_MIGRATIONHUB_API ApplicationState
{
public:
ApplicationState();
ApplicationState(Aws::Utils::Json::JsonView jsonValue);
ApplicationState& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline ApplicationState& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline ApplicationState& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
/**
* <p>The configurationId from the Application Discovery Service that uniquely
* identifies an application.</p>
*/
inline ApplicationState& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
/**
* <p>The current status of an application.</p>
*/
inline const ApplicationStatus& GetApplicationStatus() const{ return m_applicationStatus; }
/**
* <p>The current status of an application.</p>
*/
inline bool ApplicationStatusHasBeenSet() const { return m_applicationStatusHasBeenSet; }
/**
* <p>The current status of an application.</p>
*/
inline void SetApplicationStatus(const ApplicationStatus& value) { m_applicationStatusHasBeenSet = true; m_applicationStatus = value; }
/**
* <p>The current status of an application.</p>
*/
inline void SetApplicationStatus(ApplicationStatus&& value) { m_applicationStatusHasBeenSet = true; m_applicationStatus = std::move(value); }
/**
* <p>The current status of an application.</p>
*/
inline ApplicationState& WithApplicationStatus(const ApplicationStatus& value) { SetApplicationStatus(value); return *this;}
/**
* <p>The current status of an application.</p>
*/
inline ApplicationState& WithApplicationStatus(ApplicationStatus&& value) { SetApplicationStatus(std::move(value)); return *this;}
/**
* <p>The timestamp when the application status was last updated.</p>
*/
inline const Aws::Utils::DateTime& GetLastUpdatedTime() const{ return m_lastUpdatedTime; }
/**
* <p>The timestamp when the application status was last updated.</p>
*/
inline bool LastUpdatedTimeHasBeenSet() const { return m_lastUpdatedTimeHasBeenSet; }
/**
* <p>The timestamp when the application status was last updated.</p>
*/
inline void SetLastUpdatedTime(const Aws::Utils::DateTime& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = value; }
/**
* <p>The timestamp when the application status was last updated.</p>
*/
inline void SetLastUpdatedTime(Aws::Utils::DateTime&& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = std::move(value); }
/**
* <p>The timestamp when the application status was last updated.</p>
*/
inline ApplicationState& WithLastUpdatedTime(const Aws::Utils::DateTime& value) { SetLastUpdatedTime(value); return *this;}
/**
* <p>The timestamp when the application status was last updated.</p>
*/
inline ApplicationState& WithLastUpdatedTime(Aws::Utils::DateTime&& value) { SetLastUpdatedTime(std::move(value)); return *this;}
private:
Aws::String m_applicationId;
bool m_applicationIdHasBeenSet;
ApplicationStatus m_applicationStatus;
bool m_applicationStatusHasBeenSet;
Aws::Utils::DateTime m_lastUpdatedTime;
bool m_lastUpdatedTimeHasBeenSet;
};
} // namespace Model
} // namespace MigrationHub
} // namespace Aws