Class: Aws::EC2::Types::DescribeSnapshotsResult

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Contains the output of DescribeSnapshots.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The ‘NextToken` value to include in a future `DescribeSnapshots` request. When the results of a `DescribeSnapshots` request exceed `MaxResults`, this value can be used to retrieve the next page of results. This value is `null` when there are no more results to return.

Returns:

  • (String)


14815
14816
14817
14818
14819
# File 'lib/aws-sdk-ec2/types.rb', line 14815

class DescribeSnapshotsResult < Struct.new(
  :snapshots,
  :next_token)
  include Aws::Structure
end

#snapshotsArray<Types::Snapshot>

Information about the snapshots.

Returns:



14815
14816
14817
14818
14819
# File 'lib/aws-sdk-ec2/types.rb', line 14815

class DescribeSnapshotsResult < Struct.new(
  :snapshots,
  :next_token)
  include Aws::Structure
end