AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeDeliveryChannelStatusRequest.h
1
6#pragma once
7#include <aws/config/ConfigService_EXPORTS.h>
8#include <aws/config/ConfigServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ConfigService
16{
17namespace Model
18{
19
27 {
28 public:
29 AWS_CONFIGSERVICE_API DescribeDeliveryChannelStatusRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DescribeDeliveryChannelStatus"; }
36
37 AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override;
38
39 AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
40
41
43
46 inline const Aws::Vector<Aws::String>& GetDeliveryChannelNames() const { return m_deliveryChannelNames; }
47 inline bool DeliveryChannelNamesHasBeenSet() const { return m_deliveryChannelNamesHasBeenSet; }
48 template<typename DeliveryChannelNamesT = Aws::Vector<Aws::String>>
49 void SetDeliveryChannelNames(DeliveryChannelNamesT&& value) { m_deliveryChannelNamesHasBeenSet = true; m_deliveryChannelNames = std::forward<DeliveryChannelNamesT>(value); }
50 template<typename DeliveryChannelNamesT = Aws::Vector<Aws::String>>
51 DescribeDeliveryChannelStatusRequest& WithDeliveryChannelNames(DeliveryChannelNamesT&& value) { SetDeliveryChannelNames(std::forward<DeliveryChannelNamesT>(value)); return *this;}
52 template<typename DeliveryChannelNamesT = Aws::String>
53 DescribeDeliveryChannelStatusRequest& AddDeliveryChannelNames(DeliveryChannelNamesT&& value) { m_deliveryChannelNamesHasBeenSet = true; m_deliveryChannelNames.emplace_back(std::forward<DeliveryChannelNamesT>(value)); return *this; }
55 private:
56
57 Aws::Vector<Aws::String> m_deliveryChannelNames;
58 bool m_deliveryChannelNamesHasBeenSet = false;
59 };
60
61} // namespace Model
62} // namespace ConfigService
63} // namespace Aws
AWS_CONFIGSERVICE_API DescribeDeliveryChannelStatusRequest()=default
AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeDeliveryChannelStatusRequest & WithDeliveryChannelNames(DeliveryChannelNamesT &&value)
DescribeDeliveryChannelStatusRequest & AddDeliveryChannelNames(DeliveryChannelNamesT &&value)
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector