AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 const DeliveryStreamType& GetDeliveryStreamType() const{ return m_deliveryStreamType; }
58 inline bool DeliveryStreamTypeHasBeenSet() const { return m_deliveryStreamTypeHasBeenSet; }
59 inline void SetDeliveryStreamType(const DeliveryStreamType& value) { m_deliveryStreamTypeHasBeenSet = true; m_deliveryStreamType = value; }
60 inline void SetDeliveryStreamType(DeliveryStreamType&& value) { m_deliveryStreamTypeHasBeenSet = true; m_deliveryStreamType = std::move(value); }
64
66
72 inline const Aws::String& GetExclusiveStartDeliveryStreamName() const{ return m_exclusiveStartDeliveryStreamName; }
73 inline bool ExclusiveStartDeliveryStreamNameHasBeenSet() const { return m_exclusiveStartDeliveryStreamNameHasBeenSet; }
74 inline void SetExclusiveStartDeliveryStreamName(const Aws::String& value) { m_exclusiveStartDeliveryStreamNameHasBeenSet = true; m_exclusiveStartDeliveryStreamName = value; }
75 inline void SetExclusiveStartDeliveryStreamName(Aws::String&& value) { m_exclusiveStartDeliveryStreamNameHasBeenSet = true; m_exclusiveStartDeliveryStreamName = std::move(value); }
76 inline void SetExclusiveStartDeliveryStreamName(const char* value) { m_exclusiveStartDeliveryStreamNameHasBeenSet = true; m_exclusiveStartDeliveryStreamName.assign(value); }
81 private:
82
83 int m_limit;
84 bool m_limitHasBeenSet = false;
85
86 DeliveryStreamType m_deliveryStreamType;
87 bool m_deliveryStreamTypeHasBeenSet = false;
88
89 Aws::String m_exclusiveStartDeliveryStreamName;
90 bool m_exclusiveStartDeliveryStreamNameHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace Firehose
95} // namespace Aws
ListDeliveryStreamsRequest & WithExclusiveStartDeliveryStreamName(const char *value)
virtual const char * GetServiceRequestName() const override
ListDeliveryStreamsRequest & WithDeliveryStreamType(DeliveryStreamType &&value)
ListDeliveryStreamsRequest & WithLimit(int value)
AWS_FIREHOSE_API Aws::String SerializePayload() const override
void SetDeliveryStreamType(const DeliveryStreamType &value)
AWS_FIREHOSE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListDeliveryStreamsRequest & WithDeliveryStreamType(const DeliveryStreamType &value)
ListDeliveryStreamsRequest & WithExclusiveStartDeliveryStreamName(Aws::String &&value)
ListDeliveryStreamsRequest & WithExclusiveStartDeliveryStreamName(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String