[][src]Struct rusoto_codestar::CodeStarClient

pub struct CodeStarClient { /* fields omitted */ }

A client for the CodeStar API.

Methods

impl CodeStarClient[src]

pub fn new(region: Region) -> CodeStarClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> CodeStarClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl CodeStar for CodeStarClient[src]

fn associate_team_member(
    &self,
    input: AssociateTeamMemberRequest
) -> RusotoFuture<AssociateTeamMemberResult, AssociateTeamMemberError>
[src]

Adds an IAM user to the team for an AWS CodeStar project.

fn create_project(
    &self,
    input: CreateProjectRequest
) -> RusotoFuture<CreateProjectResult, CreateProjectError>
[src]

Creates a project, including project resources. This action creates a project based on a submitted project request. A set of source code files and a toolchain template file can be included with the project request. If these are not provided, an empty project is created.

fn create_user_profile(
    &self,
    input: CreateUserProfileRequest
) -> RusotoFuture<CreateUserProfileResult, CreateUserProfileError>
[src]

Creates a profile for a user that includes user preferences, such as the display name and email address assocciated with the user, in AWS CodeStar. The user profile is not project-specific. Information in the user profile is displayed wherever the user's information appears to other users in AWS CodeStar.

fn delete_project(
    &self,
    input: DeleteProjectRequest
) -> RusotoFuture<DeleteProjectResult, DeleteProjectError>
[src]

Deletes a project, including project resources. Does not delete users associated with the project, but does delete the IAM roles that allowed access to the project.

fn delete_user_profile(
    &self,
    input: DeleteUserProfileRequest
) -> RusotoFuture<DeleteUserProfileResult, DeleteUserProfileError>
[src]

Deletes a user profile in AWS CodeStar, including all personal preference data associated with that profile, such as display name and email address. It does not delete the history of that user, for example the history of commits made by that user.

fn describe_project(
    &self,
    input: DescribeProjectRequest
) -> RusotoFuture<DescribeProjectResult, DescribeProjectError>
[src]

Describes a project and its resources.

fn describe_user_profile(
    &self,
    input: DescribeUserProfileRequest
) -> RusotoFuture<DescribeUserProfileResult, DescribeUserProfileError>
[src]

Describes a user in AWS CodeStar and the user attributes across all projects.

fn disassociate_team_member(
    &self,
    input: DisassociateTeamMemberRequest
) -> RusotoFuture<DisassociateTeamMemberResult, DisassociateTeamMemberError>
[src]

Removes a user from a project. Removing a user from a project also removes the IAM policies from that user that allowed access to the project and its resources. Disassociating a team member does not remove that user's profile from AWS CodeStar. It does not remove the user from IAM.

fn list_projects(
    &self,
    input: ListProjectsRequest
) -> RusotoFuture<ListProjectsResult, ListProjectsError>
[src]

Lists all projects in AWS CodeStar associated with your AWS account.

fn list_resources(
    &self,
    input: ListResourcesRequest
) -> RusotoFuture<ListResourcesResult, ListResourcesError>
[src]

Lists resources associated with a project in AWS CodeStar.

fn list_tags_for_project(
    &self,
    input: ListTagsForProjectRequest
) -> RusotoFuture<ListTagsForProjectResult, ListTagsForProjectError>
[src]

Gets the tags for a project.

fn list_team_members(
    &self,
    input: ListTeamMembersRequest
) -> RusotoFuture<ListTeamMembersResult, ListTeamMembersError>
[src]

Lists all team members associated with a project.

fn list_user_profiles(
    &self,
    input: ListUserProfilesRequest
) -> RusotoFuture<ListUserProfilesResult, ListUserProfilesError>
[src]

Lists all the user profiles configured for your AWS account in AWS CodeStar.

fn tag_project(
    &self,
    input: TagProjectRequest
) -> RusotoFuture<TagProjectResult, TagProjectError>
[src]

Adds tags to a project.

fn untag_project(
    &self,
    input: UntagProjectRequest
) -> RusotoFuture<UntagProjectResult, UntagProjectError>
[src]

Removes tags from a project.

fn update_project(
    &self,
    input: UpdateProjectRequest
) -> RusotoFuture<UpdateProjectResult, UpdateProjectError>
[src]

Updates a project in AWS CodeStar.

fn update_team_member(
    &self,
    input: UpdateTeamMemberRequest
) -> RusotoFuture<UpdateTeamMemberResult, UpdateTeamMemberError>
[src]

Updates a team member's attributes in an AWS CodeStar project. For example, you can change a team member's role in the project, or change whether they have remote access to project resources.

fn update_user_profile(
    &self,
    input: UpdateUserProfileRequest
) -> RusotoFuture<UpdateUserProfileResult, UpdateUserProfileError>
[src]

Updates a user's profile in AWS CodeStar. The user profile is not project-specific. Information in the user profile is displayed wherever the user's information appears to other users in AWS CodeStar.

impl Clone for CodeStarClient[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for CodeStarClient

impl Sync for CodeStarClient

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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