Class: Aws::CodeArtifact::Types::ListRepositoriesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::ListRepositoriesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return per page.
-
#next_token ⇒ String
The token for the next set of results.
-
#repository_prefix ⇒ String
A prefix used to filter returned repositories.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return per page.
2775 2776 2777 2778 2779 2780 2781 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2775 class ListRepositoriesRequest < Struct.new( :repository_prefix, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
2775 2776 2777 2778 2779 2780 2781 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2775 class ListRepositoriesRequest < Struct.new( :repository_prefix, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#repository_prefix ⇒ String
A prefix used to filter returned repositories. Only repositories with names that start with ‘repositoryPrefix` are returned.
2775 2776 2777 2778 2779 2780 2781 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2775 class ListRepositoriesRequest < Struct.new( :repository_prefix, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |