AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IntegrateServices.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/ec2/model/AthenaIntegration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace EC2
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_EC2_API IntegrateServices();
37 AWS_EC2_API IntegrateServices(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
41 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
42
43
45
48 inline const Aws::Vector<AthenaIntegration>& GetAthenaIntegrations() const{ return m_athenaIntegrations; }
49 inline bool AthenaIntegrationsHasBeenSet() const { return m_athenaIntegrationsHasBeenSet; }
50 inline void SetAthenaIntegrations(const Aws::Vector<AthenaIntegration>& value) { m_athenaIntegrationsHasBeenSet = true; m_athenaIntegrations = value; }
51 inline void SetAthenaIntegrations(Aws::Vector<AthenaIntegration>&& value) { m_athenaIntegrationsHasBeenSet = true; m_athenaIntegrations = std::move(value); }
54 inline IntegrateServices& AddAthenaIntegrations(const AthenaIntegration& value) { m_athenaIntegrationsHasBeenSet = true; m_athenaIntegrations.push_back(value); return *this; }
55 inline IntegrateServices& AddAthenaIntegrations(AthenaIntegration&& value) { m_athenaIntegrationsHasBeenSet = true; m_athenaIntegrations.push_back(std::move(value)); return *this; }
57 private:
58
59 Aws::Vector<AthenaIntegration> m_athenaIntegrations;
60 bool m_athenaIntegrationsHasBeenSet = false;
61 };
62
63} // namespace Model
64} // namespace EC2
65} // namespace Aws
void SetAthenaIntegrations(const Aws::Vector< AthenaIntegration > &value)
AWS_EC2_API IntegrateServices(const Aws::Utils::Xml::XmlNode &xmlNode)
IntegrateServices & AddAthenaIntegrations(AthenaIntegration &&value)
void SetAthenaIntegrations(Aws::Vector< AthenaIntegration > &&value)
IntegrateServices & WithAthenaIntegrations(const Aws::Vector< AthenaIntegration > &value)
const Aws::Vector< AthenaIntegration > & GetAthenaIntegrations() const
IntegrateServices & AddAthenaIntegrations(const AthenaIntegration &value)
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
IntegrateServices & WithAthenaIntegrations(Aws::Vector< AthenaIntegration > &&value)
AWS_EC2_API IntegrateServices & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::vector< T, Aws::Allocator< T > > Vector
std::basic_ostream< char, std::char_traits< char > > OStream