Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CodeStar

import { CodeStar } from "https://aws-api.deno.dev/v0.3/services/codestar.ts?docs=full";
class CodeStar {
constructor(apiFactory: client.ApiFactory);
async associateTeamMember(params: AssociateTeamMemberRequest, opts?: client.RequestOptions): Promise<AssociateTeamMemberResult>;
async createProject(params: CreateProjectRequest, opts?: client.RequestOptions): Promise<CreateProjectResult>;
async createUserProfile(params: CreateUserProfileRequest, opts?: client.RequestOptions): Promise<CreateUserProfileResult>;
async deleteProject(params: DeleteProjectRequest, opts?: client.RequestOptions): Promise<DeleteProjectResult>;
async deleteUserProfile(params: DeleteUserProfileRequest, opts?: client.RequestOptions): Promise<DeleteUserProfileResult>;
async describeProject(params: DescribeProjectRequest, opts?: client.RequestOptions): Promise<DescribeProjectResult>;
async describeUserProfile(params: DescribeUserProfileRequest, opts?: client.RequestOptions): Promise<DescribeUserProfileResult>;
async disassociateTeamMember(params: DisassociateTeamMemberRequest, opts?: client.RequestOptions): Promise<void>;
async listProjects(params?: ListProjectsRequest, opts?: client.RequestOptions): Promise<ListProjectsResult>;
async listResources(params: ListResourcesRequest, opts?: client.RequestOptions): Promise<ListResourcesResult>;
async listTagsForProject(params: ListTagsForProjectRequest, opts?: client.RequestOptions): Promise<ListTagsForProjectResult>;
async listTeamMembers(params: ListTeamMembersRequest, opts?: client.RequestOptions): Promise<ListTeamMembersResult>;
async listUserProfiles(params?: ListUserProfilesRequest, opts?: client.RequestOptions): Promise<ListUserProfilesResult>;
async tagProject(params: TagProjectRequest, opts?: client.RequestOptions): Promise<TagProjectResult>;
async untagProject(params: UntagProjectRequest, opts?: client.RequestOptions): Promise<void>;
async updateProject(params: UpdateProjectRequest, opts?: client.RequestOptions): Promise<void>;
async updateTeamMember(params: UpdateTeamMemberRequest, opts?: client.RequestOptions): Promise<UpdateTeamMemberResult>;
async updateUserProfile(params: UpdateUserProfileRequest, opts?: client.RequestOptions): Promise<UpdateUserProfileResult>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new CodeStar(apiFactory: client.ApiFactory)
[src]

§Methods

§

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

§

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.

§

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.

§

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.

§

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.

§

Describes a project and its resources.

§

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

§
disassociateTeamMember(params: DisassociateTeamMemberRequest, opts?: client.RequestOptions): Promise<void>
[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.

§
listProjects(params?: ListProjectsRequest, opts?: client.RequestOptions): Promise<ListProjectsResult>
[src]

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

§

Lists resources associated with a project in AWS CodeStar.

§

Gets the tags for a project.

§

Lists all team members associated with a project.

§

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

§
tagProject(params: TagProjectRequest, opts?: client.RequestOptions): Promise<TagProjectResult>
[src]

Adds tags to a project.

§
untagProject(params: UntagProjectRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes tags from a project.

§
updateProject(params: UpdateProjectRequest, opts?: client.RequestOptions): Promise<void>
[src]

Updates a project in AWS CodeStar.

§

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.

§

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.

§Static Properties