toS3GlacierJobTier method

S3GlacierJobTier toS3GlacierJobTier()

Implementation

S3GlacierJobTier toS3GlacierJobTier() {
  switch (this) {
    case 'BULK':
      return S3GlacierJobTier.bulk;
    case 'STANDARD':
      return S3GlacierJobTier.standard;
  }
  throw Exception('$this is not known in enum S3GlacierJobTier');
}