AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
CustomerArtifactPaths.h
1
6#pragma once
7#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace DeviceFarm
23{
24namespace Model
25{
26
38 {
39 public:
40 AWS_DEVICEFARM_API CustomerArtifactPaths() = default;
43 AWS_DEVICEFARM_API Aws::Utils::Json::JsonValue Jsonize() const;
44
45
47
51 inline const Aws::Vector<Aws::String>& GetIosPaths() const { return m_iosPaths; }
52 inline bool IosPathsHasBeenSet() const { return m_iosPathsHasBeenSet; }
53 template<typename IosPathsT = Aws::Vector<Aws::String>>
54 void SetIosPaths(IosPathsT&& value) { m_iosPathsHasBeenSet = true; m_iosPaths = std::forward<IosPathsT>(value); }
55 template<typename IosPathsT = Aws::Vector<Aws::String>>
56 CustomerArtifactPaths& WithIosPaths(IosPathsT&& value) { SetIosPaths(std::forward<IosPathsT>(value)); return *this;}
57 template<typename IosPathsT = Aws::String>
58 CustomerArtifactPaths& AddIosPaths(IosPathsT&& value) { m_iosPathsHasBeenSet = true; m_iosPaths.emplace_back(std::forward<IosPathsT>(value)); return *this; }
60
62
66 inline const Aws::Vector<Aws::String>& GetAndroidPaths() const { return m_androidPaths; }
67 inline bool AndroidPathsHasBeenSet() const { return m_androidPathsHasBeenSet; }
68 template<typename AndroidPathsT = Aws::Vector<Aws::String>>
69 void SetAndroidPaths(AndroidPathsT&& value) { m_androidPathsHasBeenSet = true; m_androidPaths = std::forward<AndroidPathsT>(value); }
70 template<typename AndroidPathsT = Aws::Vector<Aws::String>>
71 CustomerArtifactPaths& WithAndroidPaths(AndroidPathsT&& value) { SetAndroidPaths(std::forward<AndroidPathsT>(value)); return *this;}
72 template<typename AndroidPathsT = Aws::String>
73 CustomerArtifactPaths& AddAndroidPaths(AndroidPathsT&& value) { m_androidPathsHasBeenSet = true; m_androidPaths.emplace_back(std::forward<AndroidPathsT>(value)); return *this; }
75
77
81 inline const Aws::Vector<Aws::String>& GetDeviceHostPaths() const { return m_deviceHostPaths; }
82 inline bool DeviceHostPathsHasBeenSet() const { return m_deviceHostPathsHasBeenSet; }
83 template<typename DeviceHostPathsT = Aws::Vector<Aws::String>>
84 void SetDeviceHostPaths(DeviceHostPathsT&& value) { m_deviceHostPathsHasBeenSet = true; m_deviceHostPaths = std::forward<DeviceHostPathsT>(value); }
85 template<typename DeviceHostPathsT = Aws::Vector<Aws::String>>
86 CustomerArtifactPaths& WithDeviceHostPaths(DeviceHostPathsT&& value) { SetDeviceHostPaths(std::forward<DeviceHostPathsT>(value)); return *this;}
87 template<typename DeviceHostPathsT = Aws::String>
88 CustomerArtifactPaths& AddDeviceHostPaths(DeviceHostPathsT&& value) { m_deviceHostPathsHasBeenSet = true; m_deviceHostPaths.emplace_back(std::forward<DeviceHostPathsT>(value)); return *this; }
90 private:
91
92 Aws::Vector<Aws::String> m_iosPaths;
93 bool m_iosPathsHasBeenSet = false;
94
95 Aws::Vector<Aws::String> m_androidPaths;
96 bool m_androidPathsHasBeenSet = false;
97
98 Aws::Vector<Aws::String> m_deviceHostPaths;
99 bool m_deviceHostPathsHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace DeviceFarm
104} // namespace Aws
CustomerArtifactPaths & WithDeviceHostPaths(DeviceHostPathsT &&value)
AWS_DEVICEFARM_API Aws::Utils::Json::JsonValue Jsonize() const
CustomerArtifactPaths & AddIosPaths(IosPathsT &&value)
const Aws::Vector< Aws::String > & GetDeviceHostPaths() const
AWS_DEVICEFARM_API CustomerArtifactPaths()=default
CustomerArtifactPaths & WithAndroidPaths(AndroidPathsT &&value)
AWS_DEVICEFARM_API CustomerArtifactPaths(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetAndroidPaths() const
AWS_DEVICEFARM_API CustomerArtifactPaths & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetIosPaths() const
CustomerArtifactPaths & AddDeviceHostPaths(DeviceHostPathsT &&value)
CustomerArtifactPaths & AddAndroidPaths(AndroidPathsT &&value)
CustomerArtifactPaths & WithIosPaths(IosPathsT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue