interface CfnTapePoolMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.StorageGateway.CfnTapePoolMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsstoragegateway#CfnTapePoolMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.storagegateway.CfnTapePoolMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_storagegateway.CfnTapePoolMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_storagegateway » CfnTapePoolMixinProps |
Properties for CfnTapePoolPropsMixin.
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/cfn-property-mixins';
const cfnTapePoolMixinProps: storagegateway.CfnTapePoolMixinProps = {
poolName: 'poolName',
retentionLockTimeInDays: 123,
retentionLockType: 'retentionLockType',
storageClass: 'storageClass',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The name of the custom tape pool. |
| retention | number | Tape retention lock time in days (up to 36,500 days / 100 years). |
| retention | string | Tape retention lock type. |
| storage | string | The storage class associated with the custom pool (S3 Glacier or S3 Glacier Deep Archive). |
| tags? | Cfn[] | A list of up to 50 tags for the tape pool. |
poolName?
Type:
string
(optional)
The name of the custom tape pool.
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.
storageClass?
Type:
string
(optional)
The storage class associated with the custom pool (S3 Glacier or S3 Glacier Deep Archive).
tags?
Type:
Cfn[]
(optional)
A list of up to 50 tags for the tape pool.

.NET
Go
Java
Python
TypeScript