Class: Aws::CodeCommit::Types::ListRepositoriesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::ListRepositoriesOutput
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Represents the output of a list repositories operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
An enumeration token that allows the operation to batch the results of the operation.
-
#repositories ⇒ Array<Types::RepositoryNameIdPair>
Lists the repositories called by the list repositories operation.
Instance Attribute Details
#next_token ⇒ String
An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
4775 4776 4777 4778 4779 4780 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 4775 class ListRepositoriesOutput < Struct.new( :repositories, :next_token) SENSITIVE = [] include Aws::Structure end |
#repositories ⇒ Array<Types::RepositoryNameIdPair>
Lists the repositories called by the list repositories operation.
4775 4776 4777 4778 4779 4780 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 4775 class ListRepositoriesOutput < Struct.new( :repositories, :next_token) SENSITIVE = [] include Aws::Structure end |