toScope method

Scope toScope()

Implementation

Scope toScope() {
  switch (this) {
    case 'CLOUDFRONT':
      return Scope.cloudfront;
    case 'REGIONAL':
      return Scope.regional;
  }
  throw Exception('$this is not known in enum Scope');
}