[][src]Struct rusoto_codestar::AssociateTeamMemberRequest

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

impl PartialEq<AssociateTeamMemberRequest> for AssociateTeamMemberRequest[src]

impl Default for AssociateTeamMemberRequest[src]

impl Clone for AssociateTeamMemberRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AssociateTeamMemberRequest[src]

impl Serialize for AssociateTeamMemberRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self