toArtifactLocationType method

ArtifactLocationType toArtifactLocationType()

Implementation

ArtifactLocationType toArtifactLocationType() {
  switch (this) {
    case 'S3':
      return ArtifactLocationType.s3;
  }
  throw Exception('$this is not known in enum ArtifactLocationType');
}