ActorCallOptions
Hierarchy
- Omit<ActorStartOptions, waitForFinish>
- ActorCallOptions
Index
Properties
optionalbuild
optionalcontentType
Content type for the input
. If not specified,
input
is expected to be an object that will be stringified to JSON and content type set to
application/json; charset=utf-8
. If options.contentType
is specified, then input
must be a
String
or Buffer
.
optionalmemory
Memory in megabytes which will be allocated for the new actor run. If not provided, the run uses memory of the default actor run configuration.
optionaltimeout
Timeout for the actor run in seconds. Zero value means there is no timeout. If not provided, the run uses timeout of the default actor run configuration.
optionalwaitSecs
optionalwebhooks
Specifies optional webhooks associated with the actor run, which can be used to receive a notification e.g. when the actor finished or failed, see ad hook webhooks documentation for detailed description.
Tag or number of the actor build to run (e.g.
beta
or1.2.345
). If not provided, the run uses build tag or number from the default actor run configuration (typicallylatest
).