interface IInstanceUserDataProvider
| Language | Type name |
|---|---|
Python | aws_rfdk.deadline.IInstanceUserDataProvider |
TypeScript (source) | aws-rfdk » deadline » IInstanceUserDataProvider |
Implemented by
Instance
Provider for adding user data scripts Methods of this interface will be invoked in WorkerInstanceConfiguration on different stages of worker configuration.
Methods
| Name | Description |
|---|---|
| post | Method that is invoked after all configuration is done and worker started. |
| pre | Method that is invoked before configuring the Cloud Watch Agent. |
| pre | Method that is invoked before the render queue configuration. |
| pre | Method that is invoked after configuring the connection to the render queue and before configuring the Deadline Worker. |
postWorkerLaunch(host)
public postWorkerLaunch(host: IHost): void
Parameters
- host
IHost
Method that is invoked after all configuration is done and worker started.
preCloudWatchAgent(host)
public preCloudWatchAgent(host: IHost): void
Parameters
- host
IHost
Method that is invoked before configuring the Cloud Watch Agent.
preRenderQueueConfiguration(host)
public preRenderQueueConfiguration(host: IHost): void
Parameters
- host
IHost
Method that is invoked before the render queue configuration.
preWorkerConfiguration(host)
public preWorkerConfiguration(host: IHost): void
Parameters
- host
IHost
Method that is invoked after configuring the connection to the render queue and before configuring the Deadline Worker.

Python
TypeScript (