ECSTaskProps

class aws_rfdk.deadline.ECSTaskProps(*, task_definition, filesystem_mount_point=None)

Bases: object

Configuration interface to directly connect an ECS task to the repository.

Parameters
  • task_definition (TaskDefinition) – The task definition to connect to the repository. [disable-awslint:ref-via-interface]

  • filesystem_mount_point (Optional[str]) – The path where the repository file-system is mounted within the container. Default: “/opt/Thinkbox/DeadlineRepository{MAJOR_VER}”

Attributes

filesystem_mount_point

The path where the repository file-system is mounted within the container.

Default

“/opt/Thinkbox/DeadlineRepository{MAJOR_VER}”

Return type

Optional[str]

task_definition

The task definition to connect to the repository.

[disable-awslint:ref-via-interface]

Return type

TaskDefinition