Class: Aws::DirectoryService::Types::DescribeTrustsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::DescribeTrustsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
The result of a DescribeTrust request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If not null, more results are available.
-
#trusts ⇒ Array<Types::Trust>
The list of Trust objects that were retrieved.
Instance Attribute Details
#next_token ⇒ String
If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeTrusts to retrieve the next set of items.
1824 1825 1826 1827 1828 1829 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1824 class DescribeTrustsResult < Struct.new( :trusts, :next_token) SENSITIVE = [] include Aws::Structure end |
#trusts ⇒ Array<Types::Trust>
The list of Trust 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.
1824 1825 1826 1827 1828 1829 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1824 class DescribeTrustsResult < Struct.new( :trusts, :next_token) SENSITIVE = [] include Aws::Structure end |