CfnQueueEnvironmentProps
- class aws_cdk.aws_deadline.CfnQueueEnvironmentProps(*, farm_id, priority, queue_id, template, template_type)
Bases:
object
Properties for defining a
CfnQueueEnvironment
.- Parameters:
farm_id (
str
) – The identifier assigned to the farm that contains the queue.priority (
Union
[int
,float
]) – The queue environment’s priority.queue_id (
str
) – The unique identifier of the queue that contains the environment.template (
str
) – A JSON or YAML template that describes the processing environment for the queue.template_type (
str
) – Specifies whether the template for the queue environment is JSON or YAML.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_deadline as deadline cfn_queue_environment_props = deadline.CfnQueueEnvironmentProps( farm_id="farmId", priority=123, queue_id="queueId", template="template", template_type="templateType" )
Attributes
- farm_id
The identifier assigned to the farm that contains the queue.
- priority
The queue environment’s priority.
- queue_id
The unique identifier of the queue that contains the environment.
- template
A JSON or YAML template that describes the processing environment for the queue.
- template_type
Specifies whether the template for the queue environment is JSON or YAML.