describeStorediScsiVolumes

Returns the description of the gateway volumes specified in the request. The list of gateway volumes in the request must be from one gateway. In the response, Storage Gateway returns volume information sorted by volume ARNs. This operation is only supported in stored volume gateway type.

Samples


fun main() { 
   //sampleStart 
   // Returns the description of the gateway volumes specified in the request belonging to the same
// gateway.
val resp = storageGatewayClient.describeStorediScsiVolumes {
    volumeArns = listOf<String>(
        "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
    )
} 
   //sampleEnd
}