toValue method
Implementation
String toValue() {
switch (this) {
case NotificationTarget.eventBridge:
return 'EventBridge';
case NotificationTarget.sns:
return 'SNS';
case NotificationTarget.sqs:
return 'SQS';
}
}
String toValue() {
switch (this) {
case NotificationTarget.eventBridge:
return 'EventBridge';
case NotificationTarget.sns:
return 'SNS';
case NotificationTarget.sqs:
return 'SQS';
}
}