Options

struct Options

Options available to callers of AuthCategoryWebAuthnBehaviour.list.

  • Tag: AuthListWebAuthnCredentialsRequestOptions
  • Number between 1 and 20 that indicates the limit of how many credentials to retrieve

    • Tag: AuthListWebAuthnCredentialsRequestOptions.pageSize

    Declaration

    Swift

    public let pageSize: UInt
  • String indicating the page offset at which to resume a listing.

    This is usually a copy of the value from AuthListWebAuthnCredentialsResult.nextToken.

    • Tag: AuthListWebAuthnCredentialsRequestOptions.nextToken

    Declaration

    Swift

    public let nextToken: String?
  • Extra plugin specific options, only used in special circumstances when the existing options do not provide a way to utilize the underlying auth plugin functionality. See plugin documentation for expected key/values

    • Tag: AuthListWebAuthnCredentialsRequestOptions.pluginOptions

    Declaration

    Swift

    public let pluginOptions: Any?
    • Tag: AuthListWebAuthnCredentialsRequestOptions.init

    Declaration

    Swift

    public init(
        pageSize: UInt = 20,
        nextToken: String? = nil,
        pluginOptions: Any? = nil
    )