• 沒有找到結果。

Sample Request

在文檔中 AWS CodeStar (頁 24-51)

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 24

X-Amz-Target: CodeStar_20170419.DeleteProject X-Amz-Date: 20170405T235449Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170405/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{"id": "my-2nd-project"}

Sample Response

HTTP/1.1 200 OK

x-amzn-RequestId: 41efcceb-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 79

Date: Wed, 05 Apr 2017 23:54:51 GMT

{"projectArn":"arn:aws:codestar:us-east-1:111111111111:project/my-2nd-project"}

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following:

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

DeleteUserProfile

DeleteUserProfile

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.

Request Syntax

{ "userArn": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

userArn (p. 19)

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

Type: String

Length Constraints: Minimum length of 32. Maximum length of 95.

Pattern: ^arn:aws:iam::\d{12}:user(?:(\u002F)|(\u002F[\u0021-\u007E]+\u002F)) [\w+=,.@-]+$

Required: Yes

Response Syntax

{ "userArn": "string"

}

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

userArn (p. 19)

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

Type: String

Length Constraints: Minimum length of 32. Maximum length of 95.

Pattern: ^arn:aws:iam::\d{12}:user(?:(\u002F)|(\u002F[\u0021-\u007E]+\u002F)) [\w+=,.@-]+$

Errors

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

ValidationException

The specified input is either not valid, or it could not be validated.

HTTP Status Code: 400

Examples

Example

This example illustrates one usage of DeleteUserProfile.

Sample Request

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 54

X-Amz-Target: CodeStar_20170419.DeleteUserProfile X-Amz-Date: 20170406T014701Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170406/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{"userArn": "arn:aws:iam::111111111111:user/DemoUser"}

Sample Response

HTTP/1.1 200 OK

x-amzn-RequestId: ef0e59a1-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 53

Date: Thu, 06 Apr 2017 01:47:03 GMT

{"userArn":"arn:aws:iam::111111111111:user/DemoUser"}

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following:

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

See Also

• AWS SDK for Python

• AWS SDK for Ruby V3

DescribeProject

DescribeProject

Describes a project and its resources.

Request Syntax

{

"id": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

id (p. 22)

The ID of the project.

Type: String

Length Constraints: Minimum length of 2. Maximum length of 15.

Pattern: ^[a-z][a-z0-9-]+$

Required: Yes

Response Syntax

{ "arn": "string",

"clientRequestToken": "string", "createdTimeStamp": number, "description": "string", "id": "string",

"name": "string",

"projectTemplateId": "string", "stackId": "string",

"status": {

"reason": "string", "state": "string"

}}

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

arn (p. 22)

The Amazon Resource Name (ARN) for the project.

Response Elements

Type: String

Pattern: ^arn:aws[^:\s]*:codestar:[^:\s]+:[0-9]{12}:project\/[a-z]([a-z0-9|-])+$

clientRequestToken (p. 22)

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

Type: String

Length Constraints: Minimum length of 1. Maximum length of 256.

Pattern: ^[\w:/-]+$

createdTimeStamp (p. 22)

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

Type: Timestamp description (p. 22)

The description of the project, if any.

Type: String

Length Constraints: Maximum length of 1024.

Pattern: ^$|^\S(.*\S)?$

id (p. 22)

The ID of the project.

Type: String

Length Constraints: Minimum length of 2. Maximum length of 15.

Pattern: ^[a-z][a-z0-9-]+$

name (p. 22)

The display name for the project.

Type: String

Length Constraints: Minimum length of 1. Maximum length of 100.

Pattern: ^\S(.*\S)?$

projectTemplateId (p. 22)

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

Type: String

Length Constraints: Minimum length of 1.

Pattern: ^arn:aws[^:\s]{0,5}:codestar:[^:\s]+::project-template(\/(github|

codecommit))?\/[a-z0-9-]+$

stackId (p. 22)

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

Type: String

Errors

Pattern: ^arn:aws[^:\s]*:cloudformation:[^:\s]+:[0-9]{12}:stack\/[^:\s]+\/[^:

\s]+$

status (p. 22)

The project creation or deletion status.

Type: ProjectStatus (p. 71) object

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

ConcurrentModificationException

Another modification is being made. That modification must complete before you can make your change.

HTTP Status Code: 400 InvalidServiceRoleException

The service role is not valid.

HTTP Status Code: 400 ProjectConfigurationException

Project configuration information is required but not specified.

HTTP Status Code: 400 ProjectNotFoundException

The specified AWS CodeStar project was not found.

HTTP Status Code: 400 ValidationException

The specified input is either not valid, or it could not be validated.

HTTP Status Code: 400

Examples

Example

This example illustrates one usage of DescribeProject.

Sample Request

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 25

X-Amz-Target: CodeStar_20170419.DescribeProject X-Amz-Date: 20170406T002601Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

See Also

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170406/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{"id": "my-first-projec"}

Sample Response

HTTP/1.1 200 OK

x-amzn-RequestId: 9e16d048-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 409

Date: Thu, 06 Apr 2017 00:26:03 GMT {

"arn":"arn:aws:codestar:us-east-1:111111111111:project/my-first-projec", "createdTimeStamp":1.491000495561E9,

"description":"AWS CodeStar created project", "id":"my-first-projec","name":"My First Project",

"projectTemplateId":"arn:aws:codestar:us-east-1::project-template/webapp-nodeweb-ec2", "stackId":"arn:aws:cloudformation:us-east-1:111111111111:stack/awscodestar-my-first-projec/01234567-EXAMPLE"

}

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following:

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

DescribeUserProfile

DescribeUserProfile

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

Request Syntax

{ "userArn": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

userArn (p. 26)

The Amazon Resource Name (ARN) of the user.

Type: String

Length Constraints: Minimum length of 32. Maximum length of 95.

Pattern: ^arn:aws:iam::\d{12}:user(?:(\u002F)|(\u002F[\u0021-\u007E]+\u002F)) [\w+=,.@-]+$

Required: Yes

Response Syntax

{

"createdTimestamp": number, "displayName": "string", "emailAddress": "string",

"lastModifiedTimestamp": number, "sshPublicKey": "string",

"userArn": "string"

}

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

createdTimestamp (p. 26)

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

Type: Timestamp displayName (p. 26)

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

Errors

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").

Type: String

Length Constraints: Minimum length of 1. Maximum length of 64.

Pattern: ^\S(.*\S)?$

emailAddress (p. 26)

The email address for the user. Optional.

Type: String

Length Constraints: Minimum length of 3. Maximum length of 128.

Pattern: ^[\w-.+]+@[\w-.+]+$

lastModifiedTimestamp (p. 26)

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

Type: Timestamp sshPublicKey (p. 26)

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.

Type: String

Length Constraints: Maximum length of 16384.

Pattern: ^[\t\r\n\u0020-\u00FF]*$

userArn (p. 26)

The Amazon Resource Name (ARN) of the user.

Type: String

Length Constraints: Minimum length of 32. Maximum length of 95.

Pattern: ^arn:aws:iam::\d{12}:user(?:(\u002F)|(\u002F[\u0021-\u007E]+\u002F)) [\w+=,.@-]+$

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

UserProfileNotFoundException The user profile was not found.

HTTP Status Code: 400 ValidationException

The specified input is either not valid, or it could not be validated.

Examples

HTTP Status Code: 400

Examples

Example

This example illustrates one usage of DescribeUserProfile.

Sample Request

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 55

X-Amz-Target: CodeStar_20170419.DescribeUserProfile X-Amz-Date: 20170406T013327Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170406/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{"userArn": "arn:aws:iam::111111111111:user/Mary_Major"}

Sample Response

HTTP/1.1 200 OK

x-amzn-RequestId: 0a095029-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 216

Date: Thu, 06 Apr 2017 01:33:30 GMT {

"createdTimestamp":1.490634364532E9, "displayName":"Mary Major",

"emailAddress":"[email protected]",

For more information about using this API in one of the language-specific AWS SDKs, see the following:

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

See Also

DisassociateTeamMember

DisassociateTeamMember

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.

Request Syntax

{ "projectId": "string", "userArn": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

projectId (p. 30)

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

Type: String

Length Constraints: Minimum length of 2. Maximum length of 15.

Pattern: ^[a-z][a-z0-9-]+$

Required: Yes userArn (p. 30)

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

Type: String

Length Constraints: Minimum length of 32. Maximum length of 95.

Pattern: ^arn:aws:iam::\d{12}:user(?:(\u002F)|(\u002F[\u0021-\u007E]+\u002F)) [\w+=,.@-]+$

Required: Yes

Response Elements

If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

Examples

ConcurrentModificationException

Another modification is being made. That modification must complete before you can make your change.

HTTP Status Code: 400 InvalidServiceRoleException

The service role is not valid.

HTTP Status Code: 400 ProjectNotFoundException

The specified AWS CodeStar project was not found.

HTTP Status Code: 400 ValidationException

The specified input is either not valid, or it could not be validated.

HTTP Status Code: 400

Examples

Example

This example illustrates one usage of DisassociateTeamMember.

Sample Request

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 93

X-Amz-Target: CodeStar_20170419.DisassociateTeamMember X-Amz-Date: 20170406T015504Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170406/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{"projectId": "my-first-projec", "userArn": "arn:aws:iam::111111111111:user/John_Stiles"}

Sample Response

HTTP/1.1 200 OK

x-amzn-RequestId: 0f2bfaf1-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 2

Date: Thu, 06 Apr 2017 01:55:07 GMT {}

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following:

See Also

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

ListProjects

ListProjects

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

Request Syntax

{ "maxResults": number, "nextToken": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

maxResults (p. 33)

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

Type: Integer

Valid Range: Minimum value of 1. Maximum value of 100.

Required: No nextToken (p. 33)

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

Type: String

Length Constraints: Minimum length of 1. Maximum length of 1024.

Pattern: ^[\w/+=]+$

Required: No

Response Syntax

{

"nextToken": "string", "projects": [

{

"projectArn": "string", "projectId": "string"

} ] }

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

Errors

The following data is returned in JSON format by the service.

nextToken (p. 33)

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

Type: String

Length Constraints: Minimum length of 1. Maximum length of 1024.

Pattern: ^[\w/+=]+$

projects (p. 33) A list of projects.

Type: Array of ProjectSummary (p. 72) objects

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

InvalidNextTokenException The next token is not valid.

HTTP Status Code: 400 ValidationException

The specified input is either not valid, or it could not be validated.

HTTP Status Code: 400

Examples

Example

This example illustrates one usage of ListProjects.

Sample Request

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 2

X-Amz-Target: CodeStar_20170419.ListProjects X-Amz-Date: 20170405T221321Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170405/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{}

Sample Response

HTTP/1.1 200 OK

See Also

x-amzn-RequestId: 15f549f8-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 343

Date: Wed, 05 Apr 2017 22:13:24 GMT {"projects":

[ {

"projectArn":"arn:aws:codestar:us-east-1:111111111111:project/my-2nd-project", "projectId":"my-2nd-project"

},

{ "projectArn":"arn:aws:codestar:us-east-1:111111111111:project/my-first-projec", "projectId":"my-first-projec"

} ] }

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following:

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

ListResources

ListResources

Lists resources associated with a project in AWS CodeStar.

Request Syntax

{

"maxResults": number, "nextToken": "string", "projectId": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

maxResults (p. 36)

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

Type: Integer

Valid Range: Minimum value of 1. Maximum value of 100.

Required: No nextToken (p. 36)

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

Type: String

Length Constraints: Minimum length of 1. Maximum length of 1024.

Pattern: ^[\w/+=]+$

Required: No projectId (p. 36)

The ID of the project.

Type: String

Length Constraints: Minimum length of 2. Maximum length of 15.

Pattern: ^[a-z][a-z0-9-]+$

Required: Yes

Response Syntax

{

Response Elements

"nextToken": "string", "resources": [ {

"id": "string"

} ] }

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

nextToken (p. 36)

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

Type: String

Length Constraints: Minimum length of 1. Maximum length of 1024.

Pattern: ^[\w/+=]+$

resources (p. 36)

An array of resources associated with the project.

Type: Array of Resource (p. 73) objects

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

InvalidNextTokenException The next token is not valid.

HTTP Status Code: 400 ProjectNotFoundException

The specified AWS CodeStar project was not found.

HTTP Status Code: 400 ValidationException

The specified input is either not valid, or it could not be validated.

HTTP Status Code: 400

Examples

Example

This example illustrates one usage of ListResources.

See Also

Sample Request

POST / HTTP/1.1

Host: codestar.us-east-1.amazonaws.com Accept-Encoding: identity

Content-Length: 32

X-Amz-Target: CodeStar_20170419.ListResources X-Amz-Date: 20170405T223505Z

User-Agent: aws-cli/1.11.36 Python/2.7.9 Windows/7 botocore/1.4.93 Content-Type: application/x-amz-json-1.1

Authorization: AWS4-HMAC-SHA256 Credential=AIDACKCEVSQ6C2EXAMPLE/20170405/us-east-1/

codestar/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=c25ddcd5EXAMPLE

{"projectId": "my-first-projec"}

Sample Response

HTTP/1.1 200 OK

x-amzn-RequestId: 1e80e90d-EXAMPLE Content-Type: application/x-amz-json-1.1 Content-Length: 998

Date: Wed, 05 Apr 2017 22:35:07 GMT {"resources":[

For more information about using this API in one of the language-specific AWS SDKs, see the following:

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

ListTagsForProject

ListTagsForProject

Gets the tags for a project.

Request Syntax

{ "id": "string", "maxResults": number, "nextToken": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

id (p. 39)

The ID of the project to get tags for.

Type: String

Length Constraints: Minimum length of 2. Maximum length of 15.

Pattern: ^[a-z][a-z0-9-]+$

Required: Yes maxResults (p. 39)

Reserved for future use.

Type: Integer

Valid Range: Minimum value of 1. Maximum value of 100.

Required: No nextToken (p. 39)

Reserved for future use.

Type: String

Length Constraints: Minimum length of 1. Maximum length of 1024.

Pattern: ^[\w/+=]+$

Required: No

Response Syntax

{

"nextToken": "string", "tags": {

Response Elements

"string" : "string"

}}

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

nextToken (p. 39)

Reserved for future use.

Type: String

Length Constraints: Minimum length of 1. Maximum length of 1024.

Pattern: ^[\w/+=]+$

tags (p. 39)

The tags for the project.

Type: String to string map

Key Length Constraints: Minimum length of 1. Maximum length of 128.

Key Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$

Value Length Constraints: Maximum length of 256.

Value Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$

Errors

For information about the errors that are common to all actions, see Common Errors (p. 82).

InvalidNextTokenException The next token is not valid.

HTTP Status Code: 400 ProjectNotFoundException

The specified AWS CodeStar project was not found.

HTTP Status Code: 400 ValidationException

The specified input is either not valid, or it could not be validated.

HTTP Status Code: 400

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following:

See Also

• AWS Command Line Interface

• AWS SDK for .NET

• AWS SDK for C++

• AWS SDK for Go

• AWS SDK for Java V2

• AWS SDK for JavaScript

• AWS SDK for PHP V3

• AWS SDK for Python

• AWS SDK for Ruby V3

ListTeamMembers

ListTeamMembers

Lists all team members associated with a project.

Request Syntax

{

"maxResults": number, "nextToken": "string", "projectId": "string"

}

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters (p. 80).

The request accepts the following data in JSON format.

The request accepts the following data in JSON format.

在文檔中 AWS CodeStar (頁 24-51)

相關文件