AWS Fundamentals Logo
AWS Fundamentals
AWS::Batch::QuotaShare

Batch QuotaShare

Creates an AWS Batch quota share. Each quota share operates as a virtual queue with a configured compute capacity, resource sharing strategy, and borrow limits.

Properties

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

Filter:
PropertyTypeFlags
CapacityLimits
Array<QuotaShareCapacityLimit>
Required
JobQueue
string
RequiredCreate-only
PreemptionConfiguration
QuotaSharePreemptionConfiguration
Required
QuotaShareName
string
RequiredCreate-only
ResourceSharingConfiguration
QuotaShareResourceSharingConfiguration
Required
State
string
Tags
object

Return Values

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

AttributeTypeDescription
QuotaShareArnstringThe Amazon Resource Name (ARN) of the quota share.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Batch::QuotaShare

Resources:
  MyResource:
    Type: AWS::Batch::QuotaShare
    Properties:
      QuotaShareName: "my-quotasharename"
      JobQueue: "value"
      CapacityLimits: []
      ResourceSharingConfiguration: "value"
      PreemptionConfiguration: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

Batch:CreateQuotaShareBatch:TagResourceBatch:DescribeQuotaShare

read

Batch:DescribeQuotaShare

update

Batch:DescribeQuotaShareBatch:UpdateQuotaShareBatch:TagResourceBatch:UntagResource

delete

Batch:UpdateQuotaShareBatch:DescribeQuotaShareBatch:DeleteQuotaShare

list

Batch:ListQuotaShares

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

ServiceBatch
Properties8
Required5
TaggingSupported
Primary IDQuotaShareArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

QuotaShareNameJobQueue

External Links