Struct rusoto_codestar::AssociateTeamMemberRequest [] [src]

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

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.

The ID of the project to which you will add the IAM user.

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.

Whether the team member is allowed to use an SSH public/private key pair to remotely access project resources, for example Amazon EC2 instances.

The Amazon Resource Name (ARN) for the IAM user you want to add to the AWS CodeStar project.

Trait Implementations

impl Default for AssociateTeamMemberRequest
[src]

[src]

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

impl Debug for AssociateTeamMemberRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AssociateTeamMemberRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations