/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input for the PutDeliveryChannel action.See Also:
* AWS
* API Reference
The configuration delivery channel object that delivers the configuration * information to an Amazon S3 bucket and to an Amazon SNS topic.
*/ inline const DeliveryChannel& GetDeliveryChannel() const{ return m_deliveryChannel; } /** *The configuration delivery channel object that delivers the configuration * information to an Amazon S3 bucket and to an Amazon SNS topic.
*/ inline bool DeliveryChannelHasBeenSet() const { return m_deliveryChannelHasBeenSet; } /** *The configuration delivery channel object that delivers the configuration * information to an Amazon S3 bucket and to an Amazon SNS topic.
*/ inline void SetDeliveryChannel(const DeliveryChannel& value) { m_deliveryChannelHasBeenSet = true; m_deliveryChannel = value; } /** *The configuration delivery channel object that delivers the configuration * information to an Amazon S3 bucket and to an Amazon SNS topic.
*/ inline void SetDeliveryChannel(DeliveryChannel&& value) { m_deliveryChannelHasBeenSet = true; m_deliveryChannel = std::move(value); } /** *The configuration delivery channel object that delivers the configuration * information to an Amazon S3 bucket and to an Amazon SNS topic.
*/ inline PutDeliveryChannelRequest& WithDeliveryChannel(const DeliveryChannel& value) { SetDeliveryChannel(value); return *this;} /** *The configuration delivery channel object that delivers the configuration * information to an Amazon S3 bucket and to an Amazon SNS topic.
*/ inline PutDeliveryChannelRequest& WithDeliveryChannel(DeliveryChannel&& value) { SetDeliveryChannel(std::move(value)); return *this;} private: DeliveryChannel m_deliveryChannel; bool m_deliveryChannelHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws