AWS CodeStar

2017/04/19 - AWS CodeStar - 15 new api methods

Changes  AWS CodeStar is a cloud-based service for creating, managing, and working with software development projects on AWS. An AWS CodeStar project creates and integrates AWS services for your project development toolchain. AWS CodeStar also manages the permissions required for project users.

ListProjects (new) Link ¶

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

See also: AWS API Documentation

Request Syntax

client.list_projects(
    nextToken='string',
    maxResults=123
)
type nextToken

string

param nextToken

The continuation token to be used to return the next set of results, if the results cannot be returned in one response.

type maxResults

integer

param maxResults

The maximum amount of data that can be contained in a single set of results.

rtype

dict

returns

Response Syntax

{
    'projects': [
        {
            'projectId': 'string',
            'projectArn': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • projects (list) --

      A list of projects.

      • (dict) --

        Information about the metadata for a project.

        • projectId (string) --

          The ID of the project.

        • projectArn (string) --

          The Amazon Resource Name (ARN) of the project.

    • nextToken (string) --

      The continuation token to use when requesting the next set of results, if there are more results to be returned.

DeleteProject (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.delete_project(
    id='string',
    clientRequestToken='string',
    deleteStack=True|False
)
type id

string

param id

[REQUIRED]

The ID of the project to be deleted in AWS CodeStar.

type clientRequestToken

string

param clientRequestToken

A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request.

type deleteStack

boolean

param deleteStack

Whether to send a delete request for the primary stack in AWS CloudFormation originally used to generate the project and its resources. This option will delete all AWS resources for the project (except for any buckets in Amazon S3) as well as deleting the project itself. Recommended for most use cases.

rtype

dict

returns

Response Syntax

{
    'stackId': 'string',
    'projectArn': 'string'
}

Response Structure

  • (dict) --

    • stackId (string) --

      The ID of the primary stack in AWS CloudFormation that will be deleted as part of deleting the project and its resources.

    • projectArn (string) --

      The Amazon Resource Name (ARN) of the deleted project.

DescribeUserProfile (new) Link ¶

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

See also: AWS API Documentation

Request Syntax

client.describe_user_profile(
    userArn='string'
)
type userArn

string

param userArn

[REQUIRED]

The Amazon Resource Name (ARN) of the user.

rtype

dict

returns

Response Syntax

{
    'userArn': 'string',
    'displayName': 'string',
    'emailAddress': 'string',
    'sshPublicKey': 'string',
    'createdTimestamp': datetime(2015, 1, 1),
    'lastModifiedTimestamp': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --

    • userArn (string) --

      The Amazon Resource Name (ARN) of the user.

    • displayName (string) --

      The display name shown for the user in AWS CodeStar projects. For example, this could be set to both first and last name ("Mary Major") or a single name ("Mary"). The display name is also used to generate the initial icon associated with the user in AWS CodeStar projects. If spaces are included in the display name, the first character that appears after the space will be used as the second character in the user initial icon. The initial icon displays a maximum of two characters, so a display name with more than one space (for example "Mary Jane Major") would generate an initial icon using the first character and the first character after the space ("MJ", not "MM").

    • emailAddress (string) --

      The email address for the user. Optional.

    • sshPublicKey (string) --

      The SSH public key associated with the user. This SSH public key is associated with the user profile, and can be used in conjunction with the associated private key for access to project resources, such as Amazon EC2 instances, if a project owner grants remote access to those resources.

    • createdTimestamp (datetime) --

      The date and time when the user profile was created in AWS CodeStar, in timestamp format.

    • lastModifiedTimestamp (datetime) --

      The date and time when the user profile was last modified, in timestamp format.

ListTeamMembers (new) Link ¶

Lists all team members associated with a project.

See also: AWS API Documentation

Request Syntax

client.list_team_members(
    projectId='string',
    nextToken='string',
    maxResults=123
)
type projectId

string

param projectId

[REQUIRED]

The ID of the project for which you want to list team members.

type nextToken

string

param nextToken

The continuation token for the next set of results, if the results cannot be returned in one response.

type maxResults

integer

param maxResults

The maximum number of team members you want returned in a response.

rtype

dict

returns

Response Syntax

{
    'teamMembers': [
        {
            'userArn': 'string',
            'projectRole': 'string',
            'remoteAccessAllowed': True|False
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • teamMembers (list) --

      A list of team member objects for the project.

      • (dict) --

        Information about a team member in a project.

        • userArn (string) --

          The Amazon Resource Name (ARN) of the user in IAM.

        • projectRole (string) --

          The role assigned to the user in the project. Project roles have different levels of access. For more information, see Working with Teams in the AWS CodeStar User Guide.

        • remoteAccessAllowed (boolean) --

          Whether the user is allowed to remotely access project resources using an SSH public/private key pair.

    • nextToken (string) --

      The continuation token to use when requesting the next set of results, if there are more results to be returned.

UpdateTeamMember (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.update_team_member(
    projectId='string',
    userArn='string',
    projectRole='string',
    remoteAccessAllowed=True|False
)
type projectId

string

param projectId

[REQUIRED]

The ID of the project.

type userArn

string

param userArn

[REQUIRED]

The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.

type projectRole

string

param projectRole

The role assigned to the user in the project. Project roles have different levels of access. For more information, see Working with Teams in the AWS CodeStar User Guide.

type remoteAccessAllowed

boolean

param remoteAccessAllowed

Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile. Even if this is set to True, the user must associate a public key with their profile before the user can access resources.

rtype

dict

returns

Response Syntax

{
    'userArn': 'string',
    'projectRole': 'string',
    'remoteAccessAllowed': True|False
}

Response Structure

  • (dict) --

    • userArn (string) --

      The Amazon Resource Name (ARN) of the user whose team membership attributes were updated.

    • projectRole (string) --

      The project role granted to the user.

    • remoteAccessAllowed (boolean) --

      Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile.

CreateUserProfile (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.create_user_profile(
    userArn='string',
    displayName='string',
    emailAddress='string',
    sshPublicKey='string'
)
type userArn

string

param userArn

[REQUIRED]

The Amazon Resource Name (ARN) of the user in IAM.

type displayName

string

param displayName

[REQUIRED]

The name that will be displayed as the friendly name for the user in AWS CodeStar.

type emailAddress

string

param emailAddress

[REQUIRED]

The email address that will be displayed as part of the user's profile in AWS CodeStar.

type sshPublicKey

string

param sshPublicKey

The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.

rtype

dict

returns

Response Syntax

{
    'userArn': 'string',
    'displayName': 'string',
    'emailAddress': 'string',
    'sshPublicKey': 'string',
    'createdTimestamp': datetime(2015, 1, 1),
    'lastModifiedTimestamp': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --

    • userArn (string) --

      The Amazon Resource Name (ARN) of the user in IAM.

    • displayName (string) --

      The name that is displayed as the friendly name for the user in AWS CodeStar.

    • emailAddress (string) --

      The email address that is displayed as part of the user's profile in AWS CodeStar.

    • sshPublicKey (string) --

      The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources.

    • createdTimestamp (datetime) --

      The date the user profile was created, in timestamp format.

    • lastModifiedTimestamp (datetime) --

      The date the user profile was last modified, in timestamp format.

DisassociateTeamMember (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.disassociate_team_member(
    projectId='string',
    userArn='string'
)
type projectId

string

param projectId

[REQUIRED]

The ID of the AWS CodeStar project from which you want to remove a team member.

type userArn

string

param userArn

[REQUIRED]

The Amazon Resource Name (ARN) of the IAM user or group whom you want to remove from the project.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

ListUserProfiles (new) Link ¶

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

See also: AWS API Documentation

Request Syntax

client.list_user_profiles(
    nextToken='string',
    maxResults=123
)
type nextToken

string

param nextToken

The continuation token for the next set of results, if the results cannot be returned in one response.

type maxResults

integer

param maxResults

The maximum number of results to return in a response.

rtype

dict

returns

Response Syntax

{
    'userProfiles': [
        {
            'userArn': 'string',
            'displayName': 'string',
            'emailAddress': 'string',
            'sshPublicKey': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • userProfiles (list) --

      All the user profiles configured in AWS CodeStar for an AWS account.

      • (dict) --

        Information about a user's profile in AWS CodeStar.

        • userArn (string) --

          The Amazon Resource Name (ARN) of the user in IAM.

        • displayName (string) --

          The display name of a user in AWS CodeStar. For example, this could be set to both first and last name ("Mary Major") or a single name ("Mary"). The display name is also used to generate the initial icon associated with the user in AWS CodeStar projects. If spaces are included in the display name, the first character that appears after the space will be used as the second character in the user initial icon. The initial icon displays a maximum of two characters, so a display name with more than one space (for example "Mary Jane Major") would generate an initial icon using the first character and the first character after the space ("MJ", not "MM").

        • emailAddress (string) --

          The email address associated with the user.

        • sshPublicKey (string) --

          The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.

    • nextToken (string) --

      The continuation token to use when requesting the next set of results, if there are more results to be returned.

CreateProject (new) Link ¶

Creates a project in AWS CodeStar with minimal structure and no resources.

See also: AWS API Documentation

Request Syntax

client.create_project(
    name='string',
    id='string',
    description='string',
    clientRequestToken='string'
)
type name

string

param name

[REQUIRED]

The friendly name for the project. This friendly name serves as the basis for the names for resources associated with the project, such as a repository name in AWS CodeCommit. The name is limited to 100 characters and cannot contain certain restricted symbols. For more information, see Limits in the AWS CodeStar User Guide.

type id

string

param id

[REQUIRED]

The ID for the AWS CodeStar project. Project IDs must be unique within an AWS account. Project IDs cannot exceed 15 characters and cannot contain capital letters and other restricted symbols. For more information, see Limits in the AWS CodeStar User Guide.

type description

string

param description

Optional. The description for the project.

type clientRequestToken

string

param clientRequestToken

A user- or system-generated token that identifies the entity that requested project creation. This token can be used to repeat the request. It can also be used to identify which user or system made the request in DescribeProject and ListProjects.

rtype

dict

returns

Response Syntax

{
    'id': 'string',
    'arn': 'string',
    'clientRequestToken': 'string',
    'projectTemplateId': 'string'
}

Response Structure

  • (dict) --

    • id (string) --

      The ID for the project.

    • arn (string) --

      The Amazon Resource Name (ARN) for the project.

    • clientRequestToken (string) --

      The user- or system-generated token from the initial request that can be used to repeat the request. It can also be used to identify which user or system made the request in DescribeProject and ListProjects.

    • projectTemplateId (string) --

      The ID for the AWS CodeStar project template used to create the project.

DeleteUserProfile (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.delete_user_profile(
    userArn='string'
)
type userArn

string

param userArn

[REQUIRED]

The Amazon Resource Name (ARN) of the user to delete from AWS CodeStar.

rtype

dict

returns

Response Syntax

{
    'userArn': 'string'
}

Response Structure

  • (dict) --

    • userArn (string) --

      The Amazon Resource Name (ARN) of the user deleted from AWS CodeStar.

ListResources (new) Link ¶

Lists resources associated with a project in AWS CodeStar.

See also: AWS API Documentation

Request Syntax

client.list_resources(
    projectId='string',
    nextToken='string',
    maxResults=123
)
type projectId

string

param projectId

[REQUIRED]

The ID of the project.

type nextToken

string

param nextToken

The continuation token for the next set of results, if the results cannot be returned in one response.

type maxResults

integer

param maxResults

he maximum amount of data that can be contained in a single set of results.

rtype

dict

returns

Response Syntax

{
    'resources': [
        {
            'id': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • resources (list) --

      An array of resources associated with the project.

      • (dict) --

        Information about a resource for a project.

        • id (string) --

          The Amazon Resource Name (ARN) of the resource.

    • nextToken (string) --

      The continuation token to use when requesting the next set of results, if there are more results to be returned.

AssociateTeamMember (new) Link ¶

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

See also: AWS API Documentation

Request Syntax

client.associate_team_member(
    projectId='string',
    clientRequestToken='string',
    userArn='string',
    projectRole='string',
    remoteAccessAllowed=True|False
)
type projectId

string

param projectId

[REQUIRED]

The ID of the project to which you will add the IAM user.

type clientRequestToken

string

param clientRequestToken

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.

type userArn

string

param userArn

[REQUIRED]

The Amazon Resource Name (ARN) for the IAM user you want to add to the DevHub project.

type projectRole

string

param projectRole

[REQUIRED]

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.

type remoteAccessAllowed

boolean

param remoteAccessAllowed

Whether the team member is allowed to use an SSH public/private key pair to remotely access project resources, for example Amazon EC2 instances.

rtype

dict

returns

Response Syntax

{
    'clientRequestToken': 'string'
}

Response Structure

  • (dict) --

    • clientRequestToken (string) --

      The user- or system-generated token from the initial request that can be used to repeat the request.

DescribeProject (new) Link ¶

Describes a project and its resources.

See also: AWS API Documentation

Request Syntax

client.describe_project(
    id='string'
)
type id

string

param id

[REQUIRED]

The ID of the project.

rtype

dict

returns

Response Syntax

{
    'name': 'string',
    'id': 'string',
    'arn': 'string',
    'description': 'string',
    'clientRequestToken': 'string',
    'createdTimeStamp': datetime(2015, 1, 1),
    'stackId': 'string',
    'projectTemplateId': 'string'
}

Response Structure

  • (dict) --

    • name (string) --

      The display name for the project.

    • id (string) --

      The ID of the project.

    • arn (string) --

      The Amazon Resource Name (ARN) for the project.

    • description (string) --

      The description of the project, if any.

    • clientRequestToken (string) --

      A user- or system-generated token that identifies the entity that requested project creation.

    • createdTimeStamp (datetime) --

      The date and time the project was created, in timestamp format.

    • stackId (string) --

      The ID of the primary stack in AWS CloudFormation used to generate resources for the project.

    • projectTemplateId (string) --

      The ID for the AWS CodeStar project template used to create the project.

UpdateProject (new) Link ¶

Updates a project in AWS CodeStar.

See also: AWS API Documentation

Request Syntax

client.update_project(
    id='string',
    name='string',
    description='string'
)
type id

string

param id

[REQUIRED]

The ID of the project you want to update.

type name

string

param name

The name of the project you want to update.

type description

string

param description

The description of the project, if any.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

UpdateUserProfile (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.update_user_profile(
    userArn='string',
    displayName='string',
    emailAddress='string',
    sshPublicKey='string'
)
type userArn

string

param userArn

[REQUIRED]

The name that will be displayed as the friendly name for the user in AWS CodeStar.

type displayName

string

param displayName

The name that is displayed as the friendly name for the user in AWS CodeStar.

type emailAddress

string

param emailAddress

The email address that is displayed as part of the user's profile in AWS CodeStar.

type sshPublicKey

string

param sshPublicKey

The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.

rtype

dict

returns

Response Syntax

{
    'userArn': 'string',
    'displayName': 'string',
    'emailAddress': 'string',
    'sshPublicKey': 'string',
    'createdTimestamp': datetime(2015, 1, 1),
    'lastModifiedTimestamp': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --

    • userArn (string) --

      The Amazon Resource Name (ARN) of the user in IAM.

    • displayName (string) --

      The name that is displayed as the friendly name for the user in AWS CodeStar.

    • emailAddress (string) --

      The email address that is displayed as part of the user's profile in AWS CodeStar.

    • sshPublicKey (string) --

      The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources.

    • createdTimestamp (datetime) --

      The date the user profile was created, in timestamp format.

    • lastModifiedTimestamp (datetime) --

      The date the user profile was last modified, in timestamp format.