/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Defines the storage configuration for an Amazon FSx file
* system.See Also:
AWS
* API Reference
The file system identifier.
*/ inline const Aws::String& GetFileSystemId() const{ return m_fileSystemId; } /** *The file system identifier.
*/ inline bool FileSystemIdHasBeenSet() const { return m_fileSystemIdHasBeenSet; } /** *The file system identifier.
*/ inline void SetFileSystemId(const Aws::String& value) { m_fileSystemIdHasBeenSet = true; m_fileSystemId = value; } /** *The file system identifier.
*/ inline void SetFileSystemId(Aws::String&& value) { m_fileSystemIdHasBeenSet = true; m_fileSystemId = std::move(value); } /** *The file system identifier.
*/ inline void SetFileSystemId(const char* value) { m_fileSystemIdHasBeenSet = true; m_fileSystemId.assign(value); } /** *The file system identifier.
*/ inline FsxStorageConfiguration& WithFileSystemId(const Aws::String& value) { SetFileSystemId(value); return *this;} /** *The file system identifier.
*/ inline FsxStorageConfiguration& WithFileSystemId(Aws::String&& value) { SetFileSystemId(std::move(value)); return *this;} /** *The file system identifier.
*/ inline FsxStorageConfiguration& WithFileSystemId(const char* value) { SetFileSystemId(value); return *this;} /** *The mount point for the file system.
*/ inline const Aws::String& GetMountPoint() const{ return m_mountPoint; } /** *The mount point for the file system.
*/ inline bool MountPointHasBeenSet() const { return m_mountPointHasBeenSet; } /** *The mount point for the file system.
*/ inline void SetMountPoint(const Aws::String& value) { m_mountPointHasBeenSet = true; m_mountPoint = value; } /** *The mount point for the file system.
*/ inline void SetMountPoint(Aws::String&& value) { m_mountPointHasBeenSet = true; m_mountPoint = std::move(value); } /** *The mount point for the file system.
*/ inline void SetMountPoint(const char* value) { m_mountPointHasBeenSet = true; m_mountPoint.assign(value); } /** *The mount point for the file system.
*/ inline FsxStorageConfiguration& WithMountPoint(const Aws::String& value) { SetMountPoint(value); return *this;} /** *The mount point for the file system.
*/ inline FsxStorageConfiguration& WithMountPoint(Aws::String&& value) { SetMountPoint(std::move(value)); return *this;} /** *The mount point for the file system.
*/ inline FsxStorageConfiguration& WithMountPoint(const char* value) { SetMountPoint(value); return *this;} private: Aws::String m_fileSystemId; bool m_fileSystemIdHasBeenSet = false; Aws::String m_mountPoint; bool m_mountPointHasBeenSet = false; }; } // namespace Model } // namespace MainframeModernization } // namespace Aws