AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListDeliveryStreamsRequest.h
1
6#pragma once
7#include <aws/firehose/Firehose_EXPORTS.h>
8#include <aws/firehose/FirehoseRequest.h>
9#include <aws/firehose/model/DeliveryStreamType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Firehose
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_FIREHOSE_API ListDeliveryStreamsRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListDeliveryStreams"; }
32
33 AWS_FIREHOSE_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline int GetLimit() const { return m_limit; }
43 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
44 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
45 inline ListDeliveryStreamsRequest& WithLimit(int value) { SetLimit(value); return *this;}
47
49
57 inline DeliveryStreamType GetDeliveryStreamType() const { return m_deliveryStreamType; }
58 inline bool DeliveryStreamTypeHasBeenSet() const { return m_deliveryStreamTypeHasBeenSet; }
59 inline void SetDeliveryStreamType(DeliveryStreamType value) { m_deliveryStreamTypeHasBeenSet = true; m_deliveryStreamType = value; }
62
64
70 inline const Aws::String& GetExclusiveStartDeliveryStreamName() const { return m_exclusiveStartDeliveryStreamName; }
71 inline bool ExclusiveStartDeliveryStreamNameHasBeenSet() const { return m_exclusiveStartDeliveryStreamNameHasBeenSet; }
72 template<typename ExclusiveStartDeliveryStreamNameT = Aws::String>
73 void SetExclusiveStartDeliveryStreamName(ExclusiveStartDeliveryStreamNameT&& value) { m_exclusiveStartDeliveryStreamNameHasBeenSet = true; m_exclusiveStartDeliveryStreamName = std::forward<ExclusiveStartDeliveryStreamNameT>(value); }
74 template<typename ExclusiveStartDeliveryStreamNameT = Aws::String>
75 ListDeliveryStreamsRequest& WithExclusiveStartDeliveryStreamName(ExclusiveStartDeliveryStreamNameT&& value) { SetExclusiveStartDeliveryStreamName(std::forward<ExclusiveStartDeliveryStreamNameT>(value)); return *this;}
77 private:
78
79 int m_limit{0};
80 bool m_limitHasBeenSet = false;
81
83 bool m_deliveryStreamTypeHasBeenSet = false;
84
85 Aws::String m_exclusiveStartDeliveryStreamName;
86 bool m_exclusiveStartDeliveryStreamNameHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace Firehose
91} // namespace Aws
void SetExclusiveStartDeliveryStreamName(ExclusiveStartDeliveryStreamNameT &&value)
ListDeliveryStreamsRequest & WithExclusiveStartDeliveryStreamName(ExclusiveStartDeliveryStreamNameT &&value)
virtual const char * GetServiceRequestName() const override
ListDeliveryStreamsRequest & WithLimit(int value)
AWS_FIREHOSE_API Aws::String SerializePayload() const override
ListDeliveryStreamsRequest & WithDeliveryStreamType(DeliveryStreamType value)
AWS_FIREHOSE_API ListDeliveryStreamsRequest()=default
AWS_FIREHOSE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String