AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
UpdateAccountSettingsRequest.h
1
6#pragma once
7#include <aws/kinesis/KinesisRequest.h>
8#include <aws/kinesis/Kinesis_EXPORTS.h>
9#include <aws/kinesis/model/MinimumThroughputBillingCommitmentInput.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Kinesis {
15namespace Model {
16
20 public:
21 AWS_KINESIS_API UpdateAccountSettingsRequest() = 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 "UpdateAccountSettings"; }
28
29 AWS_KINESIS_API Aws::String SerializePayload() const override;
30
32
34
39 return m_minimumThroughputBillingCommitment;
40 }
41 inline bool MinimumThroughputBillingCommitmentHasBeenSet() const { return m_minimumThroughputBillingCommitmentHasBeenSet; }
42 template <typename MinimumThroughputBillingCommitmentT = MinimumThroughputBillingCommitmentInput>
43 void SetMinimumThroughputBillingCommitment(MinimumThroughputBillingCommitmentT&& value) {
44 m_minimumThroughputBillingCommitmentHasBeenSet = true;
45 m_minimumThroughputBillingCommitment = std::forward<MinimumThroughputBillingCommitmentT>(value);
46 }
47 template <typename MinimumThroughputBillingCommitmentT = MinimumThroughputBillingCommitmentInput>
48 UpdateAccountSettingsRequest& WithMinimumThroughputBillingCommitment(MinimumThroughputBillingCommitmentT&& value) {
49 SetMinimumThroughputBillingCommitment(std::forward<MinimumThroughputBillingCommitmentT>(value));
50 return *this;
51 }
53 private:
54 MinimumThroughputBillingCommitmentInput m_minimumThroughputBillingCommitment;
55 bool m_minimumThroughputBillingCommitmentHasBeenSet = false;
56};
57
58} // namespace Model
59} // namespace Kinesis
60} // namespace Aws
virtual const char * GetServiceRequestName() const override
UpdateAccountSettingsRequest & WithMinimumThroughputBillingCommitment(MinimumThroughputBillingCommitmentT &&value)
const MinimumThroughputBillingCommitmentInput & GetMinimumThroughputBillingCommitment() const
AWS_KINESIS_API UpdateAccountSettingsRequest()=default
AWS_KINESIS_API Aws::String SerializePayload() const override
void SetMinimumThroughputBillingCommitment(MinimumThroughputBillingCommitmentT &&value)
AWS_KINESIS_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