Class: Aws::CodeGuruReviewer::Types::ListCodeReviewsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::ListCodeReviewsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results that are returned per call.
-
#next_token ⇒ String
If ‘nextToken` is returned, there are more results available.
-
#provider_types ⇒ Array<String>
List of provider types for filtering that needs to be applied before displaying the result.
-
#repository_names ⇒ Array<String>
List of repository names for filtering that needs to be applied before displaying the result.
-
#states ⇒ Array<String>
List of states for filtering that needs to be applied before displaying the result.
-
#type ⇒ String
The type of code reviews to list in the response.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results that are returned per call. The default is 100.
821 822 823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 821 class ListCodeReviewsRequest < Struct.new( :provider_types, :states, :repository_names, :type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If ‘nextToken` is returned, there are more results available. The value of `nextToken` is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
821 822 823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 821 class ListCodeReviewsRequest < Struct.new( :provider_types, :states, :repository_names, :type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#provider_types ⇒ Array<String>
List of provider types for filtering that needs to be applied before displaying the result. For example, ‘providerTypes=` lists code reviews from GitHub.
821 822 823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 821 class ListCodeReviewsRequest < Struct.new( :provider_types, :states, :repository_names, :type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#repository_names ⇒ Array<String>
List of repository names for filtering that needs to be applied before displaying the result.
821 822 823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 821 class ListCodeReviewsRequest < Struct.new( :provider_types, :states, :repository_names, :type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#states ⇒ Array<String>
List of states for filtering that needs to be applied before displaying the result. For example, ‘states=` lists code reviews in the Pending state.
The valid code review states are:
-
‘Completed`: The code review is complete.
-
‘Pending`: The code review started and has not completed or failed.
-
‘Failed`: The code review failed.
-
‘Deleting`: The code review is being deleted.
821 822 823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 821 class ListCodeReviewsRequest < Struct.new( :provider_types, :states, :repository_names, :type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of code reviews to list in the response.
821 822 823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 821 class ListCodeReviewsRequest < Struct.new( :provider_types, :states, :repository_names, :type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |