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:

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 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.

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