SearchUsersRequest

public struct SearchUsersRequest : AWSShape
extension AlexaForBusiness.SearchUsersRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The filters to use for listing a specific set of users. Required. Supported filter keys are UserId, FirstName, LastName, Email, and EnrollmentStatus.

    Declaration

    Swift

    public let filters: [Filter]?
  • The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved. Required.

    Declaration

    Swift

    public let maxResults: Int?
  • An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults. Required.

    Declaration

    Swift

    public let nextToken: String?
  • The sort order to use in listing the filtered set of users. Required. Supported sort keys are UserId, FirstName, LastName, Email, and EnrollmentStatus.

    Declaration

    Swift

    public let sortCriteria: [Sort]?
  • Undocumented

    Declaration

    Swift

    public init(filters: [Filter]? = nil, maxResults: Int? = nil, nextToken: String? = nil, sortCriteria: [Sort]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws