Class: Aws::DirectoryService::Types::DescribeTrustsRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#directory_idString

The Directory ID of the Amazon Web Services directory that is a part of the requested trust relationship.

Returns:

  • (String)


2348
2349
2350
2351
2352
2353
2354
2355
# File 'lib/aws-sdk-directoryservice/types.rb', line 2348

class DescribeTrustsRequest < Struct.new(
  :directory_id,
  :trust_ids,
  :next_token,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

The maximum number of objects to return.

Returns:

  • (Integer)


2348
2349
2350
2351
2352
2353
2354
2355
# File 'lib/aws-sdk-directoryservice/types.rb', line 2348

class DescribeTrustsRequest < Struct.new(
  :directory_id,
  :trust_ids,
  :next_token,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The DescribeTrustsResult.NextToken value from a previous call to DescribeTrusts. Pass null if this is the first call.

Returns:

  • (String)


2348
2349
2350
2351
2352
2353
2354
2355
# File 'lib/aws-sdk-directoryservice/types.rb', line 2348

class DescribeTrustsRequest < Struct.new(
  :directory_id,
  :trust_ids,
  :next_token,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#trust_idsArray<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.

Returns:

  • (Array<String>)


2348
2349
2350
2351
2352
2353
2354
2355
# File 'lib/aws-sdk-directoryservice/types.rb', line 2348

class DescribeTrustsRequest < Struct.new(
  :directory_id,
  :trust_ids,
  :next_token,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end