AWS Fundamentals Logo
AWS Fundamentals
AWS::StorageGateway::TapePool

StorageGateway TapePool

Creates a custom tape pool for archiving virtual tapes with optional retention lock.

Properties

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

Filter:
PropertyTypeFlags
PoolName
string
RequiredCreate-only
StorageClass
string
RequiredCreate-only
RetentionLockTimeInDays
integer
Create-only
RetentionLockType
string
Create-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
PoolARNstringThe Amazon Resource Name (ARN) of the custom tape pool.
PoolIdstringThe unique identifier of the custom tape pool, extracted from the ARN.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::StorageGateway::TapePool

Resources:
  MyResource:
    Type: AWS::StorageGateway::TapePool
    Properties:
      PoolName: "my-poolname"
      StorageClass: "DEEP_ARCHIVE"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

storagegateway:CreateTapePoolstoragegateway:AddTagsToResource

read

storagegateway:ListTapePoolsstoragegateway:ListTagsForResource

update

storagegateway:ListTapePoolsstoragegateway:AddTagsToResourcestoragegateway:RemoveTagsFromResourcestoragegateway:ListTagsForResource

delete

storagegateway:DeleteTapePoolstoragegateway:ListTapePools

list

storagegateway:ListTapePools

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

ServiceStorageGateway
Properties7
Required2
TaggingSupported
Primary IDPoolARN

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

PoolNameStorageClassRetentionLockTypeRetentionLockTimeInDays

External Links