# The SparkVersion object

## Attributes

- `key` (string)
  Spark version key, for example "2.1.x-scala2.11". This is the value which should be provided
   as the "spark_version" when creating a new cluster.
   Note that the exact Spark version may change over time for a "wildcard" version
   (i.e., "2.1.x-scala2.11" is a "wildcard" version) with minor bug fixes.
  Example: `8.2.x-scala2.12`
- `name` (string)
  A descriptive name for this Spark version, for example "Spark 2.1".
  Example: `8.2 (includes Apache Spark 3.1.1, Scala 2.12)`

## Example

```json
{
  "key": "8.2.x-scala2.12",
  "name": "8.2 (includes Apache Spark 3.1.1, Scala 2.12)"
}
```


