Show / Hide Table of Contents

Class CfnQueueEnvironmentMixinProps

Properties for CfnQueueEnvironmentPropsMixin.

Inheritance
object
CfnQueueEnvironmentMixinProps
Implements
ICfnQueueEnvironmentMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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

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

string

Remarks

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

Priority

The queue environment's priority.

public double? Priority { get; set; }
Property Value

double?

Remarks

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

QueueId

The unique identifier of the queue that contains the environment.

public string? QueueId { get; set; }
Property Value

string

Remarks

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.

public string? Template { get; set; }
Property Value

string

Remarks

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

TemplateType

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

public string? TemplateType { get; set; }
Property Value

string

Remarks

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

Implements

ICfnQueueEnvironmentMixinProps
Back to top Generated by DocFX