toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ResolverQueryLogConfigAssociationStatus.creating:
      return 'CREATING';
    case ResolverQueryLogConfigAssociationStatus.active:
      return 'ACTIVE';
    case ResolverQueryLogConfigAssociationStatus.actionNeeded:
      return 'ACTION_NEEDED';
    case ResolverQueryLogConfigAssociationStatus.deleting:
      return 'DELETING';
    case ResolverQueryLogConfigAssociationStatus.failed:
      return 'FAILED';
  }
}