WorkerSettings

class aws_rfdk.deadline.WorkerSettings(*, groups=None, listener_port=None, pools=None, region=None)

Bases: object

Configuration settings for Deadline Workers.

Parameters:
  • groups (Optional[Sequence[str]]) – Deadline groups these workers needs to be assigned to. The group is created if it does not already exist. Default: - Worker is not assigned to any group

  • listener_port (Union[int, float, None]) – 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. Default: 56032

  • pools (Optional[Sequence[str]]) – Deadline pools these workers needs to be assigned to. The pool is created if it does not already exist. Default: - Worker is not assigned to any pool.

  • region (Optional[str]) – Deadline region these workers needs to be assigned to. Default: - Worker is not assigned to any region

Attributes

groups

Deadline groups these workers needs to be assigned to.

The group is created if it does not already exist.

Default:
  • Worker is not assigned to any group

listener_port

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.

Default:

56032

pools

Deadline pools these workers needs to be assigned to.

The pool is created if it does not already exist.

Default:
  • Worker is not assigned to any pool.

region

Deadline region these workers needs to be assigned to.

Default:
  • Worker is not assigned to any region