AWS Fundamentals Logo
AWS Fundamentals
AWS::PCS::Queue

PCS Queue

AWS::PCS::Queue resource creates an AWS PCS queue.

Properties

5 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
ClusterId
string
RequiredCreate-only
ComputeNodeGroupConfigurations
Array<ComputeNodeGroupConfiguration>
Name
string
Create-only
SlurmConfiguration
object
Tags
object

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe unique Amazon Resource Name (ARN) of the queue.
ErrorInfoArray<ErrorInfo>The list of errors that occurred during queue provisioning.
IdstringThe generated unique ID of the queue.
StatusstringThe provisioning status of the queue. The provisioning status doesn't indicate the overall health of the queue.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::PCS::Queue

Resources:
  MyResource:
    Type: AWS::PCS::Queue
    Properties:
      ClusterId: "my-clusterid"
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

ec2:CreateNetworkInterfaceec2:DescribeVpcsec2:DescribeSubnetsec2:DescribeSecurityGroupsec2:GetSecurityGroupsForVpciam:CreateServiceLinkedRolesecretsmanager:CreateSecretsecretsmanager:TagResource

read

pcs:GetQueuepcs:ListTagsForResource

update

pcs:GetQueuepcs:UpdateQueuepcs:ListTagsForResourcepcs:TagResourcepcs:UntagResource

delete

pcs:DeleteQueuepcs:GetQueue

list

pcs:ListClusterspcs:ListQueues

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServicePCS
Properties9
Required1
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NameClusterId

Related Resources

External Links