Class CfnQueueEnvironmentMixinProps
Properties for CfnQueueEnvironmentPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnQueueEnvironmentMixinProps : ICfnQueueEnvironmentMixinProps
Syntax (vb)
Public Class CfnQueueEnvironmentMixinProps Implements ICfnQueueEnvironmentMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins;
var cfnQueueEnvironmentMixinProps = new CfnQueueEnvironmentMixinProps {
FarmId = "farmId",
Priority = 123,
QueueId = "queueId",
Template = "template",
TemplateType = "templateType"
};
Synopsis
Constructors
| CfnQueueEnvironmentMixinProps() | Properties for CfnQueueEnvironmentPropsMixin. |
Properties
| FarmId | The identifier assigned to the farm that contains the queue. |
| Priority | The queue environment's priority. |
| QueueId | The unique identifier of the queue that contains the environment. |
| Template | A JSON or YAML template that describes the processing environment for the queue. |
| TemplateType | Specifies whether the template for the queue environment is JSON or YAML. |
Constructors
CfnQueueEnvironmentMixinProps()
Properties for CfnQueueEnvironmentPropsMixin.
public CfnQueueEnvironmentMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins;
var cfnQueueEnvironmentMixinProps = new CfnQueueEnvironmentMixinProps {
FarmId = "farmId",
Priority = 123,
QueueId = "queueId",
Template = "template",
TemplateType = "templateType"
};
Properties
FarmId
The identifier assigned to the farm that contains the queue.
public string? FarmId { get; set; }
Property Value
Remarks
Priority
The queue environment's priority.
public double? Priority { get; set; }
Property Value
Remarks
QueueId
The unique identifier of the queue that contains the environment.
public string? QueueId { get; set; }
Property Value
Remarks
Template
A JSON or YAML template that describes the processing environment for the queue.
public string? Template { get; set; }
Property Value
Remarks
TemplateType
Specifies whether the template for the queue environment is JSON or YAML.
public string? TemplateType { get; set; }