interface CfnTapePoolProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.StorageGateway.CfnTapePoolProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstoragegateway#CfnTapePoolProps |
Java | software.amazon.awscdk.services.storagegateway.CfnTapePoolProps |
Python | aws_cdk.aws_storagegateway.CfnTapePoolProps |
TypeScript | aws-cdk-lib » aws_storagegateway » CfnTapePoolProps |
Properties for defining a CfnTapePool.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_storagegateway as storagegateway } from 'aws-cdk-lib';
const cfnTapePoolProps: storagegateway.CfnTapePoolProps = {
poolName: 'poolName',
storageClass: 'storageClass',
// the properties below are optional
retentionLockTimeInDays: 123,
retentionLockType: 'retentionLockType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The name of the custom tape pool. |
| storage | string | The storage class associated with the custom pool (S3 Glacier or S3 Glacier Deep Archive). |
| retention | number | Tape retention lock time in days (up to 36,500 days / 100 years). |
| retention | string | Tape retention lock type. |
| tags? | Cfn[] | A list of up to 50 tags for the tape pool. |
poolName
Type:
string
The name of the custom tape pool.
storageClass
Type:
string
The storage class associated with the custom pool (S3 Glacier or S3 Glacier Deep Archive).
retentionLockTimeInDays?
Type:
number
(optional)
Tape retention lock time in days (up to 36,500 days / 100 years).
retentionLockType?
Type:
string
(optional)
Tape retention lock type.
Governance mode allows authorized removal; compliance mode prevents all removal.
tags?
Type:
Cfn[]
(optional)
A list of up to 50 tags for the tape pool.

.NET
Go
Java
Python
TypeScript