AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
RejectResourceGroupingRecommendationsRequest.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/RejectGroupingRecommendationEntry.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ResilienceHub
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_RESILIENCEHUB_API RejectResourceGroupingRecommendationsRequest() = default;
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 "RejectResourceGroupingRecommendations"; }
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 template<typename AppArnT = Aws::String>
50 void SetAppArn(AppArnT&& value) { m_appArnHasBeenSet = true; m_appArn = std::forward<AppArnT>(value); }
51 template<typename AppArnT = Aws::String>
52 RejectResourceGroupingRecommendationsRequest& WithAppArn(AppArnT&& value) { SetAppArn(std::forward<AppArnT>(value)); return *this;}
54
56
60 inline const Aws::Vector<RejectGroupingRecommendationEntry>& GetEntries() const { return m_entries; }
61 inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; }
62 template<typename EntriesT = Aws::Vector<RejectGroupingRecommendationEntry>>
63 void SetEntries(EntriesT&& value) { m_entriesHasBeenSet = true; m_entries = std::forward<EntriesT>(value); }
64 template<typename EntriesT = Aws::Vector<RejectGroupingRecommendationEntry>>
65 RejectResourceGroupingRecommendationsRequest& WithEntries(EntriesT&& value) { SetEntries(std::forward<EntriesT>(value)); return *this;}
66 template<typename EntriesT = RejectGroupingRecommendationEntry>
67 RejectResourceGroupingRecommendationsRequest& AddEntries(EntriesT&& value) { m_entriesHasBeenSet = true; m_entries.emplace_back(std::forward<EntriesT>(value)); return *this; }
69 private:
70
71 Aws::String m_appArn;
72 bool m_appArnHasBeenSet = false;
73
75 bool m_entriesHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace ResilienceHub
80} // namespace Aws
AWS_RESILIENCEHUB_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector