toDeploymentCreator method
Implementation
DeploymentCreator toDeploymentCreator() {
switch (this) {
case 'user':
return DeploymentCreator.user;
case 'autoscaling':
return DeploymentCreator.autoscaling;
case 'codeDeployRollback':
return DeploymentCreator.codeDeployRollback;
case 'CodeDeploy':
return DeploymentCreator.codeDeploy;
case 'CloudFormation':
return DeploymentCreator.cloudFormation;
case 'CloudFormationRollback':
return DeploymentCreator.cloudFormationRollback;
}
throw Exception('$this is not known in enum DeploymentCreator');
}