68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
|
|
/**
|
|||
|
|
* 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/AWSMigrationHub/model/MigrationTask.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace MigrationHub
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_MIGRATIONHUB_API DescribeMigrationTaskResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DescribeMigrationTaskResult();
|
|||
|
|
DescribeMigrationTaskResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
DescribeMigrationTaskResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Object encapsulating information about the migration task.</p>
|
|||
|
|
*/
|
|||
|
|
inline const MigrationTask& GetMigrationTask() const{ return m_migrationTask; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Object encapsulating information about the migration task.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMigrationTask(const MigrationTask& value) { m_migrationTask = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Object encapsulating information about the migration task.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMigrationTask(MigrationTask&& value) { m_migrationTask = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Object encapsulating information about the migration task.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeMigrationTaskResult& WithMigrationTask(const MigrationTask& value) { SetMigrationTask(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Object encapsulating information about the migration task.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeMigrationTaskResult& WithMigrationTask(MigrationTask&& value) { SetMigrationTask(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
MigrationTask m_migrationTask;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace MigrationHub
|
|||
|
|
} // namespace Aws
|