Class CfnQueueProps
Properties for defining a CfnQueue
.
Inheritance
Implements
Namespace: Amazon.CDK.AwsPcs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnQueueProps : Object, ICfnQueueProps
Syntax (vb)
Public Class CfnQueueProps
Inherits Object
Implements ICfnQueueProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.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.Aws_pcs;
var cfnQueueProps = new CfnQueueProps {
ClusterId = "clusterId",
// the properties below are optional
ComputeNodeGroupConfigurations = new [] { new ComputeNodeGroupConfigurationProperty {
ComputeNodeGroupId = "computeNodeGroupId"
} },
Name = "name",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
Cfn |
Properties
Cluster |
The ID of the cluster of the queue. |
Compute |
The list of compute node group configurations associated with the queue. |
Name | The name that identifies the queue. |
Tags | 1 or more tags added to the resource. |
Constructors
CfnQueueProps()
public CfnQueueProps()
Properties
ClusterId
The ID of the cluster of the queue.
public string ClusterId { get; set; }
Property Value
System.
Remarks
ComputeNodeGroupConfigurations
The list of compute node group configurations associated with the queue.
public object ComputeNodeGroupConfigurations { get; set; }
Property Value
System.
Remarks
Queues assign jobs to associated compute node groups.
Name
The name that identifies the queue.
public string Name { get; set; }
Property Value
System.
Remarks
Tags
1 or more tags added to the resource.
public IDictionary<string, string> Tags { get; set; }
Property Value
System.
Remarks
Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.