toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ThroughputMode.bursting:
      return 'bursting';
    case ThroughputMode.provisioned:
      return 'provisioned';
  }
}