toValue method
Implementation
String toValue() {
switch (this) {
case DeploymentTarget.greengrass:
return 'GREENGRASS';
case DeploymentTarget.cloud:
return 'CLOUD';
}
}
String toValue() {
switch (this) {
case DeploymentTarget.greengrass:
return 'GREENGRASS';
case DeploymentTarget.cloud:
return 'CLOUD';
}
}