pub struct UpdateTeamMemberRequest {
pub project_id: String,
pub project_role: Option<String>,
pub remote_access_allowed: Option<bool>,
pub user_arn: String,
}
Fields§
§project_id: String
The ID of the project.
project_role: Option<String>
The role assigned to the user in the project. Project roles have different levels of access. For more information, see Working with Teams in the AWS CodeStar User Guide.
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. Even if this is set to True, the user must associate a public key with their profile before the user can access resources.
user_arn: String
The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.
Trait Implementations§
Source§impl Clone for UpdateTeamMemberRequest
impl Clone for UpdateTeamMemberRequest
Source§fn clone(&self) -> UpdateTeamMemberRequest
fn clone(&self) -> UpdateTeamMemberRequest
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 UpdateTeamMemberRequest
impl Debug for UpdateTeamMemberRequest
Source§impl Default for UpdateTeamMemberRequest
impl Default for UpdateTeamMemberRequest
Source§fn default() -> UpdateTeamMemberRequest
fn default() -> UpdateTeamMemberRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateTeamMemberRequest
impl PartialEq for UpdateTeamMemberRequest
Source§impl Serialize for UpdateTeamMemberRequest
impl Serialize for UpdateTeamMemberRequest
impl StructuralPartialEq for UpdateTeamMemberRequest
Auto Trait Implementations§
impl Freeze for UpdateTeamMemberRequest
impl RefUnwindSafe for UpdateTeamMemberRequest
impl Send for UpdateTeamMemberRequest
impl Sync for UpdateTeamMemberRequest
impl Unpin for UpdateTeamMemberRequest
impl UnwindSafe for UpdateTeamMemberRequest
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