/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace MigrationHub { namespace Model { /** */ class DeleteProgressUpdateStreamRequest : public MigrationHubRequest { public: AWS_MIGRATIONHUB_API DeleteProgressUpdateStreamRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteProgressUpdateStream"; } AWS_MIGRATIONHUB_API Aws::String SerializePayload() const override; AWS_MIGRATIONHUB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline const Aws::String& GetProgressUpdateStreamName() const{ return m_progressUpdateStreamName; } /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline bool ProgressUpdateStreamNameHasBeenSet() const { return m_progressUpdateStreamNameHasBeenSet; } /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline void SetProgressUpdateStreamName(const Aws::String& value) { m_progressUpdateStreamNameHasBeenSet = true; m_progressUpdateStreamName = value; } /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline void SetProgressUpdateStreamName(Aws::String&& value) { m_progressUpdateStreamNameHasBeenSet = true; m_progressUpdateStreamName = std::move(value); } /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline void SetProgressUpdateStreamName(const char* value) { m_progressUpdateStreamNameHasBeenSet = true; m_progressUpdateStreamName.assign(value); } /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline DeleteProgressUpdateStreamRequest& WithProgressUpdateStreamName(const Aws::String& value) { SetProgressUpdateStreamName(value); return *this;} /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline DeleteProgressUpdateStreamRequest& WithProgressUpdateStreamName(Aws::String&& value) { SetProgressUpdateStreamName(std::move(value)); return *this;} /** *

The name of the ProgressUpdateStream. Do not store personal data in this * field.

*/ inline DeleteProgressUpdateStreamRequest& WithProgressUpdateStreamName(const char* value) { SetProgressUpdateStreamName(value); return *this;} /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline DeleteProgressUpdateStreamRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_progressUpdateStreamName; bool m_progressUpdateStreamNameHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace MigrationHub } // namespace Aws