interface IRenderQueue
| Language | Type name |
|---|---|
Python | aws_rfdk.deadline.IRenderQueue |
TypeScript (source) | aws-rfdk » deadline » IRenderQueue |
Implemented by
Render
Interface for Deadline Render Queue.
Properties
| Name | Type | Description |
|---|---|---|
| backend | Connections | A connections object for controlling access of the compute resources that host the render queue. |
| connections | Connections | The network connections associated with this resource. |
| endpoint | Connectable | The endpoint used to connect to the Render Queue. |
| node | Node | The tree node. |
| repository | IRepository | The Deadline Repository that the Render Queue services. |
backendConnections
Type:
Connections
A connections object for controlling access of the compute resources that host the render queue.
connections
Type:
Connections
The network connections associated with this resource.
endpoint
Type:
Connectable
The endpoint used to connect to the Render Queue.
node
Type:
Node
The tree node.
repository
Type:
IRepository
The Deadline Repository that the Render Queue services.
Methods
| Name | Description |
|---|---|
| configure | Configures an ECS cluster to be able to connect to a RenderQueue. |
| configure | Configure an Instance/Autoscaling group to connect to a RenderQueue. |
| configure | Configure a rule to automatically register all Deadline Secrets Management identities connecting from a given subnet to a specified role and status. |
configureClientECS(params)
public configureClientECS(params: ECSConnectOptions): { [string]: string }
Parameters
- params
ECSConnectOptions
Returns
{ [string]: string }
Configures an ECS cluster to be able to connect to a RenderQueue.
configureClientInstance(params)
public configureClientInstance(params: InstanceConnectOptions): void
Parameters
- params
InstanceConnect Options
Configure an Instance/Autoscaling group to connect to a RenderQueue.
configureSecretsManagementAutoRegistration(props)
public configureSecretsManagementAutoRegistration(props: SubnetIdentityRegistrationSettingsProps): void
Parameters
- props
Subnet— Properties that specify the configuration to be applied to the Deadline Secrets Management identity registration settings.Identity Registration Settings Props
Configure a rule to automatically register all Deadline Secrets Management identities connecting from a given subnet to a specified role and status.
All RFDK constructs that require Deadline Secrets Management identity registration call this method internally. End-users of RFDK should not need to use this method unless they have a special need and understand its inner workings.

Python
TypeScript (