AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AcceptResourceGroupingRecommendationsRequest.h
1
6#pragma once
7#include <aws/resiliencehub/ResilienceHub_EXPORTS.h>
8#include <aws/resiliencehub/ResilienceHubRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/resiliencehub/model/AcceptGroupingRecommendationEntry.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ResilienceHub
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "AcceptResourceGroupingRecommendations"; }
33
34 AWS_RESILIENCEHUB_API Aws::String SerializePayload() const override;
35
36
38
47 inline const Aws::String& GetAppArn() const{ return m_appArn; }
48 inline bool AppArnHasBeenSet() const { return m_appArnHasBeenSet; }
49 inline void SetAppArn(const Aws::String& value) { m_appArnHasBeenSet = true; m_appArn = value; }
50 inline void SetAppArn(Aws::String&& value) { m_appArnHasBeenSet = true; m_appArn = std::move(value); }
51 inline void SetAppArn(const char* value) { m_appArnHasBeenSet = true; m_appArn.assign(value); }
53 inline AcceptResourceGroupingRecommendationsRequest& WithAppArn(Aws::String&& value) { SetAppArn(std::move(value)); return *this;}
54 inline AcceptResourceGroupingRecommendationsRequest& WithAppArn(const char* value) { SetAppArn(value); return *this;}
56
58
62 inline const Aws::Vector<AcceptGroupingRecommendationEntry>& GetEntries() const{ return m_entries; }
63 inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; }
64 inline void SetEntries(const Aws::Vector<AcceptGroupingRecommendationEntry>& value) { m_entriesHasBeenSet = true; m_entries = value; }
65 inline void SetEntries(Aws::Vector<AcceptGroupingRecommendationEntry>&& value) { m_entriesHasBeenSet = true; m_entries = std::move(value); }
68 inline AcceptResourceGroupingRecommendationsRequest& AddEntries(const AcceptGroupingRecommendationEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; }
69 inline AcceptResourceGroupingRecommendationsRequest& AddEntries(AcceptGroupingRecommendationEntry&& value) { m_entriesHasBeenSet = true; m_entries.push_back(std::move(value)); return *this; }
71 private:
72
73 Aws::String m_appArn;
74 bool m_appArnHasBeenSet = false;
75
77 bool m_entriesHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace ResilienceHub
82} // namespace Aws
AcceptResourceGroupingRecommendationsRequest & WithEntries(const Aws::Vector< AcceptGroupingRecommendationEntry > &value)
AcceptResourceGroupingRecommendationsRequest & WithEntries(Aws::Vector< AcceptGroupingRecommendationEntry > &&value)
AWS_RESILIENCEHUB_API Aws::String SerializePayload() const override
AcceptResourceGroupingRecommendationsRequest & AddEntries(AcceptGroupingRecommendationEntry &&value)
void SetEntries(const Aws::Vector< AcceptGroupingRecommendationEntry > &value)
AcceptResourceGroupingRecommendationsRequest & WithAppArn(const Aws::String &value)
AcceptResourceGroupingRecommendationsRequest & AddEntries(const AcceptGroupingRecommendationEntry &value)
AcceptResourceGroupingRecommendationsRequest & WithAppArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector