Struct rusoto_codestar::UpdateTeamMemberRequest[][src]

pub struct UpdateTeamMemberRequest {
    pub project_id: String,
    pub project_role: Option<String>,
    pub remote_access_allowed: Option<bool>,
    pub user_arn: String,
}

Fields

The ID of the project.

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.

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.

The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.

Trait Implementations

impl Default for UpdateTeamMemberRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateTeamMemberRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateTeamMemberRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateTeamMemberRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations