Struct aws_sdk_codestar::input::UpdateTeamMemberInput
source · [−]#[non_exhaustive]pub struct UpdateTeamMemberInput {
pub project_id: Option<String>,
pub user_arn: Option<String>,
pub project_role: Option<String>,
pub remote_access_allowed: Option<bool>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.project_id: Option<String>
The ID of the project.
user_arn: Option<String>
The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTeamMember, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTeamMember, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateTeamMember
>
Creates a new builder-style object to manufacture UpdateTeamMemberInput
The ID of the project.
The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateTeamMemberInput
impl Send for UpdateTeamMemberInput
impl Sync for UpdateTeamMemberInput
impl Unpin for UpdateTeamMemberInput
impl UnwindSafe for UpdateTeamMemberInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more