pub struct AssociateTeamMemberRequest {
pub client_request_token: Option<String>,
pub project_id: String,
pub project_role: String,
pub remote_access_allowed: Option<bool>,
pub user_arn: String,
}
Fields§
§client_request_token: Option<String>
A user- or system-generated token that identifies the entity that requested the team member association to the project. This token can be used to repeat the request.
project_id: String
The ID of the project to which you will add the IAM user.
project_role: String
The AWS CodeStar project role that will apply to this user. This role determines what actions a user can take in an AWS CodeStar project.
remote_access_allowed: Option<bool>
Whether the team member is allowed to use an SSH public/private key pair to remotely access project resources, for example Amazon EC2 instances.
user_arn: String
The Amazon Resource Name (ARN) for the IAM user you want to add to the AWS CodeStar project.
Trait Implementations§
Source§impl Clone for AssociateTeamMemberRequest
impl Clone for AssociateTeamMemberRequest
Source§fn clone(&self) -> AssociateTeamMemberRequest
fn clone(&self) -> AssociateTeamMemberRequest
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 AssociateTeamMemberRequest
impl Debug for AssociateTeamMemberRequest
Source§impl Default for AssociateTeamMemberRequest
impl Default for AssociateTeamMemberRequest
Source§fn default() -> AssociateTeamMemberRequest
fn default() -> AssociateTeamMemberRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AssociateTeamMemberRequest
Auto Trait Implementations§
impl Freeze for AssociateTeamMemberRequest
impl RefUnwindSafe for AssociateTeamMemberRequest
impl Send for AssociateTeamMemberRequest
impl Sync for AssociateTeamMemberRequest
impl Unpin for AssociateTeamMemberRequest
impl UnwindSafe for AssociateTeamMemberRequest
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