Class: Aws::DirectoryService::Types::DescribeSnapshotsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::DescribeSnapshotsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Contains the inputs for the DescribeSnapshots operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#directory_id ⇒ String
The identifier of the directory for which to retrieve snapshot information.
-
#limit ⇒ Integer
The maximum number of objects to return.
-
#next_token ⇒ String
The DescribeSnapshotsResult.NextToken value from a previous call to DescribeSnapshots.
-
#snapshot_ids ⇒ Array<String>
A list of identifiers of the snapshots to obtain the information for.
Instance Attribute Details
#directory_id ⇒ String
The identifier of the directory for which to retrieve snapshot information.
1733 1734 1735 1736 1737 1738 1739 1740 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1733 class DescribeSnapshotsRequest < Struct.new( :directory_id, :snapshot_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of objects to return.
1733 1734 1735 1736 1737 1738 1739 1740 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1733 class DescribeSnapshotsRequest < Struct.new( :directory_id, :snapshot_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The DescribeSnapshotsResult.NextToken value from a previous call to DescribeSnapshots. Pass null if this is the first call.
1733 1734 1735 1736 1737 1738 1739 1740 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1733 class DescribeSnapshotsRequest < Struct.new( :directory_id, :snapshot_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#snapshot_ids ⇒ Array<String>
A list of identifiers of the snapshots to obtain the information for. If this member is null or empty, all snapshots are returned using the Limit and NextToken members.
1733 1734 1735 1736 1737 1738 1739 1740 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1733 class DescribeSnapshotsRequest < Struct.new( :directory_id, :snapshot_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |