Class: Aws::CodeCommit::Types::ListRepositoriesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::ListRepositoriesOutput
- Includes:
- Structure
- Defined in:
- 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 CodeCommit, another page of 1,000 records is retrieved.
4412 4413 4414 4415 4416 4417 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4412 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.
4412 4413 4414 4415 4416 4417 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4412 class ListRepositoriesOutput < Struct.new( :repositories, :next_token) SENSITIVE = [] include Aws::Structure end |