describeVtlDevices
inline suspend fun StorageGatewayClient.describeVtlDevices(crossinline block: DescribeVtlDevicesRequest.Builder.() -> Unit): DescribeVtlDevicesResponse
Returns a description of virtual tape library (VTL) devices for the specified tape gateway. In the response, Storage Gateway returns VTL device information.
This operation is only supported in the tape gateway type.
Samples
fun main() {
//sampleStart
// Returns a description of virtual tape library (VTL) devices for the specified gateway.
val resp = storageGatewayClient.describeVtlDevices {
gatewayArn = "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
vtlDeviceArns = listOf<String>(
)
marker = "1"
limit = 123
}
//sampleEnd
}