Class: Aws::DirectoryService::Types::DescribeTrustsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::DescribeTrustsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Describes the trust relationships for a particular Managed Microsoft AD directory. If no input parameters are provided, such as directory ID or trust ID, this request describes all the trust relationships.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#directory_id ⇒ String
The Directory ID of the Amazon Web Services directory that is a part of the requested trust relationship.
-
#limit ⇒ Integer
The maximum number of objects to return.
-
#next_token ⇒ String
The DescribeTrustsResult.NextToken value from a previous call to DescribeTrusts.
-
#trust_ids ⇒ Array<String>
A list of identifiers of the trust relationships for which to obtain the information.
Instance Attribute Details
#directory_id ⇒ String
The Directory ID of the Amazon Web Services directory that is a part of the requested trust relationship.
1796 1797 1798 1799 1800 1801 1802 1803 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1796 class DescribeTrustsRequest < Struct.new( :directory_id, :trust_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of objects to return.
1796 1797 1798 1799 1800 1801 1802 1803 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1796 class DescribeTrustsRequest < Struct.new( :directory_id, :trust_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The DescribeTrustsResult.NextToken value from a previous call to DescribeTrusts. Pass null if this is the first call.
1796 1797 1798 1799 1800 1801 1802 1803 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1796 class DescribeTrustsRequest < Struct.new( :directory_id, :trust_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#trust_ids ⇒ Array<String>
A list of identifiers of the trust relationships for which to obtain the information. If this member is null, all trust relationships that belong to the current account are returned.
An empty list results in an ‘InvalidParameterException` being thrown.
1796 1797 1798 1799 1800 1801 1802 1803 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 1796 class DescribeTrustsRequest < Struct.new( :directory_id, :trust_ids, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |