AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ModifyTrustStoreResult.h
1
6#pragma once
7#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/elasticloadbalancingv2/model/ResponseMetadata.h>
10#include <aws/elasticloadbalancingv2/model/TrustStore.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Xml
21{
22 class XmlDocument;
23} // namespace Xml
24} // namespace Utils
25namespace ElasticLoadBalancingv2
26{
27namespace Model
28{
30 {
31 public:
32 AWS_ELASTICLOADBALANCINGV2_API ModifyTrustStoreResult();
35
36
38
41 inline const Aws::Vector<TrustStore>& GetTrustStores() const{ return m_trustStores; }
42 inline void SetTrustStores(const Aws::Vector<TrustStore>& value) { m_trustStores = value; }
43 inline void SetTrustStores(Aws::Vector<TrustStore>&& value) { m_trustStores = std::move(value); }
45 inline ModifyTrustStoreResult& WithTrustStores(Aws::Vector<TrustStore>&& value) { SetTrustStores(std::move(value)); return *this;}
46 inline ModifyTrustStoreResult& AddTrustStores(const TrustStore& value) { m_trustStores.push_back(value); return *this; }
47 inline ModifyTrustStoreResult& AddTrustStores(TrustStore&& value) { m_trustStores.push_back(std::move(value)); return *this; }
49
51
52 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
53 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
54 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
56 inline ModifyTrustStoreResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
58 private:
59
60 Aws::Vector<TrustStore> m_trustStores;
61
62 ResponseMetadata m_responseMetadata;
63 };
64
65} // namespace Model
66} // namespace ElasticLoadBalancingv2
67} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API ModifyTrustStoreResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_ELASTICLOADBALANCINGV2_API ModifyTrustStoreResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ModifyTrustStoreResult & AddTrustStores(TrustStore &&value)
ModifyTrustStoreResult & WithTrustStores(const Aws::Vector< TrustStore > &value)
void SetTrustStores(const Aws::Vector< TrustStore > &value)
ModifyTrustStoreResult & WithTrustStores(Aws::Vector< TrustStore > &&value)
ModifyTrustStoreResult & WithResponseMetadata(ResponseMetadata &&value)
AWS_ELASTICLOADBALANCINGV2_API ModifyTrustStoreResult()
ModifyTrustStoreResult & AddTrustStores(const TrustStore &value)
ModifyTrustStoreResult & WithResponseMetadata(const ResponseMetadata &value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument