AWS SDK for C++

AWS SDK for C++ Version 1.11.747

Loading...
Searching...
No Matches
PendingAggregationRequest.h
1
6#pragma once
7#include <aws/config/ConfigService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace ConfigService {
20namespace Model {
21
30 public:
31 AWS_CONFIGSERVICE_API PendingAggregationRequest() = default;
32 AWS_CONFIGSERVICE_API PendingAggregationRequest(Aws::Utils::Json::JsonView jsonValue);
34 AWS_CONFIGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetRequesterAccountId() const { return m_requesterAccountId; }
41 inline bool RequesterAccountIdHasBeenSet() const { return m_requesterAccountIdHasBeenSet; }
42 template <typename RequesterAccountIdT = Aws::String>
43 void SetRequesterAccountId(RequesterAccountIdT&& value) {
44 m_requesterAccountIdHasBeenSet = true;
45 m_requesterAccountId = std::forward<RequesterAccountIdT>(value);
46 }
47 template <typename RequesterAccountIdT = Aws::String>
48 PendingAggregationRequest& WithRequesterAccountId(RequesterAccountIdT&& value) {
49 SetRequesterAccountId(std::forward<RequesterAccountIdT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetRequesterAwsRegion() const { return m_requesterAwsRegion; }
59 inline bool RequesterAwsRegionHasBeenSet() const { return m_requesterAwsRegionHasBeenSet; }
60 template <typename RequesterAwsRegionT = Aws::String>
61 void SetRequesterAwsRegion(RequesterAwsRegionT&& value) {
62 m_requesterAwsRegionHasBeenSet = true;
63 m_requesterAwsRegion = std::forward<RequesterAwsRegionT>(value);
64 }
65 template <typename RequesterAwsRegionT = Aws::String>
66 PendingAggregationRequest& WithRequesterAwsRegion(RequesterAwsRegionT&& value) {
67 SetRequesterAwsRegion(std::forward<RequesterAwsRegionT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_requesterAccountId;
73
74 Aws::String m_requesterAwsRegion;
75 bool m_requesterAccountIdHasBeenSet = false;
76 bool m_requesterAwsRegionHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace ConfigService
81} // namespace Aws
PendingAggregationRequest & WithRequesterAwsRegion(RequesterAwsRegionT &&value)
AWS_CONFIGSERVICE_API PendingAggregationRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONFIGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CONFIGSERVICE_API PendingAggregationRequest()=default
PendingAggregationRequest & WithRequesterAccountId(RequesterAccountIdT &&value)
AWS_CONFIGSERVICE_API PendingAggregationRequest(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue