/** * 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 drs { namespace Model { /** */ class DeleteReplicationConfigurationTemplateRequest : public DrsRequest { public: AWS_DRS_API DeleteReplicationConfigurationTemplateRequest(); // 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 "DeleteReplicationConfigurationTemplate"; } AWS_DRS_API Aws::String SerializePayload() const override; /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline const Aws::String& GetReplicationConfigurationTemplateID() const{ return m_replicationConfigurationTemplateID; } /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline bool ReplicationConfigurationTemplateIDHasBeenSet() const { return m_replicationConfigurationTemplateIDHasBeenSet; } /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline void SetReplicationConfigurationTemplateID(const Aws::String& value) { m_replicationConfigurationTemplateIDHasBeenSet = true; m_replicationConfigurationTemplateID = value; } /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline void SetReplicationConfigurationTemplateID(Aws::String&& value) { m_replicationConfigurationTemplateIDHasBeenSet = true; m_replicationConfigurationTemplateID = std::move(value); } /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline void SetReplicationConfigurationTemplateID(const char* value) { m_replicationConfigurationTemplateIDHasBeenSet = true; m_replicationConfigurationTemplateID.assign(value); } /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline DeleteReplicationConfigurationTemplateRequest& WithReplicationConfigurationTemplateID(const Aws::String& value) { SetReplicationConfigurationTemplateID(value); return *this;} /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline DeleteReplicationConfigurationTemplateRequest& WithReplicationConfigurationTemplateID(Aws::String&& value) { SetReplicationConfigurationTemplateID(std::move(value)); return *this;} /** *

The ID of the Replication Configuration Template to be deleted.

*/ inline DeleteReplicationConfigurationTemplateRequest& WithReplicationConfigurationTemplateID(const char* value) { SetReplicationConfigurationTemplateID(value); return *this;} private: Aws::String m_replicationConfigurationTemplateID; bool m_replicationConfigurationTemplateIDHasBeenSet = false; }; } // namespace Model } // namespace drs } // namespace Aws