Class: Aws::CodeArtifact::Types::ListPackagesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::ListPackagesResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If there are additional results, this is the token for the next set of results.
-
#packages ⇒ Array<Types::PackageSummary>
The list of returned [PackageSummary] objects.
Instance Attribute Details
#next_token ⇒ String
If there are additional results, this is the token for the next set of results.
2690 2691 2692 2693 2694 2695 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2690 class ListPackagesResult < Struct.new( :packages, :next_token) SENSITIVE = [] include Aws::Structure end |
#packages ⇒ Array<Types::PackageSummary>
The list of returned [PackageSummary] objects.
[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html
2690 2691 2692 2693 2694 2695 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2690 class ListPackagesResult < Struct.new( :packages, :next_token) SENSITIVE = [] include Aws::Structure end |