[][src]Struct rusoto_codestar::CodeStarClient

pub struct CodeStarClient { /* fields omitted */ }

A client for the CodeStar API.

Implementations

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,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> CodeStarClient[src]

Trait Implementations

impl Clone for CodeStarClient[src]

impl CodeStar for CodeStarClient[src]

pub fn associate_team_member<'life0, 'async_trait>(
    &'life0 self,
    input: AssociateTeamMemberRequest
) -> Pin<Box<dyn Future<Output = Result<AssociateTeamMemberResult, RusotoError<AssociateTeamMemberError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

pub fn create_project<'life0, 'async_trait>(
    &'life0 self,
    input: CreateProjectRequest
) -> Pin<Box<dyn Future<Output = Result<CreateProjectResult, RusotoError<CreateProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

pub fn create_user_profile<'life0, 'async_trait>(
    &'life0 self,
    input: CreateUserProfileRequest
) -> Pin<Box<dyn Future<Output = Result<CreateUserProfileResult, RusotoError<CreateUserProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

pub fn delete_project<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteProjectRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteProjectResult, RusotoError<DeleteProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

pub fn delete_user_profile<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteUserProfileRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteUserProfileResult, RusotoError<DeleteUserProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

pub fn describe_project<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeProjectRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeProjectResult, RusotoError<DescribeProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes a project and its resources.

pub fn describe_user_profile<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeUserProfileRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeUserProfileResult, RusotoError<DescribeUserProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

pub fn disassociate_team_member<'life0, 'async_trait>(
    &'life0 self,
    input: DisassociateTeamMemberRequest
) -> Pin<Box<dyn Future<Output = Result<DisassociateTeamMemberResult, RusotoError<DisassociateTeamMemberError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

pub fn list_projects<'life0, 'async_trait>(
    &'life0 self,
    input: ListProjectsRequest
) -> Pin<Box<dyn Future<Output = Result<ListProjectsResult, RusotoError<ListProjectsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

pub fn list_resources<'life0, 'async_trait>(
    &'life0 self,
    input: ListResourcesRequest
) -> Pin<Box<dyn Future<Output = Result<ListResourcesResult, RusotoError<ListResourcesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists resources associated with a project in AWS CodeStar.

pub fn list_tags_for_project<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForProjectRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForProjectResult, RusotoError<ListTagsForProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets the tags for a project.

pub fn list_team_members<'life0, 'async_trait>(
    &'life0 self,
    input: ListTeamMembersRequest
) -> Pin<Box<dyn Future<Output = Result<ListTeamMembersResult, RusotoError<ListTeamMembersError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists all team members associated with a project.

pub fn list_user_profiles<'life0, 'async_trait>(
    &'life0 self,
    input: ListUserProfilesRequest
) -> Pin<Box<dyn Future<Output = Result<ListUserProfilesResult, RusotoError<ListUserProfilesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

pub fn tag_project<'life0, 'async_trait>(
    &'life0 self,
    input: TagProjectRequest
) -> Pin<Box<dyn Future<Output = Result<TagProjectResult, RusotoError<TagProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds tags to a project.

pub fn untag_project<'life0, 'async_trait>(
    &'life0 self,
    input: UntagProjectRequest
) -> Pin<Box<dyn Future<Output = Result<UntagProjectResult, RusotoError<UntagProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes tags from a project.

pub fn update_project<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateProjectRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateProjectResult, RusotoError<UpdateProjectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates a project in AWS CodeStar.

pub fn update_team_member<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateTeamMemberRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateTeamMemberResult, RusotoError<UpdateTeamMemberError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

pub fn update_user_profile<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateUserProfileRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateUserProfileResult, RusotoError<UpdateUserProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[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.

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.