DescribeDirectoriesRequest

public struct DescribeDirectoriesRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A list of identifiers of the directories for which to obtain the information. If this member is null, all directories that belong to the current account are returned. An empty list results in an InvalidParameterException being thrown.

    Declaration

    Swift

    public let directoryIds: [String]?
  • The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.

    Declaration

    Swift

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

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

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

    Swift

    public func validate(name: String) throws