Class: Aws::DirectoryService::Types::DescribeDirectoriesResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb

Overview

Contains the results of the DescribeDirectories operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#directory_descriptionsArray<Types::DirectoryDescription>

The list of DirectoryDescription objects that were retrieved.

It is possible that this list contains less than the number of items specified in the Limit member of the request. This occurs if there are less than the requested number of items left to retrieve, or if the limitations of the operation have been exceeded.

Returns:



1387
1388
1389
1390
1391
1392
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 1387

class DescribeDirectoriesResult < Struct.new(
  :directory_descriptions,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeDirectories to retrieve the next set of items.

Returns:

  • (String)


1387
1388
1389
1390
1391
1392
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 1387

class DescribeDirectoriesResult < Struct.new(
  :directory_descriptions,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end