toTargetType method
Implementation
TargetType toTargetType() {
switch (this) {
case 'RDS_INSTANCE':
return TargetType.rdsInstance;
case 'RDS_SERVERLESS_ENDPOINT':
return TargetType.rdsServerlessEndpoint;
case 'TRACKED_CLUSTER':
return TargetType.trackedCluster;
}
throw Exception('$this is not known in enum TargetType');
}