pub struct DisassociateTeamMemberRequest {
pub project_id: String,
pub user_arn: String,
}
Fields§
§project_id: String
The ID of the AWS CodeStar project from which you want to remove a team member.
user_arn: String
The Amazon Resource Name (ARN) of the IAM user or group whom you want to remove from the project.
Trait Implementations§
Source§impl Clone for DisassociateTeamMemberRequest
impl Clone for DisassociateTeamMemberRequest
Source§fn clone(&self) -> DisassociateTeamMemberRequest
fn clone(&self) -> DisassociateTeamMemberRequest
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 Default for DisassociateTeamMemberRequest
impl Default for DisassociateTeamMemberRequest
Source§fn default() -> DisassociateTeamMemberRequest
fn default() -> DisassociateTeamMemberRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DisassociateTeamMemberRequest
impl PartialEq for DisassociateTeamMemberRequest
Source§fn eq(&self, other: &DisassociateTeamMemberRequest) -> bool
fn eq(&self, other: &DisassociateTeamMemberRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DisassociateTeamMemberRequest
Auto Trait Implementations§
impl Freeze for DisassociateTeamMemberRequest
impl RefUnwindSafe for DisassociateTeamMemberRequest
impl Send for DisassociateTeamMemberRequest
impl Sync for DisassociateTeamMemberRequest
impl Unpin for DisassociateTeamMemberRequest
impl UnwindSafe for DisassociateTeamMemberRequest
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