Struct aws_sdk_codestar::types::TeamMember
source · #[non_exhaustive]pub struct TeamMember {
pub user_arn: Option<String>,
pub project_role: Option<String>,
pub remote_access_allowed: Option<bool>,
}
Expand description
Information about a team member in a project.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_arn: Option<String>
The Amazon Resource Name (ARN) of the user in IAM.
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 the user is allowed to remotely access project resources using an SSH public/private key pair.
Implementations§
source§impl TeamMember
impl TeamMember
sourcepub fn project_role(&self) -> Option<&str>
pub fn project_role(&self) -> Option<&str>
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.
sourcepub fn remote_access_allowed(&self) -> Option<bool>
pub fn remote_access_allowed(&self) -> Option<bool>
Whether the user is allowed to remotely access project resources using an SSH public/private key pair.
source§impl TeamMember
impl TeamMember
sourcepub fn builder() -> TeamMemberBuilder
pub fn builder() -> TeamMemberBuilder
Creates a new builder-style object to manufacture TeamMember
.
Trait Implementations§
source§impl Clone for TeamMember
impl Clone for TeamMember
source§fn clone(&self) -> TeamMember
fn clone(&self) -> TeamMember
Returns a copy 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 TeamMember
impl Debug for TeamMember
source§impl PartialEq<TeamMember> for TeamMember
impl PartialEq<TeamMember> for TeamMember
source§fn eq(&self, other: &TeamMember) -> bool
fn eq(&self, other: &TeamMember) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TeamMember
Auto Trait Implementations§
impl RefUnwindSafe for TeamMember
impl Send for TeamMember
impl Sync for TeamMember
impl Unpin for TeamMember
impl UnwindSafe for TeamMember
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