AWS CodeStar

2018/10/24 - AWS CodeStar - 1 updated api methods

Changes  This release lets you create projects from source code and a toolchain definition that you provide.

CreateProject (updated) Link ΒΆ
Changes (request)
{'sourceCode': [{'destination': {'codeCommit': {'name': 'string'},
                                 'gitHub': {'description': 'string',
                                            'issuesEnabled': 'boolean',
                                            'name': 'string',
                                            'owner': 'string',
                                            'privateRepository': 'boolean',
                                            'token': 'string',
                                            'type': 'string'}},
                 'source': {'s3': {'bucketKey': 'string',
                                   'bucketName': 'string'}}}],
 'toolchain': {'roleArn': 'string',
               'source': {'s3': {'bucketKey': 'string',
                                 'bucketName': 'string'}},
               'stackParameters': {'string': 'string'}}}

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.

See also: AWS API Documentation

Request Syntax

client.create_project(
    name='string',
    id='string',
    description='string',
    clientRequestToken='string',
    sourceCode=[
        {
            'source': {
                's3': {
                    'bucketName': 'string',
                    'bucketKey': 'string'
                }
            },
            'destination': {
                'codeCommit': {
                    'name': 'string'
                },
                'gitHub': {
                    'name': 'string',
                    'description': 'string',
                    'type': 'string',
                    'owner': 'string',
                    'privateRepository': True|False,
                    'issuesEnabled': True|False,
                    'token': 'string'
                }
            }
        },
    ],
    toolchain={
        'source': {
            's3': {
                'bucketName': 'string',
                'bucketKey': 'string'
            }
        },
        'roleArn': 'string',
        'stackParameters': {
            'string': 'string'
        }
    },
    tags={
        'string': 'string'
    }
)
type name

string

param name

[REQUIRED]

The display name for the project to be created in AWS CodeStar.

type id

string

param id

[REQUIRED]

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

type description

string

param description

The description of the project, if any.

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.

type sourceCode

list

param sourceCode

A list of the Code objects submitted with the project request. If this parameter is specified, the request must also include the toolchain parameter.

  • (dict) --

    Location and destination information about the source code files provided with the project request. The source code is uploaded to the new project source repository after project creation.

    • source (dict) -- [REQUIRED]

      The location where the source code files provided with the project request are stored. AWS CodeStar retrieves the files during project creation.

      • s3 (dict) -- [REQUIRED]

        Information about the Amazon S3 location where the source code files provided with the project request are stored.

        • bucketName (string) --

          The Amazon S3 bucket name where the source code files provided with the project request are stored.

        • bucketKey (string) --

          The Amazon S3 object key where the source code files provided with the project request are stored.

    • destination (dict) -- [REQUIRED]

      The repository to be created in AWS CodeStar. Valid values are AWS CodeCommit or GitHub. After AWS CodeStar provisions the new repository, the source code files provided with the project request are placed in the repository.

      • codeCommit (dict) --

        Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.

        • name (string) -- [REQUIRED]

          The name of the AWS CodeCommit repository to be created in AWS CodeStar.

      • gitHub (dict) --

        Information about the GitHub repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.

        • name (string) -- [REQUIRED]

          Name of the GitHub repository to be created in AWS CodeStar.

        • description (string) --

          Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.

        • type (string) -- [REQUIRED]

          The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.

        • owner (string) -- [REQUIRED]

          The GitHub username for the owner of the GitHub repository to be created in AWS CodeStar. If this repository should be owned by a GitHub organization, provide its name.

        • privateRepository (boolean) -- [REQUIRED]

          Whether the GitHub repository is to be a private repository.

        • issuesEnabled (boolean) -- [REQUIRED]

          Whether to enable issues for the GitHub repository.

        • token (string) -- [REQUIRED]

          The GitHub user's personal access token for the GitHub repository.

type toolchain

dict

param toolchain

The name of the toolchain template file submitted with the project request. If this parameter is specified, the request must also include the sourceCode parameter.

  • source (dict) -- [REQUIRED]

    The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.

    • s3 (dict) -- [REQUIRED]

      The Amazon S3 bucket where the toolchain template file provided with the project request is stored.

      • bucketName (string) --

        The Amazon S3 bucket name where the source code files provided with the project request are stored.

      • bucketKey (string) --

        The Amazon S3 object key where the source code files provided with the project request are stored.

  • roleArn (string) --

    The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.

  • stackParameters (dict) --

    The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.

    • (string) --

      • (string) --

type tags

dict

param tags

The tags created for the project.

  • (string) --

    • (string) --

rtype

dict

returns

Response Syntax

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

Response Structure

  • (dict) --

    • id (string) --

      The ID of the project.

    • arn (string) --

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

    • clientRequestToken (string) --

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

    • projectTemplateId (string) --

      Reserved for future use.