TapePoolReference
- class aws_cdk.interfaces.aws_storagegateway.TapePoolReference(*, pool_arn, pool_id)
Bases:
objectA reference to a TapePool resource.
- Parameters:
pool_arn (
str) – The PoolARN of the TapePool resource.pool_id (
str) – The PoolId of the TapePool resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_storagegateway as interfaces_storagegateway tape_pool_reference = interfaces_storagegateway.TapePoolReference( pool_arn="poolArn", pool_id="poolId" )
Attributes
- pool_arn
The PoolARN of the TapePool resource.
- pool_id
The PoolId of the TapePool resource.