/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace NimbleStudio { namespace Model { /** *

The upload storage root location (folder) on streaming workstations where * files are uploaded.

See Also:

AWS * API Reference

*/ class StreamingSessionStorageRoot { public: AWS_NIMBLESTUDIO_API StreamingSessionStorageRoot(); AWS_NIMBLESTUDIO_API StreamingSessionStorageRoot(Aws::Utils::Json::JsonView jsonValue); AWS_NIMBLESTUDIO_API StreamingSessionStorageRoot& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_NIMBLESTUDIO_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The folder path in Linux workstations where files are uploaded.

*/ inline const Aws::String& GetLinux() const{ return m_linux; } /** *

The folder path in Linux workstations where files are uploaded.

*/ inline bool LinuxHasBeenSet() const { return m_linuxHasBeenSet; } /** *

The folder path in Linux workstations where files are uploaded.

*/ inline void SetLinux(const Aws::String& value) { m_linuxHasBeenSet = true; m_linux = value; } /** *

The folder path in Linux workstations where files are uploaded.

*/ inline void SetLinux(Aws::String&& value) { m_linuxHasBeenSet = true; m_linux = std::move(value); } /** *

The folder path in Linux workstations where files are uploaded.

*/ inline void SetLinux(const char* value) { m_linuxHasBeenSet = true; m_linux.assign(value); } /** *

The folder path in Linux workstations where files are uploaded.

*/ inline StreamingSessionStorageRoot& WithLinux(const Aws::String& value) { SetLinux(value); return *this;} /** *

The folder path in Linux workstations where files are uploaded.

*/ inline StreamingSessionStorageRoot& WithLinux(Aws::String&& value) { SetLinux(std::move(value)); return *this;} /** *

The folder path in Linux workstations where files are uploaded.

*/ inline StreamingSessionStorageRoot& WithLinux(const char* value) { SetLinux(value); return *this;} /** *

The folder path in Windows workstations where files are uploaded.

*/ inline const Aws::String& GetWindows() const{ return m_windows; } /** *

The folder path in Windows workstations where files are uploaded.

*/ inline bool WindowsHasBeenSet() const { return m_windowsHasBeenSet; } /** *

The folder path in Windows workstations where files are uploaded.

*/ inline void SetWindows(const Aws::String& value) { m_windowsHasBeenSet = true; m_windows = value; } /** *

The folder path in Windows workstations where files are uploaded.

*/ inline void SetWindows(Aws::String&& value) { m_windowsHasBeenSet = true; m_windows = std::move(value); } /** *

The folder path in Windows workstations where files are uploaded.

*/ inline void SetWindows(const char* value) { m_windowsHasBeenSet = true; m_windows.assign(value); } /** *

The folder path in Windows workstations where files are uploaded.

*/ inline StreamingSessionStorageRoot& WithWindows(const Aws::String& value) { SetWindows(value); return *this;} /** *

The folder path in Windows workstations where files are uploaded.

*/ inline StreamingSessionStorageRoot& WithWindows(Aws::String&& value) { SetWindows(std::move(value)); return *this;} /** *

The folder path in Windows workstations where files are uploaded.

*/ inline StreamingSessionStorageRoot& WithWindows(const char* value) { SetWindows(value); return *this;} private: Aws::String m_linux; bool m_linuxHasBeenSet = false; Aws::String m_windows; bool m_windowsHasBeenSet = false; }; } // namespace Model } // namespace NimbleStudio } // namespace Aws