1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #pragma once 7 #include <aws/config/ConfigService_EXPORTS.h> 8 #include <aws/config/ConfigServiceRequest.h> 9 #include <aws/core/utils/memory/stl/AWSString.h> 10 #include <utility> 11 12 namespace Aws 13 { 14 namespace ConfigService 15 { 16 namespace Model 17 { 18 19 /** 20 * <p>The input for the <a>DeleteDeliveryChannel</a> action. The action accepts the 21 * following data, in JSON format. </p><p><h3>See Also:</h3> <a 22 * href="http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteDeliveryChannelRequest">AWS 23 * API Reference</a></p> 24 */ 25 class AWS_CONFIGSERVICE_API DeleteDeliveryChannelRequest : public ConfigServiceRequest 26 { 27 public: 28 DeleteDeliveryChannelRequest(); 29 30 // Service request name is the Operation name which will send this request out, 31 // each operation should has unique request name, so that we can get operation's name from this request. 32 // Note: this is not true for response, multiple operations may have the same response name, 33 // so we can not get operation's name from response. GetServiceRequestName()34 inline virtual const char* GetServiceRequestName() const override { return "DeleteDeliveryChannel"; } 35 36 Aws::String SerializePayload() const override; 37 38 Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; 39 40 41 /** 42 * <p>The name of the delivery channel to delete.</p> 43 */ GetDeliveryChannelName()44 inline const Aws::String& GetDeliveryChannelName() const{ return m_deliveryChannelName; } 45 46 /** 47 * <p>The name of the delivery channel to delete.</p> 48 */ DeliveryChannelNameHasBeenSet()49 inline bool DeliveryChannelNameHasBeenSet() const { return m_deliveryChannelNameHasBeenSet; } 50 51 /** 52 * <p>The name of the delivery channel to delete.</p> 53 */ SetDeliveryChannelName(const Aws::String & value)54 inline void SetDeliveryChannelName(const Aws::String& value) { m_deliveryChannelNameHasBeenSet = true; m_deliveryChannelName = value; } 55 56 /** 57 * <p>The name of the delivery channel to delete.</p> 58 */ SetDeliveryChannelName(Aws::String && value)59 inline void SetDeliveryChannelName(Aws::String&& value) { m_deliveryChannelNameHasBeenSet = true; m_deliveryChannelName = std::move(value); } 60 61 /** 62 * <p>The name of the delivery channel to delete.</p> 63 */ SetDeliveryChannelName(const char * value)64 inline void SetDeliveryChannelName(const char* value) { m_deliveryChannelNameHasBeenSet = true; m_deliveryChannelName.assign(value); } 65 66 /** 67 * <p>The name of the delivery channel to delete.</p> 68 */ WithDeliveryChannelName(const Aws::String & value)69 inline DeleteDeliveryChannelRequest& WithDeliveryChannelName(const Aws::String& value) { SetDeliveryChannelName(value); return *this;} 70 71 /** 72 * <p>The name of the delivery channel to delete.</p> 73 */ WithDeliveryChannelName(Aws::String && value)74 inline DeleteDeliveryChannelRequest& WithDeliveryChannelName(Aws::String&& value) { SetDeliveryChannelName(std::move(value)); return *this;} 75 76 /** 77 * <p>The name of the delivery channel to delete.</p> 78 */ WithDeliveryChannelName(const char * value)79 inline DeleteDeliveryChannelRequest& WithDeliveryChannelName(const char* value) { SetDeliveryChannelName(value); return *this;} 80 81 private: 82 83 Aws::String m_deliveryChannelName; 84 bool m_deliveryChannelNameHasBeenSet; 85 }; 86 87 } // namespace Model 88 } // namespace ConfigService 89 } // namespace Aws 90