pub struct UpdateTeamMemberResult {
pub project_role: Option<String>,
pub remote_access_allowed: Option<bool>,
pub user_arn: Option<String>,
}
Fields§
§project_role: Option<String>
The project role granted to the user.
remote_access_allowed: Option<bool>
Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile.
user_arn: Option<String>
The Amazon Resource Name (ARN) of the user whose team membership attributes were updated.
Trait Implementations§
Source§impl Clone for UpdateTeamMemberResult
impl Clone for UpdateTeamMemberResult
Source§fn clone(&self) -> UpdateTeamMemberResult
fn clone(&self) -> UpdateTeamMemberResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateTeamMemberResult
impl Debug for UpdateTeamMemberResult
Source§impl Default for UpdateTeamMemberResult
impl Default for UpdateTeamMemberResult
Source§fn default() -> UpdateTeamMemberResult
fn default() -> UpdateTeamMemberResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTeamMemberResult
impl<'de> Deserialize<'de> for UpdateTeamMemberResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateTeamMemberResult
impl PartialEq for UpdateTeamMemberResult
impl StructuralPartialEq for UpdateTeamMemberResult
Auto Trait Implementations§
impl Freeze for UpdateTeamMemberResult
impl RefUnwindSafe for UpdateTeamMemberResult
impl Send for UpdateTeamMemberResult
impl Sync for UpdateTeamMemberResult
impl Unpin for UpdateTeamMemberResult
impl UnwindSafe for UpdateTeamMemberResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more