98 lines
3.3 KiB
C
98 lines
3.3 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/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace MigrationHub
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Summary of the AWS resource used for access control that is implicitly linked
|
|||
|
|
* to your AWS account.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/AWSMigrationHub-2017-05-31/ProgressUpdateStreamSummary">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_MIGRATIONHUB_API ProgressUpdateStreamSummary
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
ProgressUpdateStreamSummary();
|
|||
|
|
ProgressUpdateStreamSummary(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
ProgressUpdateStreamSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetProgressUpdateStreamName() const{ return m_progressUpdateStreamName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline bool ProgressUpdateStreamNameHasBeenSet() const { return m_progressUpdateStreamNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProgressUpdateStreamName(const Aws::String& value) { m_progressUpdateStreamNameHasBeenSet = true; m_progressUpdateStreamName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProgressUpdateStreamName(Aws::String&& value) { m_progressUpdateStreamNameHasBeenSet = true; m_progressUpdateStreamName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProgressUpdateStreamName(const char* value) { m_progressUpdateStreamNameHasBeenSet = true; m_progressUpdateStreamName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline ProgressUpdateStreamSummary& WithProgressUpdateStreamName(const Aws::String& value) { SetProgressUpdateStreamName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline ProgressUpdateStreamSummary& WithProgressUpdateStreamName(Aws::String&& value) { SetProgressUpdateStreamName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the ProgressUpdateStream. <i>Do not store personal data in this
|
|||
|
|
* field.</i> </p>
|
|||
|
|
*/
|
|||
|
|
inline ProgressUpdateStreamSummary& WithProgressUpdateStreamName(const char* value) { SetProgressUpdateStreamName(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_progressUpdateStreamName;
|
|||
|
|
bool m_progressUpdateStreamNameHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace MigrationHub
|
|||
|
|
} // namespace Aws
|