CfnQueueEnvironmentMixinProps
- class aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueueEnvironmentMixinProps(*, farm_id=None, priority=None, queue_id=None, template=None, template_type=None)
Bases:
objectProperties for CfnQueueEnvironmentPropsMixin.
- Parameters:
farm_id (
Optional[str]) – The identifier assigned to the farm that contains the queue.priority (
Union[int,float,None]) – The queue environment’s priority.queue_id (
Optional[str]) – The unique identifier of the queue that contains the environment.template (
Optional[str]) – A JSON or YAML template that describes the processing environment for the queue.template_type (
Optional[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.mixins_preview.aws_deadline import mixins as deadline_mixins cfn_queue_environment_mixin_props = deadline_mixins.CfnQueueEnvironmentMixinProps( 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.