AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DescribeDeliveryStreamRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/firehose/FirehoseRequest.h>
9#include <aws/firehose/Firehose_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Firehose {
15namespace Model {
16
20 public:
21 AWS_FIREHOSE_API DescribeDeliveryStreamRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeDeliveryStream"; }
28
29 AWS_FIREHOSE_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetDeliveryStreamName() const { return m_deliveryStreamName; }
38 inline bool DeliveryStreamNameHasBeenSet() const { return m_deliveryStreamNameHasBeenSet; }
39 template <typename DeliveryStreamNameT = Aws::String>
40 void SetDeliveryStreamName(DeliveryStreamNameT&& value) {
41 m_deliveryStreamNameHasBeenSet = true;
42 m_deliveryStreamName = std::forward<DeliveryStreamNameT>(value);
43 }
44 template <typename DeliveryStreamNameT = Aws::String>
46 SetDeliveryStreamName(std::forward<DeliveryStreamNameT>(value));
47 return *this;
48 }
50
52
56 inline int GetLimit() const { return m_limit; }
57 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
58 inline void SetLimit(int value) {
59 m_limitHasBeenSet = true;
60 m_limit = value;
61 }
63 SetLimit(value);
64 return *this;
65 }
67
69
73 inline const Aws::String& GetExclusiveStartDestinationId() const { return m_exclusiveStartDestinationId; }
74 inline bool ExclusiveStartDestinationIdHasBeenSet() const { return m_exclusiveStartDestinationIdHasBeenSet; }
75 template <typename ExclusiveStartDestinationIdT = Aws::String>
76 void SetExclusiveStartDestinationId(ExclusiveStartDestinationIdT&& value) {
77 m_exclusiveStartDestinationIdHasBeenSet = true;
78 m_exclusiveStartDestinationId = std::forward<ExclusiveStartDestinationIdT>(value);
79 }
80 template <typename ExclusiveStartDestinationIdT = Aws::String>
81 DescribeDeliveryStreamRequest& WithExclusiveStartDestinationId(ExclusiveStartDestinationIdT&& value) {
82 SetExclusiveStartDestinationId(std::forward<ExclusiveStartDestinationIdT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_deliveryStreamName;
88
89 int m_limit{0};
90
91 Aws::String m_exclusiveStartDestinationId;
92 bool m_deliveryStreamNameHasBeenSet = false;
93 bool m_limitHasBeenSet = false;
94 bool m_exclusiveStartDestinationIdHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace Firehose
99} // namespace Aws
DescribeDeliveryStreamRequest & WithExclusiveStartDestinationId(ExclusiveStartDestinationIdT &&value)
AWS_FIREHOSE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetExclusiveStartDestinationId(ExclusiveStartDestinationIdT &&value)
AWS_FIREHOSE_API DescribeDeliveryStreamRequest()=default
AWS_FIREHOSE_API Aws::String SerializePayload() const override
DescribeDeliveryStreamRequest & WithDeliveryStreamName(DeliveryStreamNameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String