AWS SDK for C++

AWS SDK for C++ Version 1.11.887

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
36 AWS_KINESIS_API EndpointParameters GetEndpointContextParams() const override;
37
39
44 return m_minimumThroughputBillingCommitment;
45 }
46 inline bool MinimumThroughputBillingCommitmentHasBeenSet() const { return m_minimumThroughputBillingCommitmentHasBeenSet; }
47 template <typename MinimumThroughputBillingCommitmentT = MinimumThroughputBillingCommitmentInput>
48 void SetMinimumThroughputBillingCommitment(MinimumThroughputBillingCommitmentT&& value) {
49 m_minimumThroughputBillingCommitmentHasBeenSet = true;
50 m_minimumThroughputBillingCommitment = std::forward<MinimumThroughputBillingCommitmentT>(value);
51 }
52 template <typename MinimumThroughputBillingCommitmentT = MinimumThroughputBillingCommitmentInput>
53 UpdateAccountSettingsRequest& WithMinimumThroughputBillingCommitment(MinimumThroughputBillingCommitmentT&& value) {
54 SetMinimumThroughputBillingCommitment(std::forward<MinimumThroughputBillingCommitmentT>(value));
55 return *this;
56 }
58 private:
59 MinimumThroughputBillingCommitmentInput m_minimumThroughputBillingCommitment;
60 bool m_minimumThroughputBillingCommitmentHasBeenSet = false;
61};
62
63} // namespace Model
64} // namespace Kinesis
65} // namespace Aws
Aws::Endpoint::EndpointParameters EndpointParameters
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_KINESIS_API EndpointParameters GetEndpointContextParams() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String