Class: Aws::ECRPublic::Types::DescribeRepositoriesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::DescribeRepositoriesResponse
- Defined in:
- gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The
nextToken
value to include in a futureDescribeRepositories
request. -
#repositories ⇒ Array<Types::Repository>
A list of repository objects corresponding to valid repositories.
Instance Attribute Details
#next_token ⇒ String
The nextToken
value to include in a future DescribeRepositories
request. When the results of a DescribeRepositories
request exceed
maxResults
, this value can be used to retrieve the next page of
results. If there are no more results to return, this value is
null
.
570 571 572 573 574 575 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 570 class DescribeRepositoriesResponse < Struct.new( :repositories, :next_token) SENSITIVE = [] include Aws::Structure end |
#repositories ⇒ Array<Types::Repository>
A list of repository objects corresponding to valid repositories.
570 571 572 573 574 575 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 570 class DescribeRepositoriesResponse < Struct.new( :repositories, :next_token) SENSITIVE = [] include Aws::Structure end |