Package-level declarations

Types

Link copied to clipboard
interface Scheduler

Docs: https://docs.aws.amazon.com/scheduler/latest/APIReference/Welcome.html

Link copied to clipboard
abstract class SchedulerAction<ResponseBody : Any>(clazz: KClass<ResponseBody>, autoMarshalling: AutoMarshalling = SchedulerMoshi, method: Method = POST) : Action<Result<ResponseBody, RemoteFailure>>
Link copied to clipboard
@KotshiJsonAdapterFactory
object SchedulerJsonAdapterFactory : JsonAdapter.Factory
Link copied to clipboard

Functions

Link copied to clipboard
fun Scheduler.Companion.Http(env: Map<String, String> = System.getenv(), http: HttpHandler = JavaHttpClient(), clock: Clock = Clock.systemUTC(), overrideEndpoint: Uri? = null): Scheduler

Convenience function to create a Scheduler from a System environment

fun Scheduler.Companion.Http(env: Environment, http: HttpHandler = JavaHttpClient(), clock: Clock = Clock.systemUTC(), overrideEndpoint: Uri? = null): Scheduler

Convenience function to create a Scheduler from an http4k Environment

fun Scheduler.Companion.Http(region: Region, credentialsProvider: () -> AwsCredentials, rawHttp: HttpHandler = JavaHttpClient(), clock: Clock = Clock.systemUTC(), overrideEndpoint: Uri? = null): Scheduler