/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The full POSIX identity, including user ID (Uid
), group ID
* (Gid
), and any secondary groups IDs (SecondaryGids
),
* that controls your users' access to your Amazon EFS file systems. The POSIX
* permissions that are set on files and directories in your file system determine
* the level of access your users get when transferring files into and out of your
* Amazon EFS file systems.See Also:
AWS
* API Reference
The POSIX user ID used for all EFS operations by this user.
*/ inline long long GetUid() const{ return m_uid; } /** *The POSIX user ID used for all EFS operations by this user.
*/ inline bool UidHasBeenSet() const { return m_uidHasBeenSet; } /** *The POSIX user ID used for all EFS operations by this user.
*/ inline void SetUid(long long value) { m_uidHasBeenSet = true; m_uid = value; } /** *The POSIX user ID used for all EFS operations by this user.
*/ inline PosixProfile& WithUid(long long value) { SetUid(value); return *this;} /** *The POSIX group ID used for all EFS operations by this user.
*/ inline long long GetGid() const{ return m_gid; } /** *The POSIX group ID used for all EFS operations by this user.
*/ inline bool GidHasBeenSet() const { return m_gidHasBeenSet; } /** *The POSIX group ID used for all EFS operations by this user.
*/ inline void SetGid(long long value) { m_gidHasBeenSet = true; m_gid = value; } /** *The POSIX group ID used for all EFS operations by this user.
*/ inline PosixProfile& WithGid(long long value) { SetGid(value); return *this;} /** *The secondary POSIX group IDs used for all EFS operations by this user.
*/ inline const Aws::VectorThe secondary POSIX group IDs used for all EFS operations by this user.
*/ inline bool SecondaryGidsHasBeenSet() const { return m_secondaryGidsHasBeenSet; } /** *The secondary POSIX group IDs used for all EFS operations by this user.
*/ inline void SetSecondaryGids(const Aws::VectorThe secondary POSIX group IDs used for all EFS operations by this user.
*/ inline void SetSecondaryGids(Aws::VectorThe secondary POSIX group IDs used for all EFS operations by this user.
*/ inline PosixProfile& WithSecondaryGids(const Aws::VectorThe secondary POSIX group IDs used for all EFS operations by this user.
*/ inline PosixProfile& WithSecondaryGids(Aws::VectorThe secondary POSIX group IDs used for all EFS operations by this user.
*/ inline PosixProfile& AddSecondaryGids(long long value) { m_secondaryGidsHasBeenSet = true; m_secondaryGids.push_back(value); return *this; } private: long long m_uid; bool m_uidHasBeenSet = false; long long m_gid; bool m_gidHasBeenSet = false; Aws::Vector