GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::StorageGateway::CreateTapePool(3) User Contributed Perl Documentation Paws::StorageGateway::CreateTapePool(3)

Paws::StorageGateway::CreateTapePool - Arguments for method CreateTapePool on Paws::StorageGateway

This class represents the parameters used for calling the method CreateTapePool on the AWS Storage Gateway service. Use the attributes of this class as arguments to method CreateTapePool.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateTapePool.

    my $storagegateway = Paws->service('StorageGateway');
    my $CreateTapePoolOutput = $storagegateway->CreateTapePool(
      PoolName                => 'MyPoolName',
      StorageClass            => 'DEEP_ARCHIVE',
      RetentionLockTimeInDays => 1,                # OPTIONAL
      RetentionLockType       => 'COMPLIANCE',     # OPTIONAL
      Tags                    => [
        {
          Key   => 'MyTagKey',      # min: 1, max: 128
          Value => 'MyTagValue',    # max: 256
        },
        ...
      ],    # OPTIONAL
    );
    # Results:
    my $PoolARN = $CreateTapePoolOutput->PoolARN;
    # Returns a L<Paws::StorageGateway::CreateTapePoolOutput> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/storagegateway/CreateTapePool>

REQUIRED PoolName => Str

The name of the new custom tape pool.

Tape retention lock time is set in days. Tape retention lock can be enabled for up to 100 years (36,500 days).

Tape retention lock can be configured in two modes. When configured in governance mode, AWS accounts with specific IAM permissions are authorized to remove the tape retention lock from archived virtual tapes. When configured in compliance mode, the tape retention lock cannot be removed by any user, including the root AWS account.

Valid values are: "COMPLIANCE", "GOVERNANCE", "NONE"

REQUIRED StorageClass => Str

The storage class that is associated with the new custom pool. When you use your backup application to eject the tape, the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep Archive) that corresponds to the pool.

Valid values are: "DEEP_ARCHIVE", "GLACIER"

A list of up to 50 tags that can be assigned to tape pool. Each tag is a key-value pair.

Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the maximum length for a tag's value is 256.

This class forms part of Paws, documenting arguments for method CreateTapePool in Paws::StorageGateway

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.