toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ReplicateTo.none:
      return 'NONE';
    case ReplicateTo.ssmDocument:
      return 'SSM_DOCUMENT';
  }
}