Class: Aws::Amplify::Types::ListArtifactsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListArtifactsResult
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
The result structure for the list artifacts request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#artifacts ⇒ Array<Types::Artifact>
A list of artifacts.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#artifacts ⇒ Array<Types::Artifact>
A list of artifacts.
2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2011 class ListArtifactsResult < Struct.new( :artifacts, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.
2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2011 class ListArtifactsResult < Struct.new( :artifacts, :next_token) SENSITIVE = [] include Aws::Structure end |