OperationRequest

data class OperationRequest<T>(val context: <Error class: unknown class>, val subject: T)

Wrapper around a type subject with an execution context.

This type is typically used as the input for a aws.smithy.kotlin.runtime.io.middleware.Phase where subject is the thing currently being worked on (built/serialized/etc).

Parameters

context

The operation context

subject

The input type

Constructors

Link copied to clipboard
constructor(subject: T)
constructor(context: <Error class: unknown class>, subject: T)

Properties

Link copied to clipboard
val context: <Error class: unknown class>
Link copied to clipboard
val subject: T