/** * 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 DatabaseMigrationService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DeleteReplicationTaskAssessmentRunRequest : public DatabaseMigrationServiceRequest { public: AWS_DATABASEMIGRATIONSERVICE_API DeleteReplicationTaskAssessmentRunRequest(); // 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 "DeleteReplicationTaskAssessmentRun"; } AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override; AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline const Aws::String& GetReplicationTaskAssessmentRunArn() const{ return m_replicationTaskAssessmentRunArn; } /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline bool ReplicationTaskAssessmentRunArnHasBeenSet() const { return m_replicationTaskAssessmentRunArnHasBeenSet; } /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline void SetReplicationTaskAssessmentRunArn(const Aws::String& value) { m_replicationTaskAssessmentRunArnHasBeenSet = true; m_replicationTaskAssessmentRunArn = value; } /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline void SetReplicationTaskAssessmentRunArn(Aws::String&& value) { m_replicationTaskAssessmentRunArnHasBeenSet = true; m_replicationTaskAssessmentRunArn = std::move(value); } /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline void SetReplicationTaskAssessmentRunArn(const char* value) { m_replicationTaskAssessmentRunArnHasBeenSet = true; m_replicationTaskAssessmentRunArn.assign(value); } /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline DeleteReplicationTaskAssessmentRunRequest& WithReplicationTaskAssessmentRunArn(const Aws::String& value) { SetReplicationTaskAssessmentRunArn(value); return *this;} /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline DeleteReplicationTaskAssessmentRunRequest& WithReplicationTaskAssessmentRunArn(Aws::String&& value) { SetReplicationTaskAssessmentRunArn(std::move(value)); return *this;} /** *

Amazon Resource Name (ARN) of the premigration assessment run to be * deleted.

*/ inline DeleteReplicationTaskAssessmentRunRequest& WithReplicationTaskAssessmentRunArn(const char* value) { SetReplicationTaskAssessmentRunArn(value); return *this;} private: Aws::String m_replicationTaskAssessmentRunArn; bool m_replicationTaskAssessmentRunArnHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws