AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
PutStoredQueryRequest.h
1
6#pragma once
7#include <aws/config/ConfigService_EXPORTS.h>
8#include <aws/config/ConfigServiceRequest.h>
9#include <aws/config/model/StoredQuery.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/config/model/Tag.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ConfigService
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CONFIGSERVICE_API PutStoredQueryRequest() = 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 "PutStoredQuery"; }
33
34 AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override;
35
36 AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
47 inline const StoredQuery& GetStoredQuery() const { return m_storedQuery; }
48 inline bool StoredQueryHasBeenSet() const { return m_storedQueryHasBeenSet; }
49 template<typename StoredQueryT = StoredQuery>
50 void SetStoredQuery(StoredQueryT&& value) { m_storedQueryHasBeenSet = true; m_storedQuery = std::forward<StoredQueryT>(value); }
51 template<typename StoredQueryT = StoredQuery>
52 PutStoredQueryRequest& WithStoredQuery(StoredQueryT&& value) { SetStoredQuery(std::forward<StoredQueryT>(value)); return *this;}
54
56
59 inline const Aws::Vector<Tag>& GetTags() const { return m_tags; }
60 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
61 template<typename TagsT = Aws::Vector<Tag>>
62 void SetTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
63 template<typename TagsT = Aws::Vector<Tag>>
64 PutStoredQueryRequest& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
65 template<typename TagsT = Tag>
66 PutStoredQueryRequest& AddTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags.emplace_back(std::forward<TagsT>(value)); return *this; }
68 private:
69
70 StoredQuery m_storedQuery;
71 bool m_storedQueryHasBeenSet = false;
72
73 Aws::Vector<Tag> m_tags;
74 bool m_tagsHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace ConfigService
79} // namespace Aws
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
PutStoredQueryRequest & WithTags(TagsT &&value)
PutStoredQueryRequest & WithStoredQuery(StoredQueryT &&value)
PutStoredQueryRequest & AddTags(TagsT &&value)
virtual const char * GetServiceRequestName() const override
AWS_CONFIGSERVICE_API PutStoredQueryRequest()=default
AWS_CONFIGSERVICE_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
std::vector< T, Aws::Allocator< T > > Vector