Class: Aws::CodeStar::Types::ListTeamMembersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::ListTeamMembersRequest
- Defined in:
- gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb
Overview
Note:
When making an API call, you may pass ListTeamMembersRequest data as a hash:
{
project_id: "ProjectId", # required
next_token: "PaginationToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of team members you want returned in a response.
-
#next_token ⇒ String
The continuation token for the next set of results, if the results cannot be returned in one response.
-
#project_id ⇒ String
The ID of the project for which you want to list team members.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of team members you want returned in a response.
953 954 955 956 957 958 959 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 953 class ListTeamMembersRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The continuation token for the next set of results, if the results cannot be returned in one response.
953 954 955 956 957 958 959 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 953 class ListTeamMembersRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#project_id ⇒ String
The ID of the project for which you want to list team members.
953 954 955 956 957 958 959 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 953 class ListTeamMembersRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |