interface WorkerSettings
| Language | Type name |
|---|---|
Python | aws_rfdk.deadline.WorkerSettings |
TypeScript (source) | aws-rfdk » deadline » WorkerSettings |
Configuration settings for Deadline Workers.
Properties
| Name | Type | Description |
|---|---|---|
| groups? | string[] | Deadline groups these workers needs to be assigned to. |
| listener | number | The port to configure the worker to listen on for remote commands such as requests for its log stream. |
| pools? | string[] | Deadline pools these workers needs to be assigned to. |
| region? | string | Deadline region these workers needs to be assigned to. |
groups?
Type:
string[]
(optional, default: Worker is not assigned to any group)
Deadline groups these workers needs to be assigned to.
The group is created if it does not already exist.
listenerPort?
Type:
number
(optional, default: 56032)
The port to configure the worker to listen on for remote commands such as requests for its log stream.
If more than one worker is present on a single host, connsecutive ports will be opened, starting with the supplied port, up to the maximum number of workers defined by the WorkerInstanceFleet.
pools?
Type:
string[]
(optional, default: Worker is not assigned to any pool.)
Deadline pools these workers needs to be assigned to.
The pool is created if it does not already exist.
region?
Type:
string
(optional, default: Worker is not assigned to any region)
Deadline region these workers needs to be assigned to.

Python
TypeScript (