/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the codestar-2017-04-19.normal.json service model. */ using System; using System.Threading; using System.Threading.Tasks; using System.Collections.Generic; using Amazon.Runtime; using Amazon.CodeStar.Model; namespace Amazon.CodeStar { /// <summary> /// Interface for accessing CodeStar /// /// AWS CodeStar /// <para> /// This is the API reference for AWS CodeStar. This reference provides descriptions of /// the operations and data types for the AWS CodeStar API along with usage examples. /// </para> /// /// <para> /// You can use the AWS CodeStar API to work with: /// </para> /// /// <para> /// Projects and their resources, by calling the following: /// </para> /// <ul> <li> /// <para> /// <code>DeleteProject</code>, which deletes a project. /// </para> /// </li> <li> /// <para> /// <code>DescribeProject</code>, which lists the attributes of a project. /// </para> /// </li> <li> /// <para> /// <code>ListProjects</code>, which lists all projects associated with your AWS account. /// </para> /// </li> <li> /// <para> /// <code>ListResources</code>, which lists the resources associated with a project. /// </para> /// </li> <li> /// <para> /// <code>ListTagsForProject</code>, which lists the tags associated with a project. /// </para> /// </li> <li> /// <para> /// <code>TagProject</code>, which adds tags to a project. /// </para> /// </li> <li> /// <para> /// <code>UntagProject</code>, which removes tags from a project. /// </para> /// </li> <li> /// <para> /// <code>UpdateProject</code>, which updates the attributes of a project. /// </para> /// </li> </ul> /// <para> /// Teams and team members, by calling the following: /// </para> /// <ul> <li> /// <para> /// <code>AssociateTeamMember</code>, which adds an IAM user to the team for a project. /// </para> /// </li> <li> /// <para> /// <code>DisassociateTeamMember</code>, which removes an IAM user from the team for /// a project. /// </para> /// </li> <li> /// <para> /// <code>ListTeamMembers</code>, which lists all the IAM users in the team for a project, /// including their roles and attributes. /// </para> /// </li> <li> /// <para> /// <code>UpdateTeamMember</code>, which updates a team member's attributes in a project. /// </para> /// </li> </ul> /// <para> /// Users, by calling the following: /// </para> /// <ul> <li> /// <para> /// <code>CreateUserProfile</code>, which creates a user profile that contains data associated /// with the user across all projects. /// </para> /// </li> <li> /// <para> /// <code>DeleteUserProfile</code>, which deletes all user profile information across /// all projects. /// </para> /// </li> <li> /// <para> /// <code>DescribeUserProfile</code>, which describes the profile of a user. /// </para> /// </li> <li> /// <para> /// <code>ListUserProfiles</code>, which lists all user profiles. /// </para> /// </li> <li> /// <para> /// <code>UpdateUserProfile</code>, which updates the profile for a user. /// </para> /// </li> </ul> /// </summary> public partial interface IAmazonCodeStar : IAmazonService, IDisposable { #region AssociateTeamMember /// <summary> /// Adds an IAM user to the team for an AWS CodeStar project. /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateTeamMember service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the AssociateTeamMember service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.InvalidServiceRoleException"> /// The service role is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.LimitExceededException"> /// A resource limit has been exceeded. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectConfigurationException"> /// Project configuration information is required but not specified. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.TeamMemberAlreadyAssociatedException"> /// The team member is already associated with a role in this project. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/AssociateTeamMember">REST API Reference for AssociateTeamMember Operation</seealso> Task<AssociateTeamMemberResponse> AssociateTeamMemberAsync(AssociateTeamMemberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateProject /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.InvalidServiceRoleException"> /// The service role is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.LimitExceededException"> /// A resource limit has been exceeded. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectAlreadyExistsException"> /// An AWS CodeStar project with the same ID already exists in this region for the AWS /// account. AWS CodeStar project IDs must be unique within a region for the AWS account. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectConfigurationException"> /// Project configuration information is required but not specified. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectCreationFailedException"> /// The project creation request was valid, but a nonspecific exception or error occurred /// during project creation. The project could not be created in AWS CodeStar. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/CreateProject">REST API Reference for CreateProject Operation</seealso> Task<CreateProjectResponse> CreateProjectAsync(CreateProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateUserProfile /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateUserProfile service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateUserProfile service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.UserProfileAlreadyExistsException"> /// A user profile with that name already exists in this region for the AWS account. AWS /// CodeStar user profile names must be unique within a region for the AWS account. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/CreateUserProfile">REST API Reference for CreateUserProfile Operation</seealso> Task<CreateUserProfileResponse> CreateUserProfileAsync(CreateUserProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteProject /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.InvalidServiceRoleException"> /// The service role is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DeleteProject">REST API Reference for DeleteProject Operation</seealso> Task<DeleteProjectResponse> DeleteProjectAsync(DeleteProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteUserProfile /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteUserProfile service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteUserProfile service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DeleteUserProfile">REST API Reference for DeleteUserProfile Operation</seealso> Task<DeleteUserProfileResponse> DeleteUserProfileAsync(DeleteUserProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeProject /// <summary> /// Describes a project and its resources. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.InvalidServiceRoleException"> /// The service role is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectConfigurationException"> /// Project configuration information is required but not specified. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DescribeProject">REST API Reference for DescribeProject Operation</seealso> Task<DescribeProjectResponse> DescribeProjectAsync(DescribeProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeUserProfile /// <summary> /// Describes a user in AWS CodeStar and the user attributes across all projects. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeUserProfile service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeUserProfile service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.UserProfileNotFoundException"> /// The user profile was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DescribeUserProfile">REST API Reference for DescribeUserProfile Operation</seealso> Task<DescribeUserProfileResponse> DescribeUserProfileAsync(DescribeUserProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DisassociateTeamMember /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateTeamMember service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DisassociateTeamMember service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.InvalidServiceRoleException"> /// The service role is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DisassociateTeamMember">REST API Reference for DisassociateTeamMember Operation</seealso> Task<DisassociateTeamMemberResponse> DisassociateTeamMemberAsync(DisassociateTeamMemberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListProjects /// <summary> /// Lists all projects in AWS CodeStar associated with your AWS account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListProjects service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListProjects service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.InvalidNextTokenException"> /// The next token is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ListProjects">REST API Reference for ListProjects Operation</seealso> Task<ListProjectsResponse> ListProjectsAsync(ListProjectsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListResources /// <summary> /// Lists resources associated with a project in AWS CodeStar. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListResources service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListResources service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.InvalidNextTokenException"> /// The next token is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ListResources">REST API Reference for ListResources Operation</seealso> Task<ListResourcesResponse> ListResourcesAsync(ListResourcesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListTagsForProject /// <summary> /// Gets the tags for a project. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListTagsForProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.InvalidNextTokenException"> /// The next token is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ListTagsForProject">REST API Reference for ListTagsForProject Operation</seealso> Task<ListTagsForProjectResponse> ListTagsForProjectAsync(ListTagsForProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListTeamMembers /// <summary> /// Lists all team members associated with a project. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTeamMembers service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListTeamMembers service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.InvalidNextTokenException"> /// The next token is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ListTeamMembers">REST API Reference for ListTeamMembers Operation</seealso> Task<ListTeamMembersResponse> ListTeamMembersAsync(ListTeamMembersRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListUserProfiles /// <summary> /// Lists all the user profiles configured for your AWS account in AWS CodeStar. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListUserProfiles service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListUserProfiles service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.InvalidNextTokenException"> /// The next token is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ListUserProfiles">REST API Reference for ListUserProfiles Operation</seealso> Task<ListUserProfilesResponse> ListUserProfilesAsync(ListUserProfilesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region TagProject /// <summary> /// Adds tags to a project. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the TagProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.LimitExceededException"> /// A resource limit has been exceeded. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/TagProject">REST API Reference for TagProject Operation</seealso> Task<TagProjectResponse> TagProjectAsync(TagProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UntagProject /// <summary> /// Removes tags from a project. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UntagProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.LimitExceededException"> /// A resource limit has been exceeded. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/UntagProject">REST API Reference for UntagProject Operation</seealso> Task<UntagProjectResponse> UntagProjectAsync(UntagProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateProject /// <summary> /// Updates a project in AWS CodeStar. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateProject service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateProject service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/UpdateProject">REST API Reference for UpdateProject Operation</seealso> Task<UpdateProjectResponse> UpdateProjectAsync(UpdateProjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateTeamMember /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateTeamMember service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateTeamMember service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.ConcurrentModificationException"> /// Another modification is being made. That modification must complete before you can /// make your change. /// </exception> /// <exception cref="Amazon.CodeStar.Model.InvalidServiceRoleException"> /// The service role is not valid. /// </exception> /// <exception cref="Amazon.CodeStar.Model.LimitExceededException"> /// A resource limit has been exceeded. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectConfigurationException"> /// Project configuration information is required but not specified. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ProjectNotFoundException"> /// The specified AWS CodeStar project was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.TeamMemberNotFoundException"> /// The specified team member was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/UpdateTeamMember">REST API Reference for UpdateTeamMember Operation</seealso> Task<UpdateTeamMemberResponse> UpdateTeamMemberAsync(UpdateTeamMemberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateUserProfile /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateUserProfile service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateUserProfile service method, as returned by CodeStar.</returns> /// <exception cref="Amazon.CodeStar.Model.UserProfileNotFoundException"> /// The user profile was not found. /// </exception> /// <exception cref="Amazon.CodeStar.Model.ValidationException"> /// The specified input is either not valid, or it could not be validated. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/UpdateUserProfile">REST API Reference for UpdateUserProfile Operation</seealso> Task<UpdateUserProfileResponse> UpdateUserProfileAsync(UpdateUserProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion } }