toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AuthenticateCognitoActionConditionalBehaviorEnum.deny:
      return 'deny';
    case AuthenticateCognitoActionConditionalBehaviorEnum.allow:
      return 'allow';
    case AuthenticateCognitoActionConditionalBehaviorEnum.authenticate:
      return 'authenticate';
  }
}