Class: Aws::Proton::Types::ListRepositoriesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::ListRepositoriesInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass ListRepositoriesInput data as a hash:
{
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of repositories to list.
-
#next_token ⇒ String
A token that indicates the location of the next repository in the array of repositories, after the list of repositories previously requested.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of repositories to list.
3468 3469 3470 3471 3472 3473 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3468 class ListRepositoriesInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the location of the next repository in the array of repositories, after the list of repositories previously requested.
3468 3469 3470 3471 3472 3473 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3468 class ListRepositoriesInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |