CfnQueueEnvironmentMixinProps

class aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueueEnvironmentMixinProps(*, farm_id=None, priority=None, queue_id=None, template=None, template_type=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html#cfn-deadline-queueenvironment-farmid

priority

The queue environment’s priority.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html#cfn-deadline-queueenvironment-priority

queue_id

The unique identifier of the queue that contains the environment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html#cfn-deadline-queueenvironment-queueid

template

A JSON or YAML template that describes the processing environment for the queue.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html#cfn-deadline-queueenvironment-template

template_type

Specifies whether the template for the queue environment is JSON or YAML.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html#cfn-deadline-queueenvironment-templatetype