DescribeTrustsRequest

public struct DescribeTrustsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The Directory ID of the AWS directory that is a part of the requested trust relationship.

    Declaration

    Swift

    public let directoryId: String?
  • The maximum number of objects to return.

    Declaration

    Swift

    public let limit: Int?
  • The DescribeTrustsResult.NextToken value from a previous call to DescribeTrusts. Pass null if this is the first call.

    Declaration

    Swift

    public let nextToken: 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.

    Declaration

    Swift

    public let trustIds: [String]?
  • Undocumented

    Declaration

    Swift

    public init(directoryId: String? = nil, limit: Int? = nil, nextToken: String? = nil, trustIds: [String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws