interface TapePoolReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.StorageGateway.TapePoolReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsstoragegateway#TapePoolReference |
Java | software.amazon.awscdk.interfaces.storagegateway.TapePoolReference |
Python | aws_cdk.interfaces.aws_storagegateway.TapePoolReference |
TypeScript | aws-cdk-lib » interfaces » aws_storagegateway » TapePoolReference |
A reference to a TapePool resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_storagegateway as interfaces_storagegateway } from 'aws-cdk-lib/interfaces';
const tapePoolReference: interfaces_storagegateway.TapePoolReference = {
poolArn: 'poolArn',
poolId: 'poolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The PoolARN of the TapePool resource. |
| pool | string | The PoolId of the TapePool resource. |
poolArn
Type:
string
The PoolARN of the TapePool resource.
poolId
Type:
string
The PoolId of the TapePool resource.

.NET
Go
Java
Python
TypeScript