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.
2285 2286 2287 2288 2289 2290 2291 2292 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2285 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.
2285 2286 2287 2288 2289 2290 2291 2292 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2285 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.
2285 2286 2287 2288 2289 2290 2291 2292 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2285 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.
2285 2286 2287 2288 2289 2290 2291 2292 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2285 class DescribeSnapshotsRequest < Struct.new( :directory_id, :snapshot_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |