[][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 Clone for AssociateTeamMemberRequest[src]

impl Debug for AssociateTeamMemberRequest[src]

impl Default for AssociateTeamMemberRequest[src]

impl PartialEq<AssociateTeamMemberRequest> for AssociateTeamMemberRequest[src]

impl Serialize for AssociateTeamMemberRequest[src]

impl StructuralPartialEq for AssociateTeamMemberRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.